:root {
    --primary: #00A8E8;
    --primary-dark: #0090C7;
    --primary-glow: #00D4FF;
    --dark: #2D3436;
    --light: #F9F9F9;
    --white: #FFFFFF;
    --gray: #6C757D;
    --success: #28A745;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    position: relative;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 80px 0;
    scroll-margin-top: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

#home {
    opacity: 1;
    transform: translateY(0);
}

.bg-light {
    background-color: rgba(249, 249, 249, 0.5);
    backdrop-filter: blur(10px);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 168, 232, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

a.logo,
.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

/* Navigation Logo Image */
.nav-logo {
    height: 70px;
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 168, 232, 0.3));
}

/* Footer Logo Image */
.footer-logo {
    height: 120px;
    max-height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo span {
    color: var(--primary);
}

.logo:hover {
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.btn-contact {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-contact:hover {
    background: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8%;
    min-height: 90vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    gap: 60px;
}

@media (min-width: 1400px) {
    .hero {
        padding: 140px 10%;
        gap: 80px;
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glassmorphism Text Box */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 
        0 8px 32px rgba(0, 168, 232, 0.15),
        0 0 60px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 168, 232, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Light reflection effect */
.hero-glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%);
    transform: rotate(45deg);
    animation: lightReflection 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightReflection {
    0%, 100% {
        transform: rotate(45deg) translateX(-100%) translateY(-100%);
    }
    50% {
        transform: rotate(45deg) translateX(100%) translateY(100%);
    }
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(0, 168, 232, 0.6), 
        rgba(0, 212, 255, 0.8), 
        rgba(0, 168, 232, 0.6),
        rgba(0, 212, 255, 0.8));
    background-size: 300% 300%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderGlow 3s ease infinite, borderFlow 4s linear infinite;
    z-index: -1;
    filter: blur(1px);
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes borderFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 300%;
    }
}

.hero-glass-card h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--dark);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1200px) {
    .hero-glass-card h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 968px) {
    .hero-glass-card h1 {
        font-size: 3.5rem;
    }
}

.hero-glass-card h1 .gradient-text {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #00D4FF 50%, var(--primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    display: inline-block;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.sub-headline {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-glass-card p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.accreditations {
    display: flex;
    gap: 20px;
    margin: 40px 0 50px 0;
    flex-wrap: wrap;
}

.accreditation-logo {
    padding: 14px 28px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 168, 232, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.accreditation-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    animation: metallicShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes metallicShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.accreditation-logo span {
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary-glow), 0 5px 15px rgba(0, 168, 232, 0.4);
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px var(--primary-glow), 
            0 0 40px var(--primary-glow), 
            0 0 60px rgba(0, 212, 255, 0.4),
            0 5px 15px rgba(0, 168, 232, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px var(--primary-glow), 
            0 0 60px var(--primary-glow), 
            0 0 90px rgba(0, 212, 255, 0.6),
            0 5px 20px rgba(0, 168, 232, 0.5);
    }
}

.btn-primary:hover {
    box-shadow: 
        0 0 30px var(--primary-glow), 
        0 0 60px var(--primary-glow), 
        0 0 90px rgba(0, 212, 255, 0.5),
        0 5px 20px rgba(0, 168, 232, 0.4);
}

.magnetic-btn {
    position: relative;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(45deg, 
        var(--primary-glow), 
        var(--primary), 
        var(--primary-glow), 
        var(--primary));
    background-size: 300% 300%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-secondary.animated-border::before {
    animation: borderFlow 2s linear infinite;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 300%;
    }
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 0 25px var(--primary-glow), 
        0 0 50px var(--primary-glow),
        0 0 75px rgba(0, 212, 255, 0.4);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 550px;
}

/* Hero Image Frame - High-Tech Style */
.hero-image-frame {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 168, 232, 0.5);
    box-shadow: 
        0 0 20px rgba(0, 168, 232, 0.2),
        0 0 40px rgba(0, 212, 255, 0.1),
        0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(0, 168, 232, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-image-frame:hover {
    transform: scale(1.02);
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 
        0 0 30px rgba(0, 168, 232, 0.3),
        0 0 60px rgba(0, 212, 255, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-frame:hover::before {
    opacity: 1;
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.4s ease;
}

.hero-image-frame:hover .hero-photo {
    transform: scale(1.05);
}

/* ================================================
   HERO SWIPER CAROUSEL
   ================================================ */

.hero-swiper {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    position: relative;
}

.hero-swiper .swiper-wrapper {
    border-radius: inherit;
    height: 100%;
}

.hero-swiper .swiper-slide {
    border-radius: inherit;
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
}

/* Dark overlay for text readability on bright images */
.hero-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.hero-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.4s ease;
}

.hero-image-frame:hover .hero-slide-img {
    transform: scale(1.05);
}

/* Swiper Pagination - Futuristic Glowing Dots */
.hero-swiper .swiper-pagination {
    position: absolute;
    bottom: 15px !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border: 1px solid rgba(0, 168, 232, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    border-color: var(--accent);
    box-shadow: 
        0 0 10px rgba(0, 168, 232, 0.6),
        0 0 20px rgba(0, 212, 255, 0.4),
        0 0 30px rgba(0, 168, 232, 0.2);
    transform: scale(1.2);
}

.hero-swiper .swiper-pagination-bullet:hover {
    background: rgba(0, 168, 232, 0.7);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 168, 232, 0.4);
}

/* Placeholder styling when no image is loaded */
.hero-photo[src*="placeholder"],
.hero-photo:not([src]),
.hero-photo[src=""],
.hero-slide-img:not([src]),
.hero-slide-img[src=""] {
    background: linear-gradient(135deg, 
        rgba(0, 168, 232, 0.1) 0%, 
        rgba(0, 212, 255, 0.05) 50%,
        rgba(0, 168, 232, 0.1) 100%);
    min-height: 350px;
}

/* Responsive adjustments for Hero Image */
@media (max-width: 992px) {
    .hero-image-frame {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .hero-image-frame {
        max-width: 100%;
        margin-top: 0;
        border-radius: 16px;
        aspect-ratio: 16 / 10;
    }
    
    .hero-photo,
    .hero-slide-img {
        aspect-ratio: 16 / 10;
    }

    .hero-swiper .swiper-pagination {
        bottom: 12px !important;
    }

    .hero-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .hero-image-frame {
        border-radius: 12px;
        border-width: 1.5px;
    }

    .hero-swiper .swiper-pagination {
        bottom: 10px !important;
        gap: 6px;
    }

    .hero-swiper .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }
}


/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.3px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px auto 50px;
    justify-items: center;
    justify-content: center;
    max-width: 1400px;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 168, 232, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 350px;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s;
    background: linear-gradient(45deg, 
        var(--primary-glow) 0%,
        var(--primary) 25%,
        var(--primary-glow) 50%,
        var(--primary) 75%,
        var(--primary-glow) 100%);
    background-size: 200% 200%;
    z-index: -1;
    filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 168, 232, 0.2), 0 0 30px rgba(0, 212, 255, 0.3);
    border-color: var(--primary-glow);
}

.service-card:hover::after {
    opacity: 1;
    animation: borderBeam 3s linear infinite;
}

@keyframes borderBeam {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card:hover .service-icon {
    animation: pulseIcon 0.6s ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.2px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-services-cta {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* Solar Section */
.solar-highlight {
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
}

.solar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.solar-feature {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 168, 232, 0.1);
}

.solar-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.solar-feature p {
    color: var(--gray);
    line-height: 1.7;
}

.solar-cta {
    text-align: center;
    margin-top: 40px;
}

/* Compliance Section */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.compliance-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 168, 232, 0.1);
}

.compliance-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.compliance-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 168, 232, 0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 60px;
}

.review-text:empty::before {
    content: "[Your testimonial text here]";
    color: #ccc;
    font-style: normal;
}

.review-author {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid rgba(0, 168, 232, 0.4);
    box-shadow: 
        0 0 15px rgba(0, 168, 232, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    border-color: rgba(0, 212, 255, 0.7);
    box-shadow: 
        0 0 25px rgba(0, 168, 232, 0.3),
        0 0 50px rgba(0, 212, 255, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 20, 40, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 25px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-project-name {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.6),
        0 0 20px rgba(0, 168, 232, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}


/* Areas Section */
.areas-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.area-item {
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-item p {
    color: var(--gray);
    line-height: 1.8;
}

.emergency-callout {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #ffc107;
    margin-top: 20px;
}

.emergency-callout h3 {
    color: #856404;
    margin-bottom: 10px;
}

.emergency-callout p {
    color: #856404;
    margin-bottom: 15px;
}

.emergency-note {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
}

.btn-emergency {
    display: inline-block;
    padding: 12px 25px;
    background: #ffc107;
    color: #856404;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-emergency:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

/* Hidden Honeypot Field */
.hidden-field {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

/* ================================================
   THANK YOU PAGE STYLES
   ================================================ */

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.thank-you-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 232, 0.2);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(0, 168, 232, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, #00D4FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 
        0 10px 40px rgba(0, 168, 232, 0.4),
        0 0 0 10px rgba(0, 168, 232, 0.1);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(0, 168, 232, 0.4),
            0 0 0 10px rgba(0, 168, 232, 0.1);
    }
    50% {
        box-shadow: 
            0 10px 50px rgba(0, 168, 232, 0.5),
            0 0 0 20px rgba(0, 168, 232, 0.05);
    }
}

.thank-you-card h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.thank-you-details {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.thank-you-contact {
    background: rgba(0, 168, 232, 0.08);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.thank-you-contact p {
    color: var(--gray);
    margin-bottom: 15px;
}

.thank-you-contact .btn-primary {
    display: inline-block;
}

.btn-back-home {
    display: inline-block;
    padding: 15px 30px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    border-radius: 8px;
}

.btn-back-home:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Thank You Page Responsive */
@media (max-width: 768px) {
    .thank-you-card {
        padding: 40px 25px;
    }

    .thank-you-card h1 {
        font-size: 2.2rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .thank-you-message {
        font-size: 1.1rem;
    }

    .thank-you-details {
        font-size: 1rem;
    }
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 168, 232, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid rgba(0, 168, 232, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    letter-spacing: 0.2px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 168, 232, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* ================================================
   MOBILE-FIRST RESPONSIVE DESIGN
   ================================================ */

/* Tablet & Small Desktop (max-width: 992px) */
@media (max-width: 992px) {
    /* Navigation - Sticky Header */
    nav {
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
    }

    /* Navigation - Hamburger Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 90px 30px 40px;
        gap: 0;
        z-index: 998;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 8px 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.45s; }
    .nav-menu.active li:nth-child(9) { transition-delay: 0.5s; }

    .nav-menu li a {
        font-size: 1.3rem;
        padding: 15px 20px;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu li a:hover {
        background: rgba(0, 168, 232, 0.1);
    }

    .nav-menu .btn-contact {
        margin-top: 20px;
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        padding: 10px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-logo {
        height: 60px;
        max-height: 60px;
    }

    .footer-logo {
        height: 80px;
        max-height: 80px;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 60px;
        gap: 40px;
        min-height: auto;
    }

    .hero-content-wrapper {
        max-width: 100%;
        order: 1;
    }

    .hero-image {
        max-width: 100%;
        min-height: 350px;
        order: 2;
    }

    .hero-glass-card {
        padding: 40px 30px;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Services Grid - 2 columns on tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation - Sticky Header with Glassmorphism */
    nav {
        padding: 12px 20px;
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(0, 168, 232, 0.15);
        z-index: 1000;
    }

    .nav-logo {
        height: 45px;
        max-height: 45px;
    }

    /* Adjust mobile menu top position to account for smaller header */
    .nav-menu {
        padding-top: 80px;
    }

    /* Hero Typography */
    .hero-glass-card h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .sub-headline {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-glass-card p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .accreditations {
        margin: 25px 0 35px 0;
        justify-content: center;
    }

    .accreditation-logo {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    /* Fat-Finger Friendly Buttons */
    .cta-buttons {
        margin-top: 35px;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 54px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        padding: 16px 30px;
    }

    /* Services Grid - 1 column on mobile */
    .services-grid,
    .solar-grid,
    .compliance-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    /* Gallery - Always visible titles */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        border-width: 1.5px;
    }

    .gallery-item:hover {
        transform: none;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to top, 
            rgba(0, 20, 40, 0.95) 0%, 
            rgba(0, 20, 40, 0.7) 50%,
            transparent 100%
        );
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        top: auto;
        bottom: 0;
        height: 80px;
        align-items: flex-end;
        padding: 0 12px 15px;
        border: none;
    }

    .gallery-project-name {
        font-size: 0.8rem;
        font-weight: 600;
        text-shadow: 
            0 0 8px rgba(0, 212, 255, 0.5),
            0 1px 3px rgba(0, 0, 0, 0.8);
        line-height: 1.3;
    }

    /* Section Padding */
    .section {
        padding: 50px 20px;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    /* Contact Section */
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .contact-form button {
        min-height: 54px;
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        height: 70px;
        max-height: 70px;
        margin: 0 auto 15px;
    }

    .footer-trust-badges {
        justify-content: center;
    }

    /* Areas */
    .areas-list {
        flex-direction: column;
        gap: 10px;
    }

    .area-item {
        width: 100%;
    }

    /* WhatsApp Button - Adjusted position */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    /* Reviews */
    .review-card {
        padding: 25px 20px;
    }

    .review-text {
        font-size: 0.95rem;
        min-height: auto;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    nav {
        padding: 12px 15px;
    }

    .nav-logo {
        height: 45px;
        max-height: 45px;
    }

    .hero {
        padding: 90px 15px 50px;
        gap: 30px;
    }

    .hero-glass-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .hero-glass-card h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .sub-headline {
        font-size: 1rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .tech-illustration {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Gallery Mobile Small */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-overlay {
        height: 70px;
        padding: 0 15px 12px;
    }

    .gallery-project-name {
        font-size: 0.9rem;
    }
}

/* ================================================
   LEGAL PAGE STYLES
   ================================================ */

/* Legal Navigation */
.legal-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 168, 232, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.legal-nav .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.btn-back:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 232, 0.4);
}

/* Legal Section */
.legal-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-align: center;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 50px;
}

/* Legal Cards */
.legal-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 232, 0.15);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 168, 232, 0.08);
    transition: all 0.3s ease;
}

.legal-card:hover {
    border-color: rgba(0, 168, 232, 0.3);
    box-shadow: 0 12px 40px rgba(0, 168, 232, 0.12);
}

.legal-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 168, 232, 0.2);
}

.legal-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-card h3:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 20px 25px;
    color: var(--gray);
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Legal Badges */
.legal-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.legal-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 168, 232, 0.2);
    border-radius: 10px;
    font-weight: 500;
    color: var(--dark);
}

.legal-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Legal Contact Card */
.legal-card.legal-contact {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%);
    border-color: rgba(0, 168, 232, 0.25);
}

.legal-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.legal-contact-info p {
    margin-bottom: 0;
}

/* Legal Updated */
.legal-updated {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 40px;
    font-style: italic;
}

/* Footer Legal Link */
.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Legal Page */
@media (max-width: 768px) {
    .legal-nav .container {
        justify-content: center;
    }

    .legal-title {
        font-size: 2.2rem;
    }

    .legal-subtitle {
        font-size: 1rem;
    }

    .legal-card {
        padding: 25px;
    }

    .legal-card h2 {
        font-size: 1.5rem;
    }

    .legal-badges {
        grid-template-columns: 1fr;
    }

    .legal-contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 50px 0;
    }

    .legal-title {
        font-size: 1.8rem;
    }

    .legal-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .btn-back {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* ================================================
   FAQ SECTION STYLES
   ================================================ */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 232, 0.15);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 168, 232, 0.3);
    box-shadow: 0 5px 20px rgba(0, 168, 232, 0.1);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 168, 232, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 999;
    box-shadow: 
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(0, 168, 232, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(0, 168, 232, 0.4);
    }
    50% {
        box-shadow: 
            0 4px 25px rgba(37, 211, 102, 0.5),
            0 0 0 15px rgba(0, 168, 232, 0);
    }
    100% {
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(0, 168, 232, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 
        0 6px 30px rgba(37, 211, 102, 0.5),
        0 0 0 0 rgba(0, 168, 232, 0);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* WhatsApp Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* ================================================
   EMERGENCY CALL FLOATING BUTTON
   ================================================ */

.emergency-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 999;
}

.emergency-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 4px 20px rgba(220, 53, 69, 0.5),
        0 0 0 0 rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
    animation: emergencyPulse 1.5s infinite;
}

@keyframes emergencyPulse {
    0% {
        box-shadow: 
            0 4px 20px rgba(220, 53, 69, 0.5),
            0 0 0 0 rgba(220, 53, 69, 0.6);
    }
    50% {
        box-shadow: 
            0 4px 30px rgba(220, 53, 69, 0.7),
            0 0 0 12px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 
            0 4px 20px rgba(220, 53, 69, 0.5),
            0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.emergency-float:hover .emergency-button {
    transform: scale(1.1);
    box-shadow: 
        0 6px 35px rgba(220, 53, 69, 0.6),
        0 0 0 0 rgba(220, 53, 69, 0);
}

.emergency-icon {
    width: 28px;
    height: 28px;
}

.emergency-label {
    background: rgba(220, 53, 69, 0.95);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
    letter-spacing: 0.3px;
}

.emergency-fee {
    font-size: 0.65rem;
    color: var(--gray);
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

/* Emergency Button Responsive */
@media (max-width: 768px) {
    .emergency-float {
        bottom: 20px;
        left: 20px;
    }

    .emergency-button {
        width: 52px;
        height: 52px;
    }

    .emergency-icon {
        width: 24px;
        height: 24px;
    }

    .emergency-label {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .emergency-fee {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .emergency-float {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .emergency-button {
        width: 48px;
        height: 48px;
    }

    .emergency-icon {
        width: 22px;
        height: 22px;
    }

    .emergency-label {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .emergency-fee {
        display: none;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

/* ================================================
   FOOTER TRUST BADGES
   ================================================ */

.footer-trust-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.trust-badge-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    background: rgba(0, 168, 232, 0.2);
    border-color: var(--primary);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

/* Footer Trust Badges Responsive */
@media (max-width: 768px) {
    .footer-trust-badges {
        justify-content: center;
    }
}

