@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #1B4332;
    --primary-light: #2D6A4F;
    --primary-dark: #081C15;
    --accent: #40916C;
    --accent-gold: #C9A855;

    --bg-main: #F5F5F7;
    --bg-white: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-card: #ffffff;
    --bg-section-alt: #FAFBFC;

    --text-main: #1D1D1F;
    --text-secondary: #6e6e73;
    --text-light: #f5f5f7;

    --border: rgba(0,0,0,0.06);
    --border-hover: rgba(0,0,0,0.12);

    --radius: 20px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --shadow-xl: 0 32px 64px rgba(0,0,0,0.16);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== DARK MODE (#1) ===================== */
[data-theme="dark"] {
    --bg-main: #0f0f0f;
    --bg-white: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-section-alt: #141414;
    --text-main: #f0f0f0;
    --text-secondary: #8a8a8a;
    --text-light: #f5f5f7;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.5);
    --shadow-xl: 0 32px 64px rgba(0,0,0,0.6);
}
[data-theme="dark"] .section-alt { background: var(--bg-white); }
[data-theme="dark"] nav { background: rgba(15,15,15,0.85); }
[data-theme="dark"] .product-card-body h3 { color: var(--text-main); }
[data-theme="dark"] .faq-question { color: var(--text-main); }
[data-theme="dark"] .faq-answer { color: var(--text-secondary); }
[data-theme="dark"] .partner-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .review-card,
[data-theme="dark"] .process-card { background: var(--bg-card); }
[data-theme="dark"] .stat-icon { background: rgba(45,106,79,0.15); }
[data-theme="dark"] .why-icon-wrap { background: rgba(45,106,79,0.15); }
[data-theme="dark"] .popup-box { background: var(--bg-card); }
[data-theme="dark"] .popup-close { background: rgba(255,255,255,0.1); color: #ccc; }
[data-theme="dark"] footer { background: #050505; }
[data-theme="dark"] .mobile-sticky-cta { background: #1a1a1a; }
[data-theme="dark"] .form-control { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .contact-form { background: var(--bg-card); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] #loader { background: #0f0f0f; }

/* ===================== SCROLL PROGRESS (#7) ===================== */
#scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    z-index: 10000; transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(27,67,50,0.3);
}

/* ===================== THEME TOGGLE (#1) ===================== */
.theme-toggle {
    width: 36px; height: 36px; border-radius: 10px;
    background: transparent; border: 1px solid var(--border-hover);
    color: var(--text-secondary); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: var(--transition);
}
.theme-toggle:hover { background: var(--bg-main); color: var(--primary); }
[data-theme="dark"] .theme-toggle { border-color: rgba(255,255,255,0.15); }
[data-theme="dark"] .theme-toggle:hover { background: rgba(255,255,255,0.08); color: var(--accent-gold); }
.nav-container .theme-toggle:last-of-type { display: none; }
@media (max-width: 768px) {
    .nav-links .theme-toggle { display: none !important; }
    .nav-container > div .theme-toggle { display: flex; }
}

/* ===================== PARTICLES CANVAS (#8) ===================== */
#particles-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none; opacity: 0.35;
}
[data-theme="dark"] #particles-canvas { opacity: 0.6; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===================== TYPOGRAPHY ===================== */
h1,h2,h3,h4,h5 { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.5px; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: var(--radius-xs); font-weight: 600; font-size: 14px;
    cursor: pointer; transition: var(--transition); text-decoration: none; border: none;
    font-family: inherit; letter-spacing: 0.2px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,67,50,0.3); }
.btn-gold {
    background: linear-gradient(135deg, #C9A855, #DDB96A); color: #fff; font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,85,0.35); }
.btn-outline {
    background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-glass {
    background: rgba(255,255,255,0.1); color: #fff; backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-glass:hover { background: rgba(255,255,255,0.18); }
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ===================== NAVIGATION ===================== */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000; height: 64px;
    background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border); transition: var(--transition);
}
nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-container {
    max-width: 1200px; margin: 0 auto; height: 100%; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; display: block; }
.logo-img-white { height: 36px; width: auto; display: none; }
[data-theme="dark"] .logo-img { display: none; }
[data-theme="dark"] .logo-img-white { display: block; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--text-main); padding: 8px 14px;
    font-size: 14px; font-weight: 500; border-radius: 8px; transition: var(--transition);
}
.nav-links a:hover { background: var(--bg-main); color: var(--primary); }
.nav-links .btn { padding: 9px 20px; }
.nav-phone {
    display: flex; align-items: center; gap: 6px; color: var(--text-main);
    font-weight: 700; font-size: 14px; text-decoration: none;
}
.nav-phone i { color: var(--primary); font-size: 13px; }

/* Mobile Nav */
.mobile-menu-btn { display: none; font-size: 20px; cursor: pointer; color: var(--primary); background: none; border: none; padding: 8px; }
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .mobile-menu-btn { display: block; }
}

.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.4); z-index: 998; opacity: 0; pointer-events: none;
    transition: 0.3s; backdrop-filter: blur(4px);
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--bg-white); z-index: 999; padding: 80px 20px 20px;
    transition: 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
    display: block; padding: 14px 16px; color: var(--text-main); font-weight: 500;
    font-size: 16px; text-decoration: none; border-radius: 8px; margin-bottom: 2px; transition: 0.2s;
}
.mobile-nav a:hover { background: var(--bg-main); color: var(--primary); }

/* ===================== HERO ===================== */
.hero {
    min-height: 92vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(155deg, #081C15 0%, #0d2818 30%, #1B4332 60%, #143326 100%);
    position: relative; padding: 100px 20px 80px; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 75% 25%, rgba(45,106,79,0.2), transparent 60%),
        radial-gradient(ellipse 50% 60% at 15% 80%, rgba(201,168,85,0.06), transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content { max-width: 720px; text-align: center; position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 50px;
    background: rgba(201,168,85,0.1); border: 1px solid rgba(201,168,85,0.2);
    color: var(--accent-gold); font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(32px, 5vw, 56px); color: #fff; line-height: 1.12;
    margin-bottom: 20px; font-weight: 800; letter-spacing: -1.5px;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--accent-gold), #E8D08C);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: clamp(15px, 1.6vw, 17px); color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    margin-top: 40px; flex-wrap: wrap;
}
.hero-trust-item {
    display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5);
    font-size: 13px; font-weight: 500;
}
.hero-trust-item i { color: var(--accent-gold); font-size: 14px; }

/* ===================== HERO FLOATING SHAPES ===================== */
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-shape {
    position: absolute; border-radius: 50%; opacity: 0.04;
    background: var(--accent-gold); filter: blur(60px);
}
.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation: float1 12s ease-in-out infinite; }
.shape-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; animation: float2 15s ease-in-out infinite; background: #fff; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 60%; animation: float3 10s ease-in-out infinite; }
.shape-4 { width: 150px; height: 150px; top: 20%; left: 10%; animation: float1 18s ease-in-out infinite reverse; background: #fff; opacity: 0.03; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,20px) scale(1.1); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.15); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px, 15px); } }

/* ===================== MARQUEE TRUST STRIP ===================== */
.marquee-strip {
    background: var(--primary); color: #fff; padding: 12px 0; overflow: hidden;
    position: relative; z-index: 11;
}
.marquee-track { display: flex; width: max-content; }
.marquee-content {
    display: flex; gap: 40px; animation: marqueeScroll 25s linear infinite;
}
.marquee-content span { font-size: 13px; font-weight: 600; white-space: nowrap; letter-spacing: 0.5px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===================== STATS ===================== */
.stats-strip {
    background: var(--bg-white); padding: 40px 20px; max-width: 960px;
    margin: -36px auto 0; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    position: relative; z-index: 10;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
.stat-icon {
    width: 44px; height: 44px; margin: 0 auto 10px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(27,67,50,0.08), rgba(45,106,79,0.04));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--primary);
}
.stat-item h3 { font-size: 36px; color: var(--primary); font-weight: 900; letter-spacing: -1px; margin-bottom: 2px; }
.stat-item p { color: var(--text-secondary); font-size: 13px; font-weight: 500; }
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .stats-strip { margin: -28px 12px 0; padding: 32px 16px; }
}

/* ===================== SECTIONS ===================== */
.section { padding: 80px 20px; }
.section-alt { background: var(--bg-white); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-header span {
    display: inline-block; color: var(--primary); font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; font-size: 12px; margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 12px; letter-spacing: -0.8px; line-height: 1.15; }
.section-header p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ===================== CATALOG V2 — PREMIUM CARDS ===================== */
.catalog-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 1100px; margin: 0 auto;
    grid-auto-rows: 220px;
}
.cat-card {
    position: relative; border-radius: 20px; overflow: hidden;
    text-decoration: none; color: #fff; cursor: pointer;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-card--hero { grid-row: span 2; }
.cat-card--wide { grid-column: span 2; }

/* Image background */
.cat-card-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#cat-img-oshxona { background: url('https://i.pinimg.com/736x/46/70/ed/4670ed8f41ce23b01df7be838a44ccc8.jpg') center/cover; }
#cat-img-yotoqxona { background: url('https://images.unsplash.com/photo-1540518614846-7eded433c457?w=600&q=80') center/cover; }
#cat-img-restoran { background: url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=600&q=80') center/cover; }
#cat-img-mehmonxona { background: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=600&q=80') center/cover; }
#cat-img-ofis { background: url('https://i.pinimg.com/1200x/c4/4e/8e/c44e8e953c3f8a2dd2f7022ff0115218.jpg') center/cover; }
#cat-img-maktab { background: url('https://images.unsplash.com/photo-1580537659466-0a9bfa916a54?w=600&q=80') center/cover; }
#cat-img-shkaf { background: url('https://i.pinimg.com/1200x/c9/61/9d/c9619d4e40fa09e303718a983a17035b.jpg') center/cover; }

/* Dark overlay gradient */
.cat-card-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.15) 40%, 
        rgba(0,0,0,0.65) 100%
    );
    transition: background 0.4s ease;
}

/* Content */
.cat-card-body {
    position: relative; z-index: 2;
    height: 100%; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 24px;
}
.cat-card-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}
.cat-card-body h3 {
    font-size: 20px; font-weight: 800; margin-bottom: 4px;
    letter-spacing: -0.3px; line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.cat-card-body p {
    font-size: 13px; opacity: 0.8; line-height: 1.4; margin-bottom: 10px;
}
.cat-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
}
.cat-card-link i { transition: transform 0.3s; }

/* Hover magic */
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.cat-card:hover .cat-card-img { transform: scale(1.08); }
.cat-card:hover .cat-card-overlay {
    background: linear-gradient(180deg, 
        rgba(27,67,50,0.1) 0%, 
        rgba(27,67,50,0.3) 40%, 
        rgba(0,0,0,0.75) 100%
    );
}
.cat-card:hover .cat-card-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}
.cat-card:hover .cat-card-link { opacity: 1; transform: translateY(0); }
.cat-card:hover .cat-card-link i { transform: translateX(4px); }

/* Responsive */
@media (max-width: 768px) {
    .catalog-grid-v2 { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 14px; }
    .cat-card--hero { grid-row: span 1; }
    .cat-card--wide { grid-column: span 2; }
    .cat-card-body h3 { font-size: 16px; }
    .cat-card-body { padding: 16px; }
    .cat-card-link { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
    .catalog-grid-v2 { grid-template-columns: 1fr; grid-auto-rows: 180px; }
    .cat-card--wide { grid-column: span 1; }
}

/* ===================== PRODUCT CARDS ===================== */
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; max-width: 1200px; margin: 0 auto;
}
.product-card {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: var(--transition); cursor: pointer;
}
.product-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-img {
    width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-main); position: relative;
}
.product-card-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badge {
    position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 6px;
    background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.product-card-body { padding: 18px 20px; }
.product-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.2px; }
.product-card-body .product-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
.product-card-body .product-specs {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.product-spec-tag {
    padding: 4px 10px; background: var(--bg-main); border-radius: 6px;
    font-size: 11px; font-weight: 600; color: var(--text-secondary);
}
.product-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 20px; border-top: 1px solid var(--border); background: var(--bg-section-alt);
}
.product-price { font-size: 15px; font-weight: 800; color: var(--primary); }
.product-price small { font-size: 11px; font-weight: 500; color: var(--text-secondary); display: block; }

/* ===================== SERVICES ===================== */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px; max-width: 1200px; margin: 0 auto;
}
.service-card {
    background: var(--bg-white); padding: 32px 24px; border-radius: var(--radius);
    border: 1px solid var(--border); text-align: left;
    transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff; margin-bottom: 16px;
}
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ===================== PROCESS / TIMELINE ===================== */
.timeline-section { background: var(--bg-white); }
.process-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 16px; max-width: 1100px; margin: 0 auto;
}
.process-card { text-align: center; position: relative; }
.process-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--bg-main); border: 3px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 18px; color: var(--primary);
    margin: 0 auto 16px; transition: var(--transition);
}
.process-card:hover .process-num {
    background: var(--primary); color: #fff; transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(27,67,50,0.25);
}
.process-connector {
    position: absolute; top: 28px; left: calc(50% + 32px); right: calc(-50% + 32px);
    height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent));
}
.process-card:last-child .process-connector { display: none; }
.process-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--primary); }
.process-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .process-connector { display: none; }
}
@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* ===================== WHY US ===================== */
.why-section {
    background: linear-gradient(160deg, #0f2419 0%, #1B4332 40%, #2D6A4F 100%);
    position: relative; overflow: hidden;
}
.why-section::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(45,106,79,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(183,228,199,0.06) 0%, transparent 40%);
    animation: whyBgShift 20s ease-in-out infinite;
}
@keyframes whyBgShift { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-3%,2%)} }
.why-section .section-header span { color: rgba(183,228,199,0.8); }
.why-section .section-header h2 { color: #fff; }
.why-section .section-header p { color: rgba(255,255,255,0.6); }
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 1060px; margin: 0 auto; position: relative; z-index: 1;
}
.why-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 32px 24px; text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(183,228,199,0.12) 0%, transparent 60%);
    opacity: 0; transition: 0.4s;
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(183,228,199,0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 30px rgba(45,106,79,0.15);
}
.why-card:hover::before { opacity: 1; }
.why-icon-wrap {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(183,228,199,0.15), rgba(45,106,79,0.1));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 22px; color: #B7E4C7;
    transition: 0.35s; position: relative; z-index: 1;
}
.why-card:hover .why-icon-wrap {
    background: linear-gradient(135deg, #2D6A4F, #40916C);
    color: #fff; transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(45,106,79,0.4);
}
.why-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #fff; position: relative; z-index: 1; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; position: relative; z-index: 1; }
.why-stat {
    margin-top: 16px; padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 15px; font-weight: 800; color: #B7E4C7;
    letter-spacing: 0.5px; position: relative; z-index: 1;
}
.why-stat i { margin-right: 4px; }

@media (max-width: 768px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 24px 20px; }
}

/* ===================== PARTNERS SHOWCASE ===================== */
.partner-tabs {
    display: flex; justify-content: center; gap: 10px; margin-bottom: 36px;
    flex-wrap: wrap; max-width: 700px; margin-left: auto; margin-right: auto;
}
.partner-tab {
    padding: 10px 22px; border-radius: 50px; border: 1.5px solid var(--border);
    background: var(--bg-white); color: var(--text-secondary);
    font-size: 13px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; gap: 7px;
    transition: all 0.3s ease;
}
.partner-tab i { font-size: 13px; }
.partner-tab:hover { border-color: var(--primary); color: var(--primary); }
.partner-tab.active {
    background: var(--primary); color: #fff;
    border-color: var(--primary); box-shadow: 0 4px 16px rgba(27,67,50,0.25);
}

.partner-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 900px; margin: 0 auto;
    min-height: 160px;
}
.partner-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px 24px; text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative; overflow: hidden;
}
.partner-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0); transition: transform 0.35s ease;
    transform-origin: left;
}
.partner-card:hover::before { transform: scaleX(1); }
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: rgba(27,67,50,0.2);
}
.partner-logo {
    width: 80px; height: 50px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; overflow: hidden;
}
.partner-logo img {
    max-width: 100%; max-height: 100%; object-fit: contain;
}
.partner-logo-placeholder {
    width: 80px; height: 50px; margin: 0 auto 14px;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900; letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary), #2D6A4F);
    color: #fff;
}
.partner-card h4 {
    font-size: 16px; font-weight: 800; margin-bottom: 6px;
    letter-spacing: -0.3px; color: var(--text-primary);
}
.partner-card .partner-country {
    font-size: 11px; color: var(--text-secondary); margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.partner-card .partner-desc {
    font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 12px;
}
.partner-stars {
    display: flex; justify-content: center; gap: 3px;
}
.partner-stars i {
    font-size: 14px; color: #D4AF37;
}
.partner-stars i.empty {
    color: var(--border);
}

@media (max-width: 768px) {
    .partner-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .partner-tabs { gap: 6px; }
    .partner-tab { padding: 8px 16px; font-size: 12px; }
}
@media (max-width: 480px) {
    .partner-grid { grid-template-columns: 1fr; }
    .partner-tab { padding: 8px 14px; font-size: 11px; }
}

/* ===================== GALLERY ===================== */
.filter-container {
    display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.filter-btn {
    padding: 9px 20px; border-radius: 50px; border: 1px solid var(--border);
    background: var(--bg-white); cursor: pointer; font-weight: 600; font-size: 13px;
    transition: var(--transition); font-family: inherit; color: var(--text-main);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px; max-width: 1200px; margin: 0 auto;
}
.gallery-item {
    position: relative; border-radius: var(--radius-sm); overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer; background: var(--bg-main);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 60%);
    display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: 0.35s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fff; font-size: 13px; font-weight: 600;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    padding: 6px 14px; border-radius: 8px;
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 999999;
    display: none; align-items: center; justify-content: center; backdrop-filter: blur(16px);
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }
.lb-close {
    position: absolute; top: 20px; right: 24px; color: #fff; font-size: 32px; cursor: pointer;
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.08); transition: 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.15); }

/* ===================== FAQ ===================== */
.faq-container { max-width: 680px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; transition: 0.3s;
}
.faq-question {
    padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 600; font-size: 15px; color: var(--text-main); gap: 12px;
}
.faq-answer {
    padding: 0 22px; max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--text-secondary); font-size: 14px; line-height: 1.7;
}
.faq-item.active { border-color: var(--primary); box-shadow: 0 2px 12px rgba(27,67,50,0.06); }
.faq-item.active .faq-answer { padding: 0 22px 22px; max-height: 300px; }
.faq-item.active .fa-chevron-down { transform: rotate(180deg); }
.fa-chevron-down { transition: 0.3s; color: var(--primary); font-size: 12px; }

/* ===================== CTA / CONTACT ===================== */
.cta-section {
    background: linear-gradient(155deg, var(--primary-dark), var(--primary), var(--primary-light));
    color: #fff; padding: 80px 20px; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(201,168,85,0.08), transparent 50%);
    pointer-events: none;
}
.cta-container {
    max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center; position: relative; z-index: 2;
}
.cta-text h2 { color: #fff; font-size: 32px; margin-bottom: 16px; letter-spacing: -0.8px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.7; }
.cta-phones { display: flex; flex-direction: column; gap: 8px; }
.cta-phones a {
    color: rgba(255,255,255,0.9); text-decoration: none; font-size: 18px; font-weight: 700;
    display: flex; align-items: center; gap: 8px; transition: 0.2s;
}
.cta-phones a:hover { color: var(--accent-gold); }
.cta-phones a i { font-size: 14px; }
.urgency-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(254,243,199,0.12); border: 1px solid rgba(254,243,199,0.18);
    color: #FCD34D; padding: 6px 14px; border-radius: 50px;
    font-size: 12px; font-weight: 600; margin-bottom: 16px;
}
.contact-form {
    background: var(--bg-white); padding: 36px 32px; border-radius: var(--radius);
    box-shadow: var(--shadow-xl); color: var(--text-main);
}
.contact-form h3 { font-weight: 800; font-size: 20px; margin-bottom: 4px; letter-spacing: -0.3px; }
.contact-form .form-sub { color: var(--text-secondary); font-size: 13px; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 13px; }
.form-control {
    width: 100%; padding: 12px 16px; border: 1.5px solid #e5e5e5; border-radius: var(--radius-xs);
    font-family: inherit; font-size: 14px; background: var(--bg-main); transition: 0.3s;
}
.form-control:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(27,67,50,0.06); }
.submit-btn {
    width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 14px; border-radius: var(--radius-xs); color: #fff; font-weight: 700; font-size: 15px;
    border: none; cursor: pointer; transition: var(--transition); font-family: inherit;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,67,50,0.3); }
@media (max-width: 900px) {
    .cta-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .cta-phones { align-items: center; }
    .contact-form { padding: 28px 20px; }
}

/* ===================== VIDEO SECTION ===================== */
.video-section { background: var(--bg-white); }
.video-wrapper {
    max-width: 800px; margin: 0 auto; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9;
    background: #000; position: relative;
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; }
.video-placeholder {
    width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #fff; cursor: pointer;
}
.video-placeholder i {
    font-size: 56px; margin-bottom: 16px; opacity: 0.8;
    transition: 0.3s; background: rgba(255,255,255,0.1);
    width: 80px; height: 80px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.video-placeholder:hover i { opacity: 1; transform: scale(1.1); background: rgba(255,255,255,0.15); }
.video-placeholder span { font-size: 15px; font-weight: 600; opacity: 0.7; }

/* ===================== REVIEWS ===================== */
.reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px; max-width: 1000px; margin: 0 auto;
}
.review-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px; transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.review-avatar {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.review-author { font-size: 14px; font-weight: 700; color: var(--text-main); }
.review-location { font-size: 12px; color: var(--text-secondary); }
.review-stars { color: #F59E0B; font-size: 13px; margin-bottom: 10px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-style: italic; }

/* ===================== FOOTER ===================== */
footer { background: var(--bg-dark); color: rgba(255,255,255,0.55); padding: 64px 20px 24px; }
.footer-grid {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 32px; max-width: 1200px; margin: 0 auto 48px;
}
.footer-logo { margin-bottom: 12px; display: inline-block; }
.footer-logo-img { height: 32px; width: auto; }
.footer-title { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: 0.2s; }
.footer-links a:hover { color: #fff; }
.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-links a {
    width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 15px; transition: 0.2s;
}
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-bottom {
    text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px; color: rgba(255,255,255,0.35);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
}

/* ===================== FLOATING / STICKY ===================== */
.floating-whatsapp {
    position: fixed; bottom: 90px; right: 24px; width: 52px; height: 52px;
    background: #25D366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    z-index: 990; text-decoration: none; transition: all 0.3s ease;
}
.floating-telegram {
    position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px;
    background: #0088cc; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; box-shadow: 0 4px 20px rgba(0,136,204,0.35);
    z-index: 990; text-decoration: none; transition: all 0.3s ease;
}
.floating-whatsapp:hover { transform: scale(1.15); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.floating-telegram:hover { transform: scale(1.15); box-shadow: 0 6px 28px rgba(0,136,204,0.5); }

.mobile-sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--bg-white); padding: 10px 14px; box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
    z-index: 995; border-top: 1px solid var(--border);
}
.mobile-sticky-cta .btn { width: 100%; padding: 13px; border-radius: 10px; font-size: 14px; }
@media (max-width: 768px) {
    .floating-whatsapp { bottom: 138px; right: 14px; width: 46px; height: 46px; font-size: 22px; }
    .floating-telegram { bottom: 80px; right: 14px; width: 46px; height: 46px; font-size: 20px; }
    .mobile-sticky-cta { display: block; }
}

/* ===================== POPUP MODAL ===================== */
.popup-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000;
    display: none; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
}
.popup-overlay.active { display: flex; }
.popup-box {
    background: var(--bg-white); border-radius: var(--radius); padding: 40px 32px;
    max-width: 420px; width: 90%; position: relative; box-shadow: var(--shadow-xl);
}
.popup-close {
    position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
    border-radius: 50%; background: var(--bg-main); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-secondary); transition: 0.2s;
}
.popup-close:hover { background: #eee; }

/* ===================== UTILITY ===================== */
.hidden { display: none !important; }
.text-center { text-align: center; }

/* ===================== LOADER (#22 enhanced) ===================== */
#loader {
    position: fixed; inset: 0; background: var(--bg-white); z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}
.loader-logo-wrap { text-align: center; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader-logo {
    font-size: 36px; color: var(--primary); font-weight: 900;
    margin-bottom: 6px; letter-spacing: -1px;
}
.loader-tagline {
    font-size: 12px; color: var(--text-secondary); font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}
.loader-bar { width: 140px; height: 3px; background: rgba(27,67,50,0.08); border-radius: 3px; overflow: hidden; }
.loader-progress {
    width: 0%; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    border-radius: 3px; animation: load 0.8s ease forwards;
}
@keyframes load { to { width: 100%; } }
@keyframes loaderPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.85; transform: scale(1.03); } }

/* ===================== SKELETON LOADER (#6) ===================== */
.skeleton-card {
    background: var(--bg-white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
}
.skeleton-img {
    width: 100%; height: 240px;
    background: linear-gradient(90deg, var(--bg-main) 25%, rgba(0,0,0,0.04) 50%, var(--bg-main) 75%);
    background-size: 200% 100%; animation: shimmer 1.5s infinite;
}
.skeleton-text {
    height: 16px; margin: 16px; border-radius: 8px; width: 60%;
    background: linear-gradient(90deg, var(--bg-main) 25%, rgba(0,0,0,0.04) 50%, var(--bg-main) 75%);
    background-size: 200% 100%; animation: shimmer 1.5s infinite 0.2s;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ===================== MASONRY GALLERY — PINTEREST ===================== */
.gallery-scroll-wrapper {
    max-height: 85vh;
    min-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px; /* For scrollbar */
    margin-bottom: 24px;
}
/* Scrollbar */
.gallery-scroll-wrapper::-webkit-scrollbar { width: 8px; }
.gallery-scroll-wrapper::-webkit-scrollbar-track { background: rgba(0,0,0,0.03); border-radius: 4px; }
.gallery-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; opacity: 0.8; }
.gallery-scroll-wrapper::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

.gallery-masonry {
    columns: 4; column-gap: 16px; margin: 0 auto;
}
.gallery-masonry .pin-card,
.gallery-masonry .skeleton-card {
    break-inside: avoid; margin-bottom: 16px; display: inline-block; width: 100%;
}
@media (max-width: 1024px) { .gallery-masonry { columns: 3; } }
@media (max-width: 768px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }

/* PIN CARD */
.pin-card {
    border-radius: 16px; overflow: hidden; cursor: pointer;
    position: relative; background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s;
    animation: pinFadeIn 0.5s ease both;
}
.pin-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
@keyframes pinFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pin-img-wrap { position: relative; width: 100%; }
.pin-img-wrap img {
    width: 100%; height: auto; display: block;
    border-radius: 16px;
    transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
}
.pin-card:hover .pin-img-wrap img { transform: scale(1.04); }
.pin-overlay {
    position: absolute; inset: 0; border-radius: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 45%, transparent 70%);
    opacity: 0; transition: opacity 0.35s;
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 14px 14px;
}
.pin-card:hover .pin-overlay { opacity: 1; }
.pin-cat {
    display: inline-block; background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 12px; font-weight: 700;
    padding: 5px 12px; border-radius: 20px;
    letter-spacing: 0.3px; text-transform: capitalize;
}
.pin-zoom {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s;
}
.pin-zoom:hover { background: var(--primary); }

/* ===================== GLASSMORPHISM NAV (#5) ===================== */
nav.scrolled {
    background: rgba(255,255,255,0.72) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
[data-theme="dark"] nav.scrolled {
    background: rgba(15,15,15,0.72) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ===================== TYPED CURSOR (#10) ===================== */
.typed-cursor {
    display: inline-block; width: 2px; height: 1em;
    background: var(--accent-gold); margin-left: 2px;
    animation: blink 0.8s infinite; vertical-align: text-bottom;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }



/* ===================== LANGUAGE SWITCHER (#45) ===================== */
.lang-switcher {
    display: flex; gap: 2px;
    background: var(--bg-main); border-radius: 8px;
    padding: 2px; border: 1px solid var(--border);
}
.lang-btn {
    padding: 5px 10px; font-size: 11px; font-weight: 700;
    border: none; border-radius: 6px; cursor: pointer;
    background: transparent; color: var(--text-secondary);
    font-family: inherit; transition: 0.2s;
    letter-spacing: 0.5px;
}
.lang-btn.active {
    background: var(--primary); color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.lang-btn:hover:not(.active) { background: rgba(27,67,50,0.08); }
[data-theme="dark"] .lang-switcher { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .lang-btn.active { background: var(--accent-gold); color: #000; }

/* ===================== INSTAGRAM FEED (#114) — Premium ===================== */
.insta-section {
    background: linear-gradient(165deg, #fdf2f8 0%, #fce7f3 25%, #f5f3ff 50%, #eff6ff 75%, #f0fdf4 100%);
    position: relative; overflow: hidden;
}
.insta-section::before {
    content: ''; position: absolute; top: -60%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(225,48,108,0.08), transparent 70%);
    pointer-events: none;
}
.insta-section::after {
    content: ''; position: absolute; bottom: -40%; left: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(131,58,180,0.06), transparent 70%);
    pointer-events: none;
}
.insta-wrapper {
    max-width: 900px; margin: 0 auto; position: relative; z-index: 1;
}

/* Profile header */
.insta-profile {
    display: flex; align-items: center; gap: 20px;
    padding: 28px 32px; margin-bottom: 24px;
    background: rgba(255,255,255,0.7); backdrop-filter: blur(20px);
    border-radius: 24px; border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 8px 32px rgba(131,58,180,0.08);
}
.insta-avatar-ring {
    width: 72px; height: 72px; border-radius: 50%;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: 3px;
}
.insta-avatar-ring::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #833ab4, #5851db, #405de6, #f09433);
    animation: instaRingSpin 4s linear infinite;
    z-index: 0;
}
.insta-avatar-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #fff;
    position: relative; z-index: 1;
    overflow: hidden;
    display: flex; align-items: center;
}
.insta-avatar-inner img.insta-avatar-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 6px;
}
@keyframes instaRingSpin {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(360deg); }
}
.insta-profile-info { flex: 1; }
.insta-username {
    font-size: 20px; font-weight: 800; color: #1a1a2e;
    display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
}
.insta-username i { 
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-size: 22px;
}
.insta-verified i { color: #3b82f6; -webkit-text-fill-color: #3b82f6; font-size: 16px; }
.insta-bio {
    font-size: 13px; color: #64748b; line-height: 1.5; margin-bottom: 10px;
}
.insta-stats {
    display: flex; gap: 20px;
}
.insta-stat {
    display: flex; flex-direction: column; align-items: center;
}
.insta-stat strong {
    font-size: 16px; font-weight: 900; color: #1a1a2e;
}
.insta-stat span {
    font-size: 11px; color: #94a3b8; font-weight: 500;
}
.insta-follow-btn {
    padding: 12px 28px; border-radius: 14px; font-size: 14px; font-weight: 700;
    color: #fff; text-decoration: none; white-space: nowrap;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 20px rgba(225,48,108,0.3);
    transition: all 0.3s ease; display: flex; align-items: center; gap: 8px;
}
.insta-follow-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(225,48,108,0.4);
}

/* Photo grid */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px; border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.insta-item {
    position: relative; aspect-ratio: 1;
    overflow: hidden; cursor: pointer;
}
.insta-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    display: flex; align-items: center; justify-content: center;
}
.insta-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.03) 49%, rgba(0,0,0,0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0,0,0,0.03) 49%, rgba(0,0,0,0.03) 51%, transparent 52%);
    background-size: 30px 30px;
}
.insta-placeholder::after {
    content: '📸'; font-size: 32px; opacity: 0.2; position: relative; z-index: 1;
}
.insta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(225,48,108,0.85), rgba(131,58,180,0.85));
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    opacity: 0; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1); z-index: 2;
}
.insta-overlay i { font-size: 28px; color: #fff; }
.insta-overlay span { font-size: 12px; color: rgba(255,255,255,0.9); font-weight: 600; letter-spacing: 0.5px; }
.insta-item:hover .insta-overlay { opacity: 1; transform: scale(1); }
.insta-item:hover { z-index: 3; }
.insta-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.08); }

/* CTA Button */
.insta-cta {
    text-align: center; margin-top: 24px;
}
.insta-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 16px;
    font-size: 15px; font-weight: 700; color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45);
    background-size: 200% 200%; animation: instaGradient 5s ease infinite;
    box-shadow: 0 6px 24px rgba(225,48,108,0.25);
    transition: all 0.3s ease;
}
.insta-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(225,48,108,0.35);
}
.insta-cta-btn i.fa-arrow-right {
    transition: transform 0.3s; font-size: 13px;
}
.insta-cta-btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}
@keyframes instaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
    .insta-profile { flex-direction: column; text-align: center; padding: 20px; }
    .insta-stats { justify-content: center; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
    .insta-follow-btn { width: 100%; justify-content: center; }
    .insta-username { justify-content: center; }
    .insta-cta-btn { width: 100%; justify-content: center; padding: 14px 24px; }
}

/* Dark mode */
[data-theme="dark"] .insta-section {
    background: linear-gradient(165deg, rgba(131,58,180,0.08) 0%, rgba(225,48,108,0.05) 50%, rgba(0,0,0,0) 100%);
}
[data-theme="dark"] .insta-section::before,
[data-theme="dark"] .insta-section::after { opacity: 0.5; }
[data-theme="dark"] .insta-profile {
    background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
[data-theme="dark"] .insta-username { color: #f1f5f9; }
[data-theme="dark"] .insta-stat strong { color: #f1f5f9; }
[data-theme="dark"] .insta-placeholder {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.06));
}
[data-theme="dark"] .insta-placeholder::before {
    background:
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%);
    background-size: 30px 30px;
}
[data-theme="dark"] .insta-grid {
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

/* ===================== SMOOTH SCROLL ===================== */
html { scroll-behavior: smooth; }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
    position: fixed; bottom: 156px; right: 24px; z-index: 90;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #fff; border: none;
    cursor: pointer; font-size: 16px;
    box-shadow: 0 4px 16px rgba(27,67,50,0.3);
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible {
    opacity: 1; transform: translateY(0); pointer-events: all;
}
.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(27,67,50,0.4);
}
[data-theme="dark"] .back-to-top { background: var(--accent-gold); color: #000; }

/* ===================== SOCIAL PROOF ===================== */
.social-proof {
    position: fixed; bottom: 24px; left: 24px; z-index: 80;
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: 14px; padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 320px;
    opacity: 0; transform: translateX(-100%);
    transition: 0.5s cubic-bezier(0.34,1.56,0.64,1);
    pointer-events: none;
}
.social-proof.show {
    opacity: 1; transform: translateX(0);
    pointer-events: all;
}
.social-proof-avatar {
    width: 40px; height: 40px; min-width: 40px;
    border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; font-weight: 700; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.social-proof-text { font-size: 12px; line-height: 1.4; color: var(--text-primary); }
.social-proof-text strong { color: var(--primary); }
.social-proof small { font-size: 10px; color: var(--text-secondary); white-space: nowrap; }
[data-theme="dark"] .social-proof { background: var(--bg-card); border-color: rgba(255,255,255,0.08); }
@media (max-width: 768px) { .social-proof { left: 12px; bottom: 80px; max-width: 280px; } }

/* ===================== FORM SUCCESS ===================== */
.form-success {
    text-align: center; padding: 40px 20px;
    animation: successPop 0.5s ease;
}
.form-success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #059669, #10B981);
    color: #fff; font-size: 28px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    animation: checkBounce 0.6s ease 0.2s both;
}
.form-success h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; color: var(--text-primary); }
.form-success p { font-size: 13px; color: var(--text-secondary); }
@keyframes successPop { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes checkBounce {
    0% { transform: scale(0) rotate(-45deg); }
    50% { transform: scale(1.2) rotate(0deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* ===================== COUNTDOWN TIMER ===================== */
.countdown-timer {
    display: flex; align-items: center; gap: 8px;
    margin: 12px 0 16px;
}
.cd-item {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    border-radius: 10px; padding: 8px 12px; text-align: center;
    min-width: 56px;
}
.cd-item span {
    display: block; font-size: 22px; font-weight: 800;
    color: #fff; letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}
.cd-item small { font-size: 9px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-size: 20px; font-weight: 800; color: rgba(255,255,255,0.4); }

/* ===================== ENHANCED HOVER EFFECTS ===================== */
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.review-card { transition: all 0.3s ease; }
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.faq-item { transition: all 0.2s ease; }
.faq-item:hover { background: rgba(27,67,50,0.02); }
.stat-item { transition: all 0.3s ease; }
.stat-item:hover { transform: translateY(-4px); }
.submit-btn {
    position: relative; overflow: hidden;
}
.submit-btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}
.submit-btn:hover::after {
    animation: btnShine 0.6s ease;
}
@keyframes btnShine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

/* ===================== MOBILE LANG SWITCHER ===================== */
.lang-switcher-mobile { display: none; }
@media (max-width: 768px) {
    .lang-switcher-mobile { display: flex; }
}

/* ===================== FLOATING BUTTONS ENHANCED ===================== */
.floating-whatsapp, .floating-telegram {
    transition: all 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.floating-telegram:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(38,166,227,0.4);
}


/* ===================== GALLERY FULLSCREEN MODAL ===================== */
.gallery-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.gallery-modal.show { opacity: 1; pointer-events: auto; }
.gallery-modal-content {
    background: var(--bg-main); width: 95%; max-width: 1400px; height: 90vh;
    border-radius: 20px; overflow: hidden; position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    display: flex; flex-direction: column;
    transform: translateY(30px); transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.gallery-modal.show .gallery-modal-content { transform: translateY(0); }
.gallery-modal-header {
    padding: 24px; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg-white);
}
.gallery-modal-header h3 { font-size: 24px; font-weight: 700; color: var(--text-main); }
.gallery-modal-close {
    background: none; border: none; font-size: 28px; color: var(--text-secondary);
    cursor: pointer; transition: color 0.2s; width: 44px; height: 44px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.gallery-modal-close:hover { color: var(--danger); background: rgba(255,0,0,0.1); }
.gallery-modal-body {
    flex: 1; overflow: hidden; padding: 24px; display: flex; flex-direction: column; background: var(--bg-main);
}
.gallery-modal-fixed-filters { margin-bottom: 24px; flex-shrink: 0; }
.gallery-modal-scroll { flex: 1; overflow-y: auto; overflow-x: hidden; padding-right: 12px; }
/* Scrollbar */
.gallery-modal-scroll::-webkit-scrollbar { width: 8px; }
.gallery-modal-scroll::-webkit-scrollbar-track { background: rgba(0,0,0,0.03); border-radius: 4px; }
.gallery-modal-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; opacity: 0.8; }
.gallery-modal-scroll::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

@media(max-width: 768px) {
    .gallery-modal-content { width: 100%; height: 100vh; border-radius: 0; }
    .gallery-modal-header { padding: 16px; }
    .gallery-modal-body { padding: 16px; }
}
