/* =============================================
   BHARAT ASTROLOGER — Premium Design System
   Colors extracted from logo: Navy, Blue, Gold, Saffron
   ============================================= */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES (Design Tokens) ===== */
:root {
    /* Backgrounds */
    --bg-primary: #0b1230;
    --bg-secondary: #0f1a3d;
    --bg-card: rgba(26, 45, 109, 0.15);
    --bg-card-solid: #0d1529;
    --bg-footer-dark: #070e1f;
    --bg-copyright: #050a18;

    /* Blues (from logo zodiac wheel) */
    --blue-deep: #1a2d6d;
    --blue-medium: #2b5aba;
    --blue-light: #3a7bd5;
    --blue-glow: #5dade2;
    --blue-pale: #7ec8e3;

    /* Gold (from logo border & symbols) */
    --gold: #c9a84c;
    --gold-light: #d4a843;
    --gold-bright: #e8c84a;

    /* Saffron (from astrologer's clothing) */
    --saffron: #d4841a;
    --saffron-light: #e8913a;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #c9d6e8;
    --text-gold: #c9b88c;
    --text-muted: #7a8ba5;

    /* Borders & Glows */
    --border-blue: rgba(58, 123, 213, 0.3);
    --border-gold: rgba(201, 168, 76, 0.3);
    --glow-blue: rgba(93, 173, 226, 0.25);
    --glow-gold: rgba(201, 168, 76, 0.2);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    cursor: default;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--blue-glow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 0 15px var(--glow-blue), 0 0 30px rgba(93, 173, 226, 0.1);
    transform: translate(-50%, -50%);
}

.custom-cursor.active {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--glow-gold);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-medium), var(--blue-glow), var(--gold));
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--glow-blue);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99998;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-zodiac {
    width: 100px;
    height: 100px;
    border: 3px solid var(--border-blue);
    border-top-color: var(--gold);
    border-right-color: var(--blue-glow);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    position: relative;
}

.preloader-zodiac::before {
    content: '☉';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: var(--gold);
    animation: pulse-glow 2s ease-in-out infinite;
}

.preloader-zodiac::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-top-color: var(--blue-glow);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

.preloader-text {
    margin-top: 30px;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 10px var(--glow-gold); }
    50% { text-shadow: 0 0 30px var(--gold), 0 0 60px var(--glow-gold); }
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9997;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(11, 18, 48, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.header-logo img {
    width: 299.95px;
    height: 84.313px;
    object-fit: contain;
    transition: var(--transition);
}


.header-logo .brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-glow);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--glow-blue);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Custom Modern Dropdown */
.custom-dropdown {
    position: relative;
    display: inline-block;
}

.custom-dropdown-selected {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 45, 109, 0.5);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 8px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.1);
    backdrop-filter: blur(5px);
    user-select: none;
}

.custom-dropdown-selected:hover {
    box-shadow: 0 0 15px var(--glow-gold);
    border-color: var(--gold-bright);
}

.custom-dropdown-selected i.fa-language {
    color: var(--gold);
    font-size: 15px;
}

.custom-dropdown-options {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(11, 18, 48, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-blue);
    border-radius: 12px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.custom-dropdown-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-options li {
    padding: 10px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.custom-dropdown-options li:hover {
    background: rgba(58, 123, 213, 0.15);
    color: var(--gold);
    padding-left: 25px; /* Subtle hover indent */
}

#google_translate_element {
    display: flex;
    align-items: center;
}

.goog-logo-link { display: none !important; }
.goog-te-gadget { color: transparent !important; font-size: 0 !important; line-height: 0 !important; }

/* Deep override to hide Google Translate banner and tooltips */
body { top: 0px !important; position: static !important; min-height: 100vh; }
body > .skiptranslate { display: none !important; }
.goog-te-banner-frame { display: none !important; }
.goog-te-banner-frame.skiptranslate { display: none !important; }
.VIpgJd-Zvi9od-ORHb-OEVmcd { display: none !important; }
.VIpgJd-Zvi9od-aZ2wEe-wOHMyf { display: none !important; }
iframe.goog-te-banner-frame { display: none !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 132, 26, 0.3);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 132, 26, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
    padding: 5px;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-zodiac-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    pointer-events: none;
}

.zodiac-spin {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.25;
    animation: spinZodiac 60s linear infinite;
    filter: drop-shadow(0 0 30px rgba(93, 173, 226, 0.3));
}

@keyframes spinZodiac {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(5, 10, 24, 0.4) 0%, rgba(5, 10, 24, 0.85) 60%, var(--bg-primary) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px 8px 8px;
    background: rgba(26, 45, 109, 0.3);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
    animation: float 6s ease-in-out infinite;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 14px;
    box-shadow: 0 0 15px var(--glow-gold);
}

.badge-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 68px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title .text-gold {
    color: var(--gold);
    display: block;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 132, 26, 0.4);
    animation: btnPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 132, 26, 0.6);
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(212, 132, 26, 0.4); }
    50% { box-shadow: 0 4px 35px rgba(212, 132, 26, 0.6), 0 0 50px rgba(212, 132, 26, 0.2); }
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 35px;
    background: transparent;
    color: var(--blue-glow);
    border: 2px solid var(--blue-light);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(58, 123, 213, 0.1);
    border-color: var(--blue-glow);
    transform: translateY(-3px);
    box-shadow: 0 4px 25px var(--glow-blue);
    color: #fff;
}

/* ===== SECTION COMMON STYLES ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-glow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== COUNTER STATS SECTION (Premium) ===== */
.counter-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #070e1f 0%, var(--bg-secondary) 40%, var(--blue-deep) 70%, #070e1f 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(93, 173, 226, 0.08), transparent 70%);
    top: -200px;
    right: -150px;
    border-radius: 50%;
    animation: counterOrb1 8s ease-in-out infinite alternate;
}

.counter-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
    bottom: -150px;
    left: -100px;
    border-radius: 50%;
    animation: counterOrb2 10s ease-in-out infinite alternate;
}

@keyframes counterOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 60px) scale(1.2); }
}

@keyframes counterOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.15); }
}

/* Floating Particles */
.counter-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.c-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: cParticleFloat 12s linear infinite;
}

.c-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.c-particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 11s; }
.c-particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 16s; }
.c-particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 13s; }
.c-particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 10s; }
.c-particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 15s; }
.c-particle:nth-child(7) { left: 15%; animation-delay: 6s; animation-duration: 12s; background: var(--blue-glow); }
.c-particle:nth-child(8) { left: 60%; animation-delay: 7s; animation-duration: 14s; background: var(--blue-glow); }

@keyframes cParticleFloat {
    0% { bottom: -10px; opacity: 0; transform: translateX(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { bottom: 110%; opacity: 0; transform: translateX(40px); }
}

/* Counter Grid */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Counter Cards */
.counter-card {
    position: relative;
    padding: 45px 25px 40px;
    background: rgba(15, 26, 61, 0.45);
    border: 1px solid rgba(58, 123, 213, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: default;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--blue-glow), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.counter-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(15, 26, 61, 0.65);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(201, 168, 76, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

/* Card Glow */
.counter-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
    pointer-events: none;
}

.counter-card:hover .counter-card-glow {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
}

/* Animated Ring */
.counter-ring {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
}

.counter-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(58, 123, 213, 0.12);
    stroke-width: 4;
}

.ring-progress {
    fill: none;
    stroke: url(#ringGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: calc(339.292 - (339.292 * var(--progress)) / 100);
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
    stroke: var(--gold);
}

/* Icon inside ring */
.counter-icon-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(26, 45, 109, 0.6), rgba(15, 26, 61, 0.9));
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.counter-icon-wrap i {
    font-size: 26px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
    transition: all 0.4s ease;
}

.counter-card:hover .counter-icon-wrap {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow:
        0 4px 25px rgba(201, 168, 76, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(1.08);
}

.counter-card:hover .counter-icon-wrap i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.5));
}

/* Number */
.counter-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* Label */
.counter-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Shine sweep effect */
.counter-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.04), transparent);
    transition: none;
    pointer-events: none;
}

.counter-card:hover .counter-shine {
    animation: counterShineSweep 0.8s ease forwards;
}

@keyframes counterShineSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

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

.about-img-wrap:hover img {
    transform: scale(1.05);
}

.about-img-wrap:first-child {
    grid-row: 1 / 3;
    min-height: 400px;
}

.about-img-wrap:nth-child(2),
.about-img-wrap:nth-child(3) {
    min-height: 185px;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-blue);
    border-radius: 16px;
    pointer-events: none;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    font-size: 42px;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp img {
    width: 24px;
    height: 24px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 45, 109, 0.5), transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-blue);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--glow-blue), 0 0 30px var(--glow-gold);
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

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

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

/* Image shimmer effect */
.service-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
    transition: left 0.6s ease;
}

.service-card:hover .service-card-img::after {
    left: 100%;
}

.service-card-content {
    padding: 24px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-glow);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.service-card-link:hover {
    color: var(--gold);
    gap: 12px;
}

/* ===== SERVICE MODAL ===== */
.service-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 24, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.service-modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-blue);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-blue);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: var(--saffron);
    border-color: var(--saffron);
}

.modal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.modal-body {
    padding: 30px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.modal-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 132, 26, 0.5);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-blue);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue-glow);
    box-shadow: 0 20px 50px var(--glow-blue);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--glow-blue);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 35px var(--glow-blue);
}

.why-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.testimonial-slider {
    padding: 20px 0 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-blue);
    border-radius: 20px;
    padding: 30px;
    margin: 10px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 10px 30px var(--glow-blue);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-gold);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-location {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    color: var(--blue-deep);
    opacity: 0.5;
    font-family: serif;
    line-height: 1;
}

/* Owl carousel dots */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--border-blue) !important;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: var(--transition);
}

.owl-dot.active span {
    background: var(--blue-glow) !important;
    width: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--glow-blue);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--bg-primary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-blue);
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--blue-medium);
    border-color: var(--blue-medium);
    color: #fff;
    box-shadow: 0 4px 15px var(--glow-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 18, 48, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-overlay span {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

/* ===== MEGA FOOTER ===== */
/* Layer 1 — Contact Zone */
.footer-contact {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-footer-dark));
    padding: 80px 0 60px;
    position: relative;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.footer-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-blue);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.footer-form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer-form-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border-blue);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-light);
    box-shadow: 0 0 15px var(--glow-blue);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 132, 26, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 132, 26, 0.6);
}

.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(255, 82, 82, 0.15);
    color: #ff5252;
    border: 1px solid rgba(255, 82, 82, 0.3);
    display: block;
}

/* ===== FORM VALIDATION STYLES ===== */
/* Inline field error text */
.field-error {
    display: block;
    font-size: 12px;
    color: #ff5252;
    margin-top: 6px;
    min-height: 18px;
    line-height: 1.4;
    padding-left: 4px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.field-error.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Error state: red border + subtle red glow */
.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #ff5252 !important;
    box-shadow: 0 0 12px rgba(255, 82, 82, 0.2) !important;
    animation: fieldShake 0.4s ease;
}

/* Valid state: green border + subtle green glow */
.form-group input.valid,
.form-group textarea.valid {
    border-color: #25D366 !important;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.15) !important;
}

/* Shake animation on error */
@keyframes fieldShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* Bottom row for message field (error + char counter) */
.field-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.field-bottom-row .field-error {
    flex: 1;
}

/* Character counter */
.char-counter {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    flex-shrink: 0;
    padding-right: 4px;
    transition: color 0.3s ease;
}

.char-counter.warning {
    color: var(--saffron);
}

.char-counter.limit {
    color: #ff5252;
}

/* Disabled submit button while sending */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-blue);
    border-radius: 14px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    border-color: var(--blue-glow);
    transform: translateX(5px);
    box-shadow: 0 5px 20px var(--glow-blue);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-info-value:hover {
    color: var(--blue-glow);
}

/* Map */
.footer-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-blue);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    filter: brightness(0.7) contrast(1.2) saturate(0.5) hue-rotate(200deg);
}

/* Layer 2 — Info Zone */
.footer-info {
    background: var(--bg-footer-dark);
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-blue);
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand-logo img {
    width: auto;
    height: 45px;
    object-fit: contain;
}

.footer-brand-logo span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background: var(--blue-medium);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--glow-blue);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--blue-glow);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '»';
    color: var(--blue-light);
    font-weight: bold;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--blue-glow);
    transform: translateX(5px);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-contact-list li i {
    color: var(--blue-glow);
    margin-top: 3px;
    width: 16px;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Layer 3 — Copyright Bar */
.footer-copyright {
    background: var(--bg-copyright);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.copyright-text {
    font-size: 13px;
    color: var(--text-muted);
}

.copyright-credit {
    font-size: 13px;
    color: var(--text-muted);
}

.copyright-credit a {
    color: var(--blue-glow);
    font-weight: 600;
    transition: var(--transition);
}

.copyright-credit a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ===== FLOATING CTA BUTTONS ===== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: floatPulse 2s ease-in-out infinite;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.phone {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
}

.float-btn:hover {
    transform: scale(1.1);
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 4px 25px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 170px;
    right: 37px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue-deep);
    border: 1px solid var(--border-blue);
    color: var(--blue-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--blue-medium);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== FLOATING BUTTONS ===== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.float-btn.whatsapp {
    background: #25D366;
}
.float-btn.whatsapp:hover {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.float-btn.phone {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
}
.float-btn.phone:hover {
    box-shadow: 0 0 20px var(--glow-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
/* Tablet */
@media (max-width: 1024px) {
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 14px; }
    .hero-title { font-size: 52px; }
    .section-title { font-size: 38px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Nav */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(11, 18, 48, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.4s ease;
        z-index: 1000;
        border-left: 1px solid var(--border-blue);
    }

    .nav-links.active { right: 0; }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-cta .btn-call { display: none; } /* Hide only call button, keep translate visible */

    .hero-title { font-size: 38px; }
    .badge-text { font-size: 11px; letter-spacing: 1px; }
    .hero-description { font-size: 15px; }
    .hero-buttons { flex-direction: column; }

    .section { padding: 60px 0; }
    .section-title { font-size: 32px; }
    .section-desc { font-size: 15px; }

    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .counter-number { font-size: 38px; }
    .counter-ring { width: 90px; height: 90px; }
    .counter-icon-wrap { width: 58px; height: 58px; }
    .counter-icon-wrap i { font-size: 22px; }
    .counter-card { padding: 35px 20px 30px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { grid-template-columns: 1fr 1fr; gap: 15px; }
    .about-img-wrap:first-child { grid-column: 1 / 3; grid-row: auto; min-height: 220px; }
    .about-img-wrap:nth-child(2),
    .about-img-wrap:nth-child(3) { min-height: 140px; }
    .about-content .section-title { font-size: 32px; text-align: center; }
    .about-content .section-tag { text-align: center; }
    .about-text { text-align: left; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-contact-grid { grid-template-columns: 1fr; }
    .footer-info-grid { grid-template-columns: 1fr; gap: 30px; }

    .footer-copyright .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .floating-cta { bottom: 20px; right: 20px; }
    .float-btn { width: 48px; height: 48px; font-size: 20px; }
    .back-to-top { bottom: 85px; right: 27px; }

    .custom-cursor { display: none; }
}

@media (max-width: 480px) {
    .header-logo .brand-name { font-size: 18px; }
    .header-logo img { width: auto; height: 35px; }
    .hero-title { font-size: 32px; }
    .counter-grid { gap: 12px; }
    .counter-number { font-size: 30px; }
    .counter-label { font-size: 12px; }
    .counter-ring { width: 76px; height: 76px; margin-bottom: 16px; }
    .counter-icon-wrap { width: 50px; height: 50px; }
    .counter-icon-wrap i { font-size: 18px; }
    .counter-card { padding: 28px 15px 24px; border-radius: 18px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .footer-form-card { padding: 25px; }
    .service-card-img { height: 180px; }
}
