@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap");
        :root {
            --orange: #F7931E;
            --orange-dark: #E07810;
            --orange-light: #FFB347;
            --cyan: #00B4D8;
            --cyan-light: #48CAE4;
            --dark: #f7f7f7;
            --dark2: #f0eded;
            --dark3: #dbdbdb;
            --glass: rgba(196, 196, 196, 0.123);
            --glass-border: rgba(255, 255, 255, 0.12);
            --text: #272727;
            --text-muted: #7c7c7c;
            --radius: 16px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            /* background: var(--dark); */
            color: var(--text);
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 2px;
            height: 2px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark2);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--orange);
            border-radius: 2px;
        }

        /* ===== NAV ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 2rem;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(10, 10, 10, 0.185);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            /* background: rgba(10, 10, 10, 0.95); */
            box-shadow: 0 4px 30px rgba(247, 147, 30, 0.1);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .nav-logo img {
            height: 44px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 0.2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            padding: 0.5rem 0.85rem;
            border-radius: 8px;
            transition: all 0.25s;
            cursor: pointer;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--orange);
            background: rgba(247, 147, 30, 0.1);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: #fff !important;
            padding: 0.5rem 1.2rem !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
            background: linear-gradient(135deg, var(--orange-light), var(--orange)) !important;
            color: #fff !important;
        }

        /* ===== HAMBURGER ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--orange);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ===== PAGES ===== */
        .page {
            display: block;
            min-height: 100vh;
            padding-top: 72px;
            /* background-position: center 72px; */
            animation: fadeInPage 0.5s ease;
        }



        /* ====== Loadder ====== */


        .loader-container.hidden{
            display:none; 
        }
        .loader-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: var(--dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    padding-bottom:150px;
    transition: all .7s ease-in-out;
        }
        .loader-container .progress-indicator{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items:center;
            margin-top: -140px;
        }

        .loader-container .progress-indicator span{
            color: #346a74;
        }

/* HTML: <div class="loader"></div> */
.loader {
  display: inline-grid;
  padding: 5px;
  background: var(--dark);
  filter: blur(4px) contrast(12);
  transform: scale(.6);
}
.loader:before {
  content: "";
  height: 40px;
  aspect-ratio: 3;
  --c: #9dedfd 64%,#346a74 66% 98%,#0000 101%;
  background:
    radial-gradient(35% 146% at 50% 159%,var(--c)) 0 0,
    radial-gradient(35% 146% at 50% -59%,var(--c)) 100% 100%;
  background-size: calc(200%/3) 50%;
  background-repeat: repeat-x;
  animation: l11 .8s infinite linear;
}
@keyframes l11{
  to {background-position: -200% 0,-100% 100%}
}

 @keyframes loader-zoom {
            from {
                opacity: 0.2;
                /* transform: scale(1.1); */
            }

            to {
                opacity: 1;
                /* transform: scale(1); */
            }
        }
        @keyframes fadeInPage {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: calc(100vh - 72px);
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            filter: brightness(0.25);
            transform: scale(1.05);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            from {
                transform: scale(1.05);
            }

            to {
                transform: scale(1.12);
            }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(247, 147, 30, 0.1) 50%, rgba(10, 10, 10, 0.95) 100%);
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--orange);
            opacity: 0.4;
            animation: float linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.4;
            }

            90% {
                opacity: 0.4;
            }

            100% {
                transform: translateY(-100px) rotate(720deg);
                opacity: 0;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(247, 147, 30, 0.15);
            border: 1px solid rgba(247, 147, 30, 0.3);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: slideInLeft 0.8s ease 0.3s forwards;
        }

        .hero-title {
            color: var(--cyan);
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 7vw, 6rem);
            line-height: 1;
            letter-spacing: 0.02em;
            opacity: 0;
            animation: slideInLeft 0.8s ease 0.5s forwards;
        }

        .hero-title span {
            color: var(--orange);
            display: block;
        }

        .hero-sub {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 1.5rem 0 2.5rem;
            opacity: 0;
            animation: slideInLeft 0.8s ease 0.7s forwards;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: slideInLeft 0.8s ease 0.9s forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: #fff;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(247, 147, 30, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(247, 147, 30, 0.5);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--text-muted);
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            cursor: pointer;
            border: 1px solid var(--glass-border);
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: rgba(247, 147, 30, 0.05);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            opacity: 0;
            animation: slideInRight 0.8s ease 1.1s forwards;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stat-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            border-radius: var(--radius);
            padding: 1.5rem 1rem;
            text-align: center;
            transition: all 0.3s;
        }

        .stat-card:hover {
            border-color: var(--orange);
            background: rgba(247, 147, 30, 0.08);
            transform: translateY(-4px);
        }

        .stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--orange);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-img-container {
            position: relative;
            opacity: 0;
            animation: slideInRight 0.8s ease 0.6s forwards;
        }

        .hero-main-img {
            width: 100%;
            border-radius: 24px;
            border: 1px solid var(--glass-border);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(247, 147, 30, 0.1);
            object-fit: cover;
            height: 400px;
        }

        .hero-float-card {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: rgba(15, 15, 15, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            padding: 1rem 1.4rem;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: floatCard 3s ease-in-out infinite;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .float-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #fff;
            flex-shrink: 0;
        }

        .float-text strong {
            font-size: 1.1rem;
            color: var(--text);
        }

        .float-text small {
            color: var(--text-muted);
            font-size: 0.78rem;
            display: block;
        }

        /* ===== SECTION ===== */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(247, 147, 30, 0.12);
            border: 1px solid rgba(247, 147, 30, 0.25);
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1.05;
            margin-bottom: 1rem;
        }

        .section-title span {
            color: var(--orange);
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            max-width: 600px;
        }

        /* ===== SERVICES ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(247, 147, 30, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-8px) scale(1.01);
            border-color: rgba(247, 147, 30, 0.4);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(247, 147, 30, 0.2);
        }

        .service-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img {
            transform: scale(1.05);
        }

        .service-img-wrap {
            overflow: hidden;
            position: relative;
        }

        .service-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .service-body {
            padding: 1.5rem;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 1rem;
            box-shadow: 0 8px 20px rgba(247, 147, 30, 0.3);
        }

        .service-body h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }

        .service-body p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .service-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 1.2rem;
        }

        .service-features li {
            font-size: 0.83rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--orange);
            font-size: 0.88rem;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.2s;
            cursor: pointer;
        }

        .service-link:hover {
            gap: 10px;
        }

        /* ===== WHY US ===== */
        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .why-img-wrap {
            position: relative;
        }

        .why-img-main {
            width: 100%;
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            object-fit: cover;
            height: 460px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .why-img-accent {
            position: absolute;
            bottom: -25px;
            right: -25px;
            width: 160px;
            height: 160px;
            border-radius: 16px;
            border: 3px solid var(--dark);
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .why-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .why-feature {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1.2rem;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .why-feature:hover {
            border-color: rgba(247, 147, 30, 0.35);
            background: rgba(247, 147, 30, 0.05);
            transform: translateX(6px);
        }

        .why-feat-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, rgba(247, 147, 30, 0.2), rgba(247, 147, 30, 0.05));
            border: 1px solid rgba(247, 147, 30, 0.3);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--orange);
            flex-shrink: 0;
        }

        .why-feat-text h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .why-feat-text p {
            font-size: 0.83rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            background: var(--dark2);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
            padding: 5rem 2rem;
            width: 100%;
        }

        .testimonials-inner {
            /* max-width: 1200px; */
            width: 100%;
            margin: 0 auto;

        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .testimonials-hlist {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 1.5rem;
            margin-top: 3rem;
            overflow-y: hidden;
            overflow-x: auto;
            padding-bottom: 4px;
        }

        .testimonial-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            border-radius: 18px;
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            min-width: 300px;
            overflow: hidden;
            height: 290px;
        }



        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 4rem;
            color: var(--orange);
            opacity: 0.2;
            font-family: 'Bebas Neue', sans-serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            border-color: rgba(247, 147, 30, 0.3);
            transform: translateY(-4px);
        }

        .stars {
            display: flex;
            font-size: 0.92rem;
            margin-bottom: 1rem;
        }

        .stars .rate{
            color: var(--orange);
        }

        .stars .miss-rate{
            color: var(--text-muted); 
        }
        .testimonial-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .testimonial-card .audio-player {
            display: flex;
            width: 100%;
            gap: 5px;
            align-items: center; 
            
        } 


         .audio-player .play-button { 
            border-radius: 30px;
            display: flex;
            width: 30px;
            height: 30px;
            max-height: 30px;
            min-height: 30px;
            max-width: 30px;
            min-width: 30px;
            background-color: var(--dark3);
            transition: all .3s;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

         .audio-player .play-button i{ 
            transition: all .3s;
        }
         .audio-player .play-button:hover > i{ 
            color:  var(--orange);
        }
         .audio-player .play-button:hover{ 
            background-color:  var(--text);
        }

         .audio-player .audio-viewer { 
            border-radius: 10px;
            display: flex;
            width: 100%;
            height: 30px;
            background-color: var(--dark3);
        }
        .testimonial-card .video-viewer {
            position: absolute;
            min-height: 290px;
            width: 100%;
            display: flex;
            flex: 1; 
            margin-bottom: 10px;
            z-index: -1;
            top: 0;
            left: 0;
    overflow: hidden;
    cursor: pointer;

        }

        .testimonial-card .video-viewer video {
            width: 100%;
            height: 290px;
            object-fit: cover; 
        }
        .testimonial-card .video-viewer .play-button{
            position: absolute; 
            top: 90px;
            left: 90px;
            width: 100px;
            height: 100px;
            border-radius: 50px;
            background-color: var(--glass);
            display: flex;
            align-items: center;
            justify-content: center ;
            transition: opacity .5s ease-in-out;
            opacity: 0;

            backdrop-filter: blur(10px);
        }

        .testimonial-card .video-viewer:hover> .play-button{
            opacity: 1;
        }
        .testimonial-card .video-viewer .play-button i{
            font-size: 40px;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            position: absolute;
            left: 12px;
            bottom: 12px;
        }

        .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            flex-shrink: 0;
        }

        .author-info strong {
            font-size: 0.9rem;
            display: block;
        }

        .author-info small {
            color: var(--text-muted);
            font-size: 0.78rem;
        }

        /* ===== GALLERY PAGE ===== */
        .gallery-filters {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .filter-btn {
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            border: 1px solid var(--glass-border);
            background: var(--glass);
            color: var(--text-muted);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s;
            backdrop-filter: blur(10px);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            border-color: var(--orange);
            color: #fff;
        }

        .gallery-grid {
            columns: 3;
            column-gap: 1.2rem;
        }

        .gallery-item {
            break-inside: avoid;
            margin-bottom: 1.2rem;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            border: 1px solid var(--glass-border);
            transition: all 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            border-color: var(--orange);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .gallery-item img {
            width: 100%;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            padding: 1rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay span {
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            background: rgba(247, 147, 30, 0.8);
            padding: 4px 12px;
            border-radius: 50px;
        }

        /* ===== PRODUCTS PAGE ===== */
        .products-hero {
            text-align: center;
            padding: 4rem 2rem 3rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            padding: 0 2rem 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .product-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-color: rgba(247, 147, 30, 0.4);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .product-img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: var(--dark3);
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-img {
            transform: scale(1.08);
        }

        .product-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--dark);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            color: var(--orange);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .product-body {
            padding: 1.5rem;
        }

        .product-body h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .product-body p {
            font-size: 0.84rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .product-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--orange);
        }

        .product-price small {
            font-family: 'Outfit', sans-serif;
            font-size: 0.75rem;
            color: var(--text-muted);
            display: block;
            font-weight: 400;
            line-height: 1;
        }

        .btn-small {
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }

        .btn-small:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(247, 147, 30, 0.35);
        }

        /* ===== EDUCATION PAGE ===== */
        .edu-hero {
            position: relative;
            padding: 4rem 2rem;
            text-align: center;
            overflow: hidden;
        }

        .edu-hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(247, 147, 30, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .pest-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
            padding: 0 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .pest-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .pest-card:hover {
            border-color: rgba(247, 147, 30, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .pest-card-header {
            padding: 1.5rem 1.5rem 1rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            border-bottom: 1px solid var(--glass-border);
        }

        .pest-emoji {
            font-size: 2.5rem;
            filter: grayscale(0.3);
        }

        .pest-header-text h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .pest-risk {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .risk-alto {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .risk-medio {
            background: rgba(247, 147, 30, 0.15);
            color: var(--orange);
            border: 1px solid rgba(247, 147, 30, 0.3);
        }

        .pest-body {
            padding: 1.2rem 1.5rem 1.5rem;
        }

        .pest-body p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .pest-diseases {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .disease-tag {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #fca5a5;
            font-size: 0.73rem;
            padding: 3px 10px;
            border-radius: 50px;
            font-weight: 500;
        }

        .alert-section {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(247, 147, 30, 0.05));
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            margin: 3rem 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden;
        }

        .alert-section::before {
            content: '⚠️';
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 8rem;
            opacity: 0.05;
        }

        .alert-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: #ef4444;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .alert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .alert-item {
            background: var(--glass);
            border: 1px solid rgba(239, 68, 68, 0.15);
            border-radius: 12px;
            padding: 1rem;
        }

        .alert-item i {
            color: #ef4444;
            font-size: 1.3rem;
            margin-bottom: 8px;
            display: block;
        }

        .alert-item h4 {
            font-size: 0.88rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .alert-item p {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* ===== BOOKING / CONTACT PAGE ===== */
        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: start;
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .booking-info h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .booking-info h2 span {
            color: var(--orange);
        }

        .booking-info p {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .contact-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.2rem;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
            text-decoration: none;
            color: var(--text);
        }

        .contact-card:hover {
            border-color: var(--orange);
            background: rgba(247, 147, 30, 0.05);
            transform: translateX(5px);
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #fff;
            flex-shrink: 0;
        }

        .contact-text strong {
            font-size: 0.88rem;
            display: block;
        }

        .contact-text span {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* ===== BOOKING FORM ===== */
        .booking-form-wrap {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(30px);
            border-radius: 24px;
            padding: 2.5rem;
        }

        .booking-form-wrap h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: rgba(182, 182, 182, 0.226);
            border: 1px solid var(--glass-border);
            color: var(--text);
            padding: 0.75rem 1rem;
            border-radius: 10px;
            font-size: 0.92rem;
            font-family: 'Outfit', sans-serif;
            transition: all 0.3s;
            outline: none;
            appearance: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--orange);
            background: rgba(247, 147, 30, 0.04);
            box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
        }

        .form-group select option {
            background: var(--dark3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 90px;
        }

        /* ===== CALENDAR ===== */
        .calendar-wrap {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            padding: 1.2rem;
            margin-bottom: 1.2rem;
        }

        .calendar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .cal-title {
            font-size: 0.95rem;
            font-weight: 700;
        }

        .cal-nav {
            display: flex;
            gap: 6px;
        }

        .cal-nav-btn {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            border: 1px solid var(--glass-border);
            background: var(--glass);
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            transition: all 0.2s;
        }

        .cal-nav-btn:hover {
            border-color: var(--orange);
            color: var(--orange);
        }

        .cal-days-header {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 3px;
            margin-bottom: 6px;
        }

        .cal-day-label {
            text-align: center;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 4px;
        }

        .cal-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 3px;
        }

        .cal-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 0.82rem;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .cal-day:hover {
            background: rgba(247, 147, 30, 0.15);
            color: var(--orange);
        }

        .cal-day.today {
            background: rgba(247, 147, 30, 0.2);
            color: var(--orange);
            font-weight: 700;
        }

        .cal-day.selected {
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: #fff;
            font-weight: 700;
        }

        .cal-day.empty {
            cursor: default;
        }

        .cal-day.past {
            opacity: 0.35;
            cursor: not-allowed;
        }

        /* ===== MAP ===== */
        .map-wrap {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            margin-bottom: 1.2rem;
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 220px;
            background: var(--dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
            color: inherit;
        }

        .map-placeholder:hover {
            background: rgba(247, 147, 30, 0.05);
        }

        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark2);
            border-top: 1px solid var(--glass-border);
            padding: 4rem 2rem 2rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand img {
            height: 50px;
            margin-bottom: 1rem;
            object-fit: contain;
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-btn {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid var(--glass-border);
            background: var(--glass);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.25s;
        }

        .social-btn:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: rgba(247, 147, 30, 0.1);
            transform: translateY(-2px);
        }

        .footer-col h4 {
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 1.2rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.88rem;
            cursor: pointer;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-links a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            border-top: 1px solid var(--glass-border);
            padding-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-bottom p {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-bottom span {
            color: var(--orange);
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal-left.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal-right.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.97);
            backdrop-filter: blur(30px);
            border-bottom: 1px solid var(--glass-border);
            padding: 1.5rem;
            z-index: 999;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            color: var(--text-muted);
            text-decoration: none;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            background: rgba(247, 147, 30, 0.1);
            color: var(--orange);
        }

        /* ===== WHATSAPP FLOAT ===== */
        .wa-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: all 0.3s;
            animation: pulse-wa 2s ease-in-out infinite;
        }

        .wa-float:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
        }

        @keyframes pulse-wa {

            0%,
            100% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
            }
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            background: var(--dark2);
            border-bottom: 1px solid var(--glass-border);
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(247, 147, 30, 0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        .page-hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 0.75rem;
        }

        .page-hero h1 span {
            color: var(--orange);
        }

        .page-hero p {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .breadcrumb span {
            color: var(--orange);
            cursor: pointer;
        }

        #page-education .breadcrumb {
            color: var(--dark2);
        }

        #page-education h1 {
            color: var(--dark2);
        }

        .breadcrumb span:hover {
            text-decoration: underline;
        }

        /* ===== NOTICE ===== */
        .success-msg {
            background: rgba(34, 197, 94, 0.12);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            color: #86efac;
            font-size: 0.9rem;
            display: none;
            align-items: center;
            gap: 10px;
            margin-top: 1rem;
        }

        .success-msg.show {
            display: flex;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .why-img-wrap {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .booking-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                columns: 2;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .hero-stats {
                grid-template-columns: 1fr 1fr;
            }

            .gallery-grid {
                columns: 1;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .products-grid {
                padding: 0 1rem 2rem;
            }

            .pest-grid {
                padding: 0 1rem;
            }
        }

        /* ===== PROGRESS BAR ===== */
        .progress-bar {
            position: fixed;
            top: 72px;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), var(--orange-light));
            z-index: 999;
            transition: width 0.1s;
            box-shadow: 0 0 10px var(--orange);
        }

        /* ===== LOADING DOTS ===== */
        .dots-loader {
            display: inline-flex;
            gap: 4px;
        }

        .dots-loader span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
            animation: dotBounce 1.2s ease-in-out infinite;
        }

        .dots-loader span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .dots-loader span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes dotBounce {

            0%,
            80%,
            100% {
                transform: scale(0.6);
                opacity: 0.5;
            }

            40% {
                transform: scale(1);
                opacity: 1;
            }
        }