/* ====================================
   SNR ENTERPRISES - MAIN STYLESHEET
   Colors: Green #3cb54a, Gold #FFD700, White #fff
   ==================================== */

/* === CSS VARIABLES === */
:root {
    --green: #3cb54a;
    --green-dark: #2d8f3a;
    --green-light: #5ed46c;
    --gold: #FFD700;
    --gold-dark: #e6c000;
    --gold-light: #ffe44d;
    --white: #ffffff;
    --black: #0a0a0a;
    --dark: #111820;
    --dark-2: #1a2535;
    --dark-3: #243040;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --text: #1f2937;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-green: 0 8px 30px rgba(60,181,74,0.3);
    --shadow-gold: 0 8px 30px rgba(255,215,0,0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --font-main: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* === PRELOADER === */
#preloader {
    position: fixed; inset: 0;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin: 0 auto 20px;
    animation: pulse 1.5s infinite;
}
.preloader-bar {
    width: 200px; height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 0 auto 12px;
    overflow: hidden;
}
.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 2px;
    animation: fillBar 1.8s ease forwards;
}
.preloader-inner p { color: rgba(255,255,255,0.6); font-family: var(--font-main); font-size: 14px; letter-spacing: 2px; }

@keyframes fillBar { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.4); } 50% { box-shadow: 0 0 0 15px rgba(255,215,0,0); } }

/* === CONTAINER === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.text-gradient {
    background: linear-gradient(135deg, var(--green-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === SECTION STYLES === */
.section-pad { padding: 80px 0; }
.bg-light { background: var(--gray-light); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { color: var(--dark); margin-bottom: 12px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-main);
}
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(60,181,74,0.45); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-outline {
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    background: transparent;
}
.btn-outline-light:hover { background: var(--white); color: var(--green); }
.btn-white {
    background: var(--white);
    color: var(--green-dark);
    font-weight: 700;
}
.btn-white:hover { background: var(--gray-light); transform: translateY(-2px); }
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* === TOP BAR === */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.82rem;
    border-bottom: 2px solid var(--green);
}
.top-bar-content {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.top-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.top-contact a, .top-social a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.top-contact a:hover { color: var(--gold); }
.top-social { display: flex; gap: 12px; }
.top-social a {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
}
.top-social a:hover { background: var(--green); color: var(--white); }

/* === NAVBAR === */
.navbar {
    background: var(--white);
    padding: 0;
    position: sticky; top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 20px;
}
.logo {
    display: flex; align-items: center; gap: 12px;
}
.logo img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-main); font-size: 1.2rem; font-weight: 800; color: var(--green-dark); line-height: 1.1; }
.logo-tagline { font-size: 0.65rem; color: var(--gold-dark); font-weight: 500; letter-spacing: 0.5px; }

.nav-menu {
    display: flex; align-items: center; gap: 4px;
}
.nav-menu > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 10px 14px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute; bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--green);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { left: 14px; right: 14px; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--green); }

/* === FOOTER CREDIT === */
.developer-credit {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.colorful-link {
    background: linear-gradient(90deg, #ff007f, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.colorful-link:hover {
    filter: brightness(1.2);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 5px); left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 8px;
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border-top: 3px solid var(--green);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.dropdown-menu::-webkit-scrollbar { width: 3px; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
    display: block; padding: 8px 14px;
    color: var(--text); font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.dropdown-menu li a:hover { background: var(--gray-light); color: var(--green); padding-left: 20px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    padding: 8px;
}
.hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO SECTION === */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 0;
}
.hero-video-bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,20,15,0.85) 0%, rgba(20,40,25,0.75) 50%, rgba(0,0,0,0.6) 100%);
}
.hero .container { position: relative; z-index: 2; padding: 100px 20px; }
.hero-content { max-width: 680px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.4);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-content p {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.7;
}
.hero-stats {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
    font-family: var(--font-main);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.stat p { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator {
    width: 30px; height: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 15px;
    display: flex; justify-content: center;
    padding-top: 8px;
}
.scroll-indicator span {
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: 0.3; } }

/* === WHY US === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--green), var(--gold));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}
.why-card:hover::before { transform: scaleY(1); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
}
.why-card h3 { color: var(--dark); margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* === SERVICES GRID === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img {
    position: relative; overflow: hidden;
    aspect-ratio: 16/10;
}
.service-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-badge {
    position: absolute; top: 12px; left: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-body { padding: 22px 20px; }
.service-body h3 { color: var(--dark); margin-bottom: 8px; font-size: 1rem; }
.service-body p { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; margin-bottom: 14px; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* === VIDEO SHOWCASE === */
.video-showcase { background: var(--dark-2); }
.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.video-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.video-card video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    max-height: 380px;
}
.video-side { display: grid; gap: 20px; }
.video-side .video-card video { max-height: 178px; }
.video-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: var(--white);
    padding: 20px 16px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    pointer-events: none;
}

/* === PROCESS === */
.process-steps {
    display: flex; align-items: center;
    gap: 0; flex-wrap: wrap;
    justify-content: center;
}
.process-step {
    flex: 1; min-width: 200px; max-width: 240px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green), var(--gold));
    color: var(--white);
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    font-family: var(--font-main);
}
.step-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    margin: 10px auto 16px;
}
.process-step h3 { color: var(--dark); margin-bottom: 8px; }
.process-step p { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; }
.process-arrow {
    color: var(--green);
    font-size: 1.5rem;
    padding: 0 10px;
    opacity: 0.5;
}

/* === GALLERY PREVIEW === */
.gallery-preview { background: var(--dark); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex; align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 500; }

/* === TESTIMONIALS === */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding: 10px 4px;
}
.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
    box-sizing: border-box;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); margin-bottom: 14px; font-size: 1rem; letter-spacing: 3px; }
.testimonial-card p { color: var(--text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--dark); font-size: 0.9rem; }
.testimonial-author span { color: var(--text-light); font-size: 0.78rem; }
.testimonial-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 30px;
}
.testimonial-nav button {
    width: 48px; height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    transition: var(--transition);
    font-size: 1rem;
    border: 2px solid var(--border);
    flex-shrink: 0;
}
.testimonial-nav button:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.testimonial-dots { display: flex; gap: 6px; align-items: center; }
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}
.dot.active { background: var(--green); width: 20px; border-radius: 4px; }

/* Mobile testimonial: horizontal scroll-snap (original slider feel) */
@media (max-width: 768px) {
    .testimonial-slider { overflow: hidden; }
    .testimonial-track {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transform: none !important;
        transition: none !important;
        padding: 10px 4px 16px;
    }
    .testimonial-track::-webkit-scrollbar { display: none; }
    .testimonial-card {
        min-width: 88%;
        width: 88%;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 22px 18px;
    }
    .testimonial-nav {
        display: flex;
        margin-top: 20px;
    }
    .testimonial-nav button {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-content {
    display: flex; align-items: center; justify-content: space-between;
    gap: 30px; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.cta-text h2 { color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === FOOTER === */
footer { background: var(--dark); }
.footer-main { padding: 70px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-brand .footer-logo {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
    margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-links h4, .footer-contact h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: var(--font-main);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.footer-links ul li a::before { content: '→'; opacity: 0; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--green); padding-left: 8px; }
.footer-links ul li a:hover::before { opacity: 1; }
.footer-contact ul li {
    display: flex; gap: 12px; align-items: flex-start;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    margin-bottom: 12px;
}
.footer-contact ul li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer-contact ul li a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact ul li a:hover { color: var(--gold); }
.whatsapp-float-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 16px;
    transition: var(--transition);
}
.whatsapp-float-btn:hover { background: #1da851; transform: translateY(-2px); }
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* === FLOATING BUTTONS === */
.whatsapp-float, .call-float {
    position: fixed;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.whatsapp-float { background: #25D366; color: var(--white); right: 20px; bottom: 90px; }
.whatsapp-float:hover { background: #1da851; transform: scale(1.1); }
.call-float { background: var(--green); color: var(--white); right: 20px; bottom: 20px; }
.call-float:hover { background: var(--green-dark); transform: scale(1.1); }

/* === SERVICE INNER PAGE === */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(60,181,74,0.15) 0%, rgba(255,215,0,0.05) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem; margin-bottom: 16px;
}
.breadcrumb a { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; }

/* Service Detail */
.service-detail { padding: 70px 0; }
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: start;
}
.service-detail-imgs { display: grid; gap: 12px; }
.service-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.service-main-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.service-thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.service-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.service-thumb:hover img { transform: scale(1.05); }
.service-info h2 { color: var(--dark); margin-bottom: 16px; }
.service-info p { color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.service-features { margin: 24px 0; }
.service-features li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--text);
    margin-bottom: 10px;
    font-size: 0.92rem;
}
.service-features li i { color: var(--green); margin-top: 4px; flex-shrink: 0; }
.service-cta-box {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    margin-top: 28px;
}
.service-cta-box h3 { color: var(--white); margin-bottom: 8px; }
.service-cta-box p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 18px; }
.service-cta-box .btn { background: var(--white); color: var(--green-dark); }

/* === GALLERY PAGE === */
.gallery-page { padding: 60px 0; }
.gallery-filter {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 2px solid var(--border);
    color: var(--text);
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
}
.filter-btn.active, .filter-btn:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.gallery-masonry {
    columns: 4;
    gap: 14px;
    column-gap: 14px;
}
.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-item .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(60,181,74,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-masonry-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90vw; max-height: 85vh;
    border-radius: var(--radius-lg);
    object-fit: contain;
}
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--green); }

/* === CONTACT PAGE === */
.contact-page { padding: 70px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px; align-items: start;
}
.contact-info h2 { color: var(--dark); margin-bottom: 12px; }
.contact-info > p { color: var(--text-light); line-height: 1.7; margin-bottom: 30px; }
.contact-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--green);
    transition: var(--transition);
}
.contact-item:hover { background: #e8f5e9; }
.contact-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem;
    flex-shrink: 0;
}
.contact-item h4 { color: var(--dark); margin-bottom: 4px; font-size: 0.95rem; }
.contact-item p, .contact-item a { color: var(--text-light); font-size: 0.88rem; transition: var(--transition); }
.contact-item a:hover { color: var(--green); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.contact-form-card h3 { color: var(--dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; color: var(--text); font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(60,181,74,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
    background: #e8f5e9;
    border: 1px solid var(--green);
    border-radius: var(--radius);
    padding: 16px;
    color: var(--green-dark);
    font-weight: 500;
    display: none;
    text-align: center;
    margin-top: 16px;
}
.form-success.show { display: block; }

.map-section { padding: 0 0 70px; }
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.map-container iframe {
    width: 100%; height: 420px;
    border: none; display: block;
}

/* === SERVICES PAGE === */
.services-page { padding: 60px 0; }
.services-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* === ANIMATIONS === */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-masonry { columns: 3; }
}

@media (max-width: 900px) {
    .video-grid { grid-template-columns: 1fr; }
    .video-side { grid-template-columns: 1fr 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 2; }
    .testimonial-card { min-width: calc(50% - 12px); width: calc(50% - 12px); }
    .process-steps { gap: 20px; }
    .process-arrow { display: none; }
    .dropdown-menu { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.35s ease;
        overflow-y: auto;
        z-index: 999;
        gap: 4px;
    }
    .nav-menu.open { right: 0; }
    .nav-menu > li { width: 100%; }
    .nav-menu > li > a { width: 100%; padding: 12px 16px; }
    .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--green);
        border-radius: 0;
        padding: 5px 0 5px 16px;
        max-height: none;
        display: none;
        grid-template-columns: 1fr;
    }
    .dropdown.open .dropdown-menu { display: grid; }
    .section-pad { padding: 55px 0; }
    .hero .container { padding: 80px 20px; }
    .hero-stats { gap: 15px; }
    .stat-num { font-size: 1.7rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-content { text-align: center; justify-content: center; }
    /* testimonial mobile handled in component block above */
    .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .gallery-masonry { columns: 1; }
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .logo-text { display: none; }
    .contact-form-card { padding: 24px 16px; }
    .service-thumb-grid { grid-template-columns: repeat(3, 1fr); }
}
