:root {
    --primary-teal: #005B71;
    --accent-orange: #F39221;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Navigation --- */
header {
    background: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-teal);
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--accent-orange);
}

/* --- Impact Typography --- */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; color: #eee; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--primary-teal); font-weight: 700; margin-bottom: 25px; }
p.lead { font-size: 1.4rem; line-height: 1.8; color: #555; max-width: 900px; margin: 0 auto; }

/* --- Advanced Hero Slider --- */
.hero {
    position: relative;
    height: 100vh; /* Full screen */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active { opacity: 1; z-index: 1; }

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,91,113,0.85) 30%, rgba(0,0,0,0.3) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 0 5%;
    width: 100%;
}

/* Glassmorphism Form Style */
.glass-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
}

.glass-form h3 {
    font-size: 2.2rem;
    color: #005B71; /* Logo Teal */
    margin-bottom: 5px;
    font-weight: 800;
}

.glass-form p {
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Form Grid for better fitting */
.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.full-width {
    grid-column: span 2;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    background: #fdfdfd;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #F39221; /* Logo Orange */
    outline: none;
    background: #fff;
}

/* Weighted Catchy Button */
.btn-submit-weighted {
    grid-column: span 2;
    background: #F39221; /* Logo Orange */
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 146, 33, 0.4);
    margin-top: 10px;
}

.btn-submit-weighted:hover {
    background: #005B71; /* Hover to Logo Teal */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 91, 113, 0.3);
}

/* --- Footer --- */
.main-footer {
    background: #005B71; /* Deep Teal from Logo */
    color: white;
    padding: 60px 5% 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #F39221; /* Sunset Orange from Logo */
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #F39221; padding-left: 5px; }

.footer-bottom {
    background: #005B71; /* Your brand teal */
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-text {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.footer-bottom-text a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 15px;
}

.footer-bottom-text a:hover {
    color: #fff;
}

.footer-policy-link {
    color: white;
}

/* --- Popup Contact Form --- */
#popupForm {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.popup-content {
    background: white;
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
}

.highlight {
    color: var(--accent-orange);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.active-slogan {
    font-size: 4.5rem !important; /* Forces the size to be weighted */
    transition: opacity 0.5s ease-in-out;
    margin-bottom: 10px;
}

.slogan-sub {
    font-size: 1.5rem;
    color: #ddd;
    transition: opacity 0.5s ease-in-out;
}

.slider-dots {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent-orange);
    width: 30px;
    border-radius: 10px;
}

.quick-form-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Product Badge Styling */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #F39221;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 3;
    text-transform: uppercase;
}

/* Image Overlay Effect */
.image-box {
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 91, 113, 0.7); /* Teal transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.btn-quick-enquiry {
    background: #fff;
    color: #005B71;
    border: none;
    padding: 12px 20px;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.product-card:hover .btn-quick-enquiry {
    transform: translateY(0);
}

/* Category Tags */
.category-tag {
    font-size: 0.8rem;
    color: #F39221;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

/* Text CTA Link */
.cta-link {
    display: inline-block;
    margin-top: 15px;
    color: #005B71;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.cta-link:hover {
    color: #F39221;
    border-bottom: 2px solid #F39221;
}

/* Sticky Bottom CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #005B71;
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.btn-cta-small {
    background: #F39221;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 800;
}

/* --- Header Phone Icon --- */
.nav-phone-icon {
    background: #F39221; /* Logo Orange */
    color: white !important;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(243, 146, 33, 0.3);
}

.nav-phone-icon:hover {
    background: #005B71; /* Logo Teal */
    transform: scale(1.1);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
    background-color: #128C7E;
}

/* Pulse effect to make it catchy */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Tooltip text for WhatsApp */
.tooltip-text {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }

}
