
:root {
    --color-bg: #FAFAFA;         
    --color-white: #FFFFFF;
    --color-text: #444444;       
    --color-dark: #111111;       
    
    --color-accent: #D4AF37;          
    --color-accent-light: #F3E5AB;    
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #E4C580 100%);
    --color-star-bright: #FFD700;
    
    --color-light-grey: #E5E5E5;
    
    --font-heading: 'Playfair Display', serif; 
    --font-body: 'Manrope', sans-serif;        
    
    --container-width: 1200px;
    --spacing-section: 120px;    
    --border-radius: 4px;        
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }


html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
    
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;  
    text-rendering: optimizeLegibility;  
    -webkit-overflow-scrolling: touch;   
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 400; 
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 { font-size: clamp(3rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.5rem; letter-spacing: 0.5px; }

p { margin-bottom: 20px; font-weight: 300; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

img { 
    max-width: 100%; 
    display: block; 
    height: auto; 
    
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0); 
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding { padding: var(--spacing-section) 0; }
.services.section-padding { padding-bottom: 70px; }
.bg-light { background-color: #F4F4F4; }
.text-center { text-align: center; }
.text-accent { color: var(--color-accent) !important; }
.text-white { color: var(--color-white) !important; }

.sub-heading {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent); 
    margin-bottom: 15px;
    font-weight: 700;
}


.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--color-dark);
    color: var(--color-white);
    border: 1px solid var(--color-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--gold-gradient);
    border-color: #C5A059;
    color: var(--color-dark);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 45px;
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
}
.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.btn-full { width: 100%; text-align: center; }


.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 5px 0; transition: var(--transition); background: transparent;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.header-logo { height: 50px; width: auto; filter: brightness(0) invert(1); transition: var(--transition); }
.site-header.scrolled .header-logo { filter: brightness(0); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--color-white); font-weight: 500;
}
.nav-links a:not(.btn-primary):hover { color: var(--color-accent); }
.site-header.scrolled .nav-links a { color: var(--color-dark); }
.site-header.scrolled .nav-links a:hover { color: var(--color-accent); }

.site-header.scrolled .nav-links a.btn-primary {
    color: var(--color-white) !important;
    background-color: var(--color-dark); border-color: var(--color-dark);
    background-image: none;
}
.site-header.scrolled .nav-links a.btn-primary:hover {
    background: var(--gold-gradient); 
    border-color: #C5A059; 
    color: var(--color-dark) !important;
}

.mobile-toggle { display: none; }
.close-menu { display: none; }

.home-page .nav-links a[href="index.html"],
.about-page .nav-links a[href="aboutus.html"],
.services-page .nav-links .dropdown > a,
.projects-page .nav-links a[href="projects.html"],
.contact-page .nav-links a[href="contact.html"] {
    color: var(--color-accent) !important;
}

.hero {
    height: 100vh; width: 100%; position: relative;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); z-index: -1; }
.hero-content { text-align: center; color: var(--color-white); max-width: 900px; padding: 0 20px; z-index: 1; }
.hero h1 { color: var(--color-white); margin-bottom: 25px; }
.hero h1 em { font-style: italic; font-family: var(--font-heading); color: var(--color-accent); }
.hero p { font-size: 1.25rem; margin-bottom: 40px; color: rgba(255,255,255,0.9); }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }
.services .hero-buttons { margin-top: 50px; }
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}



.client-marquee {
    background: var(--color-white); padding: 50px 0;
    overflow: hidden; border-bottom: 1px solid #eee;
}
.marquee-track { white-space: nowrap; overflow: hidden; }
.marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
.client-marquee:hover .marquee-content { animation-play-state: paused; }
.marquee-content span { display: inline-block; margin: 0 15px; vertical-align: middle; }
.marquee-content img {
    height: 80px; 
    width: auto;
    filter: none; 
    opacity: 1;
    transition: transform 0.3s ease;
}
.marquee-content img:hover { transform: scale(1.1); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


.split-layout { display: flex; align-items: center; gap: 80px; }
.split-image { flex: 1; position: relative; }
.split-image img { width: 100%; height: auto; border-radius: var(--border-radius); box-shadow: 20px 20px 0px var(--color-accent); }
.experience-badge {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--color-dark); color: var(--color-white);
    padding: 30px; text-align: center; min-width: 150px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.experience-badge .years { display: block; font-family: var(--font-heading); font-size: 2.5rem; line-height: 1; color: var(--color-accent); margin-bottom: 5px; }
.experience-badge .text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.split-content { flex: 1; }
.stats-grid { display: flex; gap: 50px; margin-top: 40px; padding-top: 40px; border-top: 1px solid #e0e0e0; }
.stat strong { display: block; font-size: 2.2rem; font-family: var(--font-heading); color: var(--color-dark); line-height: 1; }
.stat strong .counter { font-size: 2rem; }
.stat span { font-size: 0.85rem; color: #777; text-transform: uppercase; letter-spacing: 1px; }

.section-header { margin-bottom: 70px; text-align: left; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.service-card { 
    background: var(--color-white); 
    transition: var(--transition); 
    border: 1px solid var(--color-accent); 
    border-bottom: 3px solid var(--color-accent); 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.card-image { height: 280px; width: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.service-card:hover .card-image { transform: scale(1.05); }
.card-body { 
    padding: 35px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start;
}
.service-card h3 { font-size: 1.6rem; margin-bottom: 15px; }
.text-link { display: inline-block; margin-top: auto; font-weight: 600; color: var(--color-dark); border-bottom: 1px solid var(--color-accent); padding-bottom: 2px; font-size: 0.9rem; }
.text-link:hover { color: var(--color-accent); }


.features {
    background-color: var(--color-dark);
    color: var(--color-white);
    position: relative;
}

.features .section-header h2 { color: var(--color-white); }
.features .section-header .sub-heading { color: var(--color-accent); }

.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; margin-top: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03); 
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.15); 
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    background: #1a1a1a; 
    border-color: var(--color-accent);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5); 
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 25px;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05); 
    color: var(--color-accent);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--gold-gradient);
    color: var(--color-dark); 
    border-color: transparent;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); 
}

.feature-item h3 { 
    font-size: 1.3rem; 
    margin-bottom: 15px; 
    color: var(--color-white); 
}

.feature-item p { 
    font-size: 0.95rem; 
    color: #cccccc; 
    margin-bottom: 0; 
}


.entity-section {
    background: var(--color-white);
    border-top: 1px solid #eee;
}

.entity-intro {
    max-width: 850px;
    font-size: 1.05rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 0;
}

.entity-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.entity-card {
    background: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-soft);
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.entity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}

.entity-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: var(--gold-gradient);
    opacity: 0.10;
    filter: blur(10px);
    pointer-events: none;
}

.entity-card-top h3 {
    margin-bottom: 10px;
    font-size: 1.45rem;
}

.entity-sub {
    margin-bottom: 20px;
    color: #666;
    font-weight: 300;
}

.entity-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-dark);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 12px;
    margin-bottom: 15px;
}

.entity-points {
    margin-top: 5px;
    margin-bottom: 22px;
}

.entity-points li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.98rem;
}

.entity-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.entity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.entity-tag {
    display: inline-block;
    font-size: 0.85rem;
    padding: 8px 12px;
    border: 1px solid #eee;
    background: #fafafa;
    color: #666;
}

.entity-cta {
    margin-top: 45px;
}

.entity-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
    border: 1px solid rgba(212, 175, 55, 0.20);
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.entity-cta-title {
    color: var(--color-white);
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.entity-cta-sub {
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
    max-width: 650px;
}

.entity-cta-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.entity-secondary-dark {
    border-color: rgba(255,255,255,0.4);
}

@media (max-width: 992px) {
    .entity-cta-box {
        flex-direction: column;
        text-align: center;
    }
    .entity-cta-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .entity-card {
        padding: 25px;
    }
    .entity-cta-box {
        padding: 25px;
    }
}


.testimonials-section { padding: 80px 0; background: #fff; }

.testimonial-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 20px 50px 20px;
    cursor: grab;
    scroll-behavior: smooth;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.testimonial-container::-webkit-scrollbar { 
    display: none;
}
.testimonial-container.active {
    cursor: grabbing;
    scroll-behavior: auto;
}

.review-card {
    flex: 0 0 auto;
    background: #FAFAFA;
    padding: 30px;
    border-radius: 4px;
    width: 350px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    user-select: none;
}

.review-card .stars { 
    color: var(--color-star-bright); 
    margin-bottom: 10px; 
    font-size: 1rem; 
}
.review-card p { font-style: italic; font-size: 1rem; color: #555; margin-bottom: 15px; line-height: 1.5; }
.review-card strong { font-family: var(--font-heading); color: var(--color-dark); display: block; font-size: 1rem; }

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background-color: var(--color-accent);
    transform: scale(1.3);
}


.faq-section {
    position: relative;
    background-image: url('../images/faq-bg.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
}
.faq-section { background-color: #222; }

.faq-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.40); 
    z-index: 1;
}
.faq-container { position: relative; z-index: 2; max-width: 900px !important; }

.faq-item {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--color-accent); background: rgba(255,255,255,0.1); }
.faq-item[open] { border-color: var(--color-accent); background: rgba(255,255,255,0.1); }

.faq-item summary {
    padding: 25px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-white);
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); }
.faq-item[open] summary::after { content: '-'; }
.faq-content { padding: 0 25px 25px; color: rgba(255,255,255,0.8); line-height: 1.6; }


.quote-section {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.quote-section::before {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px; background: var(--color-accent);
    filter: blur(100px); opacity: 0.2; pointer-events: none;
}

.quote-layout { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.quote-text { flex: 1; min-width: 300px; }
.quote-heading { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--color-white); }
.quote-sub { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }

.contact-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 15px; }
.contact-list li i { color: var(--color-accent); font-size: 1.2rem; }

.quote-form-wrapper {
    flex: 1; min-width: 350px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.form-title { color: var(--color-accent); margin-bottom: 30px; font-size: 1.5rem; }

.quote-form input, .quote-form select {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px; margin-bottom: 20px;
    color: var(--color-white); font-family: var(--font-body);
    border-radius: 4px;
}
.quote-form input:focus, .quote-form select:focus {
    outline: none; border-color: var(--color-accent);
    background: rgba(255,255,255,0.1);
}
.quote-form select option { background: #222; }


footer {
    background-color: #050505; color: #999;
    padding: 120px 0 30px; 
    border-top: 4px solid var(--color-accent);
}
.footer-top { display: flex; flex-wrap: wrap; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid #222; }
.footer-brand { flex: 2; min-width: 300px; margin-top: -100px; }
.footer-logo {
    height: 100px; 
    width: auto; max-width: 400px;
    filter: brightness(0) invert(1); margin-bottom: 35px;
}
.footer-desc { font-size: 0.95rem; max-width: 400px; line-height: 1.6; }

.social-links { display: flex; gap: 20px; margin-top: 25px; flex-wrap: wrap; }
.social-links a { 
    color: var(--color-accent); 
    font-size: 1.2rem; 
    transition: 0.3s;
}
.social-links a:hover { 
    color: var(--color-white); 
}

.footer-links { flex: 1; min-width: 160px; }
.footer-links h4, .footer-contact h4 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 25px; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { font-size: 0.95rem; transition: 0.3s; }
.footer-links ul li a:hover { color: var(--color-accent); padding-left: 5px; }

.footer-bottom {
    padding-top: 30px; display: flex; justify-content: center; align-items: center;
    font-size: 0.65rem; color: #555;
    text-align: center;
}
.copyright-wrapper { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: center; }
.separator { display: inline-block; }


.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; will-change: transform, opacity; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25d366; color: #FFF; border-radius: 50%;
    text-align: center; box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }
.whatsapp-float img { width: 35px; height: 35px; filter: none; }

.call-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; left: 30px; 
    background-color: var(--color-dark); 
    color: var(--color-white); border-radius: 50%;
    text-align: center; box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    font-size: 1.5rem;
}
.call-float:hover { 
    transform: scale(1.1); 
    box-shadow: var(--shadow-gold); 
    background: var(--gold-gradient); 
    color: var(--color-dark); 
}

@media (max-width: 992px) {
    :root { --spacing-section: 80px; } 
    
    .split-layout { flex-direction: column; gap: 40px; }
    .split-image { width: 100%; max-height: 500px; object-fit: cover; }
    .quote-layout { flex-direction: column; }
    .quote-text { padding-bottom: 40px; text-align: center; }
    .contact-list li { justify-content: center; }
    
    .testimonial-container { scroll-snap-type: x mandatory; }
    .review-card { scroll-snap-align: center; width: 300px; }
}

@media (max-width: 768px) {
    :root { 
        --container-width: 100%; 
        --spacing-section: 60px; 
    }

    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero p { font-size: 1rem; }

    .mobile-toggle { 
        display: block; font-size: 1.5rem; 
        color: var(--color-white); cursor: pointer; z-index: 1001;
        transition: var(--transition);
        margin-left: auto;
        margin-right: 15px;
        margin-top: 20px; 
    }
    .site-header.scrolled .mobile-toggle { color: var(--color-dark); }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: var(--color-white); flex-direction: column;
        justify-content: center; align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1100; 
        gap: 25px;
    }

    .nav-links.active { right: 0; }

    .close-menu {
        display: block; position: absolute; top: 30px; right: 30px;
        font-size: 2rem; cursor: pointer; color: var(--color-dark);
        transition: var(--transition);
    }
    .close-menu:hover { transform: rotate(90deg); color: var(--color-accent); }

    .nav-links a { color: var(--color-dark); font-size: 1.3rem; }

    .nav-links .dropdown-menu { display: none !important; }
    .nav-links .dropdown > a i.fa-chevron-down { display: none !important; }

    .nav-links a.btn-primary { color: #fff !important; width: 100%; text-align: center; white-space: nowrap; }

    .hero-content { padding-top: 15vh; max-width: 100%; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 14px 20px; }

    .service-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .entity-grid { grid-template-columns: 1fr; }

    .experience-badge { right: 15px; bottom: 15px; }
    .quote-form-wrapper { min-width: 0; width: 100%; }

    .stats-grid { flex-wrap: wrap; gap: 30px; justify-content: center; text-align: center; }
    .stat { flex: 1 1 40%; }
    footer { padding-top: 30px; }
    .footer-top { flex-direction: column; gap: 40px; text-align: center; }
    .footer-brand { margin-top: 0; }
    .footer-brand, .footer-links, .footer-contact { align-items: center; }
.footer-logo { 
        margin-left: auto; 
        margin-right: auto; 
        max-width: 300px; 
        height: auto;
    }
    .social-links { justify-content: center; }
    .copyright-wrapper { flex-direction: column; gap: 5px; }
    .separator { display: none; }
    
    .whatsapp-float { right: 20px; width: 50px; height: 50px; bottom: 20px; }
    .call-float { left: 20px; width: 50px; height: 50px; bottom: 20px; font-size: 1.2rem; }
    .whatsapp-float img { width: 28px; height: 28px; }
}


@media (max-width: 480px) {
    h1 { font-size: 2.2rem; margin-bottom: 15px; }
    h2 { font-size: 1.75rem; }
    .sub-heading { font-size: 0.75rem; letter-spacing: 2px; }
    
    .container { padding: 0 15px; }
    .section-padding { padding: 50px 0; }

    .service-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .entity-grid { grid-template-columns: 1fr; }
    .quote-form-wrapper { min-width: 0; width: 100%; }
    
    .service-card .card-image { height: 200px; }
    .card-body { padding: 25px; }
    
    .marquee-content img { height: 50px; } 
    .marquee-content span { margin: 0 10px; }
    
    .quote-form-wrapper { padding: 30px 20px; }
    .quote-heading { font-size: 2rem; }
    
    .review-card { width: 85vw; }
}


.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 260px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 15px 0;
    z-index: 1100;
    border-top: 3px solid var(--color-accent);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    color: var(--color-dark) !important;
    padding: 10px 25px;
    display: block;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--color-accent) !important;
    padding-left: 30px;
}

.site-header.scrolled .dropdown-menu {
    background: var(--color-white);
    box-shadow: var(--shadow-hover);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  font-style: italic;
  vertical-align: middle;
  shape-margin: 0.75rem;
}

img[loading="lazy"] {
  will-change: transform;
}