/* ========================================
   PoolBox - Premium Havuz Çözümleri
   Luxury Design System v2.0
   ======================================== */

/* --- CSS Variables --- */
:root {
    --charcoal: #0C2036;
    --charcoal-light: #163350;
    --charcoal-lighter: #1F4776;
    --gold: #0096C7;
    --gold-light: #48CAE4;
    --gold-dark: #0077B6;
    --gold-glow: rgba(0,150,199,0.4);
    --white: #FFFFFF;
    --off-white: #F0F8FF;
    --cream: #E8F4FB;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D1D1D1;
    --gray-400: #A0A0A0;
    --gray-500: #737373;
    --gray-600: #525252;
    --success: #10B981;
    --error: #EF4444;

    --gradient-primary: linear-gradient(135deg, #0077B6, #0096C7, #48CAE4);
    --gradient-dark: linear-gradient(135deg, #0C2036 0%, #163350 50%, #1F4776 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    --gradient-shine: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);

    --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-gold: 0 4px 14px rgba(0,150,199,0.3);
    --shadow-gold-lg: 0 8px 30px rgba(0,150,199,0.35);
    --shadow-glow: 0 0 20px rgba(0,150,199,0.2), 0 0 60px rgba(0,150,199,0.1);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-optical-sizing: auto;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.heading-display {
    font-family: var(--font-display);
    font-weight: 600;
    font-style: normal;
    letter-spacing: -0.03em;
}

.heading-section {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.heading-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheading {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.subheading::before,
.subheading::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.gold-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin-bottom: 1.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.gold-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-shine);
    animation: shimmer 3s infinite;
    border-radius: 2px;
}

.gold-line-center {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.85;
    font-weight: 400;
    letter-spacing: 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transition: left 0.6s ease;
    z-index: -1;
}
.btn:hover::after { left: 100%; }

.btn-gold {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-dark:hover {
    background: var(--charcoal-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.35);
    color: var(--white);
    backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.78rem; }
.btn-lg { padding: 1.1rem 2.75rem; font-size: 0.88rem; }

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* --- Top Bar --- */
.top-bar {
    background: var(--charcoal);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.6);
}

.top-bar-left a:hover { color: var(--gold-light); }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--gold-light);
    background: rgba(255,255,255,0.06);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.has-topbar { top: 37px; }

.navbar.scrolled {
    top: 0;
    background: rgba(12,32,54,0.92);
    backdrop-filter: blur(24px) saturate(180%);
    padding: 0.6rem 0;
    box-shadow: 0 1px 0 rgba(0,150,199,0.1), 0 8px 30px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(0,150,199,0.08);
}

.navbar.scrolled.has-topbar {
    top: 37px;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.logo-pool { color: var(--white); }
.logo-box {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.navbar-menu a {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    padding: 0.5rem 0;
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar-menu a:hover,
.navbar-menu a.active { color: var(--white); }

.navbar-menu a:hover::after,
.navbar-menu a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-arrow {
    margin-left: 4px;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -1rem;
    min-width: 240px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    color: var(--charcoal) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-radius: var(--radius-md);
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
    color: var(--gold) !important;
    background: var(--cream);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 40px;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(12,32,54,0.97) 0%, rgba(12,32,54,0.8) 35%, rgba(0,119,182,0.6) 65%, rgba(72,202,228,0.4) 100%);
    z-index: 2;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Animated floating orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: floatOrb 20s infinite ease-in-out;
}

.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(228, 205, 72, 0.3), transparent);
    top: -10%; right: -5%;
}

.hero-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(228, 205, 72, 0.3), transparent);
    bottom: 10%; left: 10%;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(228, 205, 72, 0.3), transparent);
    top: 40%; right: 30%;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

/* Floating water particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: #FFC107;
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
}

.hero-particle:nth-child(1) { left: 10%; animation-duration: 12s; }
.hero-particle:nth-child(2) { left: 25%; animation-duration: 10s; animation-delay: -2s; width: 3px; height: 3px; }
.hero-particle:nth-child(3) { left: 40%; animation-duration: 14s; animation-delay: -4s; }
.hero-particle:nth-child(4) { left: 55%; animation-duration: 11s; animation-delay: -6s; width: 5px; height: 5px; }
.hero-particle:nth-child(5) { left: 70%; animation-duration: 13s; animation-delay: -3s; width: 3px; height: 3px; }
.hero-particle:nth-child(6) { left: 85%; animation-duration: 9s; animation-delay: -5s; }
.hero-particle:nth-child(7) { left: 15%; animation-duration: 15s; animation-delay: -8s; width: 2px; height: 2px; }
.hero-particle:nth-child(8) { left: 60%; animation-duration: 11s; animation-delay: -1s; width: 6px; height: 6px; opacity: 0.3; }
.hero-particle:nth-child(9) { left: 90%; animation-duration: 10s; animation-delay: -7s; }
.hero-particle:nth-child(10) { left: 35%; animation-duration: 13s; animation-delay: -9s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 560px;
}

/* Hero 2-column layout */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 5;
}

/* --- Hero Collage --- */
.hero-collage {
    position: relative;
    width: 560px;
    height: 560px;
    flex-shrink: 0;
}

.collage-item {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
    will-change: transform;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,150,199,0.15), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.collage-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    transform: translateX(-100%);
    animation: collageShine 4s ease-in-out infinite;
}

@keyframes collageShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.collage-item:hover {
    z-index: 10;
    transform: scale(1.05) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 30px rgba(0,150,199,0.2);
}

/* Collage positions — scattered layout */
.collage-1 {
    width: 270px;
    height: 300px;
    top: 0;
    right: 0;
    animation: collageFloat1 8s ease-in-out infinite;
    z-index: 3;
}

.collage-2 {
    width: 230px;
    height: 250px;
    top: 20px;
    left: 0;
    animation: collageFloat2 9s ease-in-out infinite;
    animation-delay: -2s;
    z-index: 2;
}

.collage-3 {
    width: 250px;
    height: 210px;
    bottom: 20px;
    right: 20px;
    animation: collageFloat3 7s ease-in-out infinite;
    animation-delay: -4s;
    z-index: 4;
}

.collage-4 {
    width: 210px;
    height: 230px;
    bottom: 0;
    left: 30px;
    animation: collageFloat4 10s ease-in-out infinite;
    animation-delay: -1s;
    z-index: 1;
}

/* Staggered floating animations */
@keyframes collageFloat1 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes collageFloat2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(12px) rotate(1deg); }
}

@keyframes collageFloat3 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes collageFloat4 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(14px) rotate(2deg); }
}

/* Collage entrance animation (GSAP will handle) */
.collage-item {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
}

.collage-loaded .collage-item {
    opacity: 1;
}

.collage-loaded .collage-1 {
    animation: collageFloat1 8s ease-in-out infinite;
    transform: rotate(2deg);
}
.collage-loaded .collage-2 {
    animation: collageFloat2 9s ease-in-out infinite;
    animation-delay: -2s;
    transform: rotate(-3deg);
}
.collage-loaded .collage-3 {
    animation: collageFloat3 7s ease-in-out infinite;
    animation-delay: -4s;
    transform: rotate(1deg);
}
.collage-loaded .collage-4 {
    animation: collageFloat4 10s ease-in-out infinite;
    animation-delay: -1s;
    transform: rotate(-1deg);
}

.hero-content .subheading {
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
}

.hero-content .subheading::before,
.hero-content .subheading::after { background: var(--gold-light); }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.02;
    margin-bottom: 1.75rem;
    letter-spacing: -0.04em;
    font-style: normal;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 2.75rem;
    max-width: 530px;
    font-weight: 400;
    letter-spacing: 0.005em;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-trust-item svg { color: var(--gold-light); flex-shrink: 0; }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold-light), transparent);
    margin: 8px auto 0;
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 50%;
    background: var(--white);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* --- Wave Dividers --- */
.wave-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wave-divider-flip {
    transform: rotate(180deg);
    margin-bottom: -1px;
    margin-top: 0;
}

/* --- Page Header --- */
.page-header {
    padding: 12rem 0 5rem;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0,150,199,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(72,202,228,0.08) 0%, transparent 50%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,150,199,0.3), transparent);
}

.page-header .subheading { color: var(--gold-light); }
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.page-header p {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.75rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* --- Sections --- */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-dark {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0,150,199,0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(72,202,228,0.04) 0%, transparent 40%);
    pointer-events: none;
}

.section-cream {
    background: var(--cream);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-header .section-desc { margin: 0 auto; }

.section-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle, var(--charcoal) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* --- Cards --- */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Category Card - Glass */
.category-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 2.75rem 2rem;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0,150,199,0.3), transparent 50%, rgba(72,202,228,0.2));
    opacity: 0;
    transition: var(--transition-slow);
    z-index: -1;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0,150,199,0.08), transparent);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover::before { opacity: 1; }
.category-card:hover::after { opacity: 1; }
.category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,150,199,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 30px rgba(0,150,199,0.1);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
    position: relative;
    z-index: 1;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.category-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover::before { transform: scaleX(1); }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,150,199,0.1);
    border-color: transparent;
}

.product-card-img {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg, var(--cream), var(--off-white));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    padding: 0.35rem 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    z-index: 2;
}

.badge-new { background: var(--gradient-primary); color: var(--white); }
.badge-sale { background: var(--error); color: var(--white); }

.product-card-body { padding: 1.75rem; }

.product-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.product-card-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.product-card-body h3 a:hover { color: var(--gold); }

.product-excerpt {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-price .current {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
}

.product-price .old {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-card-placeholder {
    width: 80px; height: 80px;
    opacity: 0.12;
    color: var(--gold);
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 2;
}

.blog-card:hover::before { transform: scaleX(1); }

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.blog-card-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.blog-card-img > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.blog-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,32,54,0.3), transparent);
}

.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.8s ease;
}

.blog-card-img > img { transition: transform 0.8s ease; }

.blog-card:hover .blog-card-img img { transform: scale(1.08); }

.blog-card-body { padding: 1.75rem; }

.blog-date {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: 0.03em;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.blog-card-body h3 a:hover { color: var(--gold); }

.blog-card-body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* --- Stats Section --- */
.stats-section {
    padding: 5rem 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,150,199,0.05) 25%, rgba(0,150,199,0.08) 50%, rgba(0,150,199,0.05) 75%, transparent);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(0,150,199,0.2);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- CTA Section --- */
.cta-section {
    padding: 8rem 0;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0,150,199,0.15), transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(72,202,228,0.1), transparent 50%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,150,199,0.3), transparent);
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.cta-section p {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* CTA Stats Row */
.cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.cta-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.75rem 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,150,199,0.08);
    transform: translateY(-6px);
}

.feature-icon {
    width: 64px; height: 64px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- Product Detail --- */
.product-detail { padding: 8rem 0 4rem; }

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery { position: sticky; top: 6rem; }

.product-main-img {
    width: 100%; height: 500px;
    background: linear-gradient(135deg, var(--cream), var(--off-white));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.product-main-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.product-info .subheading { margin-bottom: 0.5rem; }

.product-info h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.product-info .product-price { margin-bottom: 1.5rem; }
.product-info .product-price .current { font-size: 1.75rem; }

.product-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features-list { margin-bottom: 2rem; }

.product-features-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.product-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0.6rem;
    color: var(--white);
    font-weight: 700;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.product-specs {
    margin-top: 2rem;
    border-top: 1px solid var(--gray-200);
    padding-top: 2rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
}

.spec-row:last-child { border-bottom: none; }
.spec-row dt { color: var(--gray-500); }
.spec-row dd { font-weight: 600; color: var(--charcoal); }

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(0,150,199,0.2); }

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0,150,199,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    gap: 1rem;
    letter-spacing: -0.01em;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1;
    color: var(--gold);
}

.faq-item.active .faq-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.85;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(0,150,199,0.08);
}

.form-textarea { min-height: 150px; resize: vertical; }

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.contact-info-card:hover {
    border-color: rgba(0,150,199,0.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 52px; height: 52px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* --- Alert Messages --- */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(16,185,129,0.08);
    color: #065f46;
    border: 1px solid rgba(16,185,129,0.15);
}

.alert-error {
    background: rgba(239,68,68,0.08);
    color: #991b1b;
    border: 1px solid rgba(239,68,68,0.15);
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    padding: 6rem 0 0;
    color: rgba(255,255,255,0.7);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,150,199,0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.dev-credit {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.03em;
}

.dev-credit a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-credit a:hover {
    color: var(--gold-light);
}

/* --- WhatsApp Button --- */
/* --- WhatsApp Widget --- */
.whatsapp-wrap {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.whatsapp-toggle {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    padding: 0;
}

.whatsapp-toggle::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-xl) + 3px);
    background: rgba(37,211,102,0.3);
    animation: wpPulse 2s infinite;
    z-index: -1;
}

.whatsapp-toggle:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

.wp-icon-close { display: none; }
.whatsapp-wrap.open .wp-icon-open { display: none; }
.whatsapp-wrap.open .wp-icon-close { display: block; }
.whatsapp-wrap.open .whatsapp-toggle::after { animation: none; opacity: 0; }

.whatsapp-wrap.open .whatsapp-toggle {
    background: #128C7E;
    border-radius: 50%;
}

/* Popup */
.whatsapp-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-wrap.open .whatsapp-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
    background: #25D366;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.whatsapp-popup-body {
    padding: 1.25rem;
    background: #E8F5E9;
}

.whatsapp-popup-body p {
    background: white;
    padding: 0.85rem 1rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
    font-size: 0.9rem;
    color: var(--charcoal);
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    line-height: 1.5;
}

.whatsapp-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.whatsapp-popup-cta:hover {
    background: #1DA851;
}

@keyframes wpPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* --- Quote / Dealer --- */
.quote-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.quote-table th,
.quote-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.quote-table th {
    font-weight: 600;
    color: var(--white);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--charcoal);
}

/* --- Product Filters --- */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.filter-sidebar {
    position: sticky;
    top: 6rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.filter-group { margin-bottom: 2rem; }
.filter-group:last-child { margin-bottom: 0; }

.filter-group h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.filter-group label:hover { color: var(--gold); }

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
    accent-color: var(--gold);
    width: 16px; height: 16px;
}

/* --- Blog Detail --- */
.blog-detail { padding: 8rem 0 4rem; }

.blog-content {
    max-width: 750px;
    margin: 0 auto;
}

.blog-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.blog-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.blog-content p {
    margin-bottom: 1.25rem;
    color: var(--gray-600);
    line-height: 1.85;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.blog-content li {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.blog-content strong { color: var(--charcoal); }

/* --- Marquee --- */
.marquee-section {
    padding: 3rem 0;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-300);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.marquee-item .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Service Cards (Products Showcase) --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-slow);
}

.service-card:hover::before { transform: scaleY(1); }

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,150,199,0.08);
    transform: translateY(-6px);
}

.service-card-icon {
    font-size: 2.75rem;
    flex-shrink: 0;
    width: 72px; height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, rgba(0,150,199,0.1), rgba(72,202,228,0.1));
    transform: scale(1.08);
}

.service-card-content { flex: 1; }

.service-card-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.service-card-content p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--transition);
}

.service-card:hover .service-card-link { gap: 0.75rem; }

/* --- Service Detail Layout --- */
.service-detail-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3.5rem;
    align-items: start;
}

.service-sidebar {
    position: sticky;
    top: 6rem;
}

.service-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.service-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: var(--transition);
}

.service-nav-item svg {
    margin-left: auto;
    opacity: 0;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-nav-item:hover {
    border-color: rgba(0,150,199,0.2);
    background: var(--cream);
}

.service-nav-item:hover svg { opacity: 0.5; }

.service-nav-item.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.service-nav-item.active svg { opacity: 1; }

.service-nav-icon { font-size: 1.25rem; flex-shrink: 0; }

.service-sidebar-cta {
    background: var(--charcoal);
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: var(--white);
}

.service-sidebar-cta h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.service-sidebar-cta p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-content {}

.service-image {
    margin-bottom: 2.5rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.service-image-inner {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 50%, var(--charcoal-lighter) 100%);
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.service-image-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,150,199,0.15), transparent 60%);
}

.service-image-icon {
    font-size: 5rem;
    position: relative;
    z-index: 1;
}

.service-image-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.service-desc {
    margin-bottom: 2.5rem;
}

.service-desc p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.service-features { margin-bottom: 2.5rem; }

.service-features h3,
.service-usage h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-usage { margin-bottom: 2.5rem; }

.service-usage-box {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
}

.service-usage-box svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.service-usage-box p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

.service-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
}

/* --- 3D Perspective & Tilt System --- */
.perspective-container {
    perspective: 1200px;
    perspective-origin: center;
}

.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.tilt-card .tilt-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

.tilt-card:hover .tilt-shine { opacity: 1; }

/* Card  3D depth layers */
.tilt-card .tilt-depth {
    transform: translateZ(30px);
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.tilt-card:hover .tilt-depth { transform: translateZ(40px); }

/* --- Floating Animation Variants --- */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes floatRotate {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(2deg); }
    75% { transform: translateY(4px) rotate(-2deg); }
}

@keyframes pulse3d {
    0%, 100% { transform: scale3d(1, 1, 1); }
    50% { transform: scale3d(1.05, 1.05, 1.05); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

/* --- Mouse Spotlight Effect (Dark sections) --- */
.spotlight-section {
    position: relative;
}

.spotlight-section .spotlight-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,150,199,0.07), transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: translate(-50%, -50%);
    will-change: left, top;
}

.spotlight-section:hover .spotlight-glow { opacity: 1; }

/* --- Enhanced Category Cards (3D) --- */
.category-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.category-icon {
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.category-card:nth-child(2) .category-icon { animation-delay: -1.5s; }
.category-card:nth-child(3) .category-icon { animation-delay: -3s; }
.category-card:nth-child(4) .category-icon { animation-delay: -4.5s; }

.category-card:hover .category-icon {
    animation: none;
    transform: translateZ(25px) scale(1.15);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card h3 { transform: translateZ(15px); transition: transform 0.4s ease; }
.category-card:hover h3 { transform: translateZ(20px); }

/* --- Enhanced Feature Cards (3D flip glow) --- */
.feature-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark), var(--gold));
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: gradientShift 4s ease infinite;
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
    transform: translateZ(20px);
}

.feature-card:hover .feature-icon {
    animation: pulse3d 1.5s ease-in-out infinite;
}

/* --- Enhanced Stat Items (3D) --- */
.stat-item {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.stat-item:hover .stat-number {
    transform: translateZ(20px);
    text-shadow: 0 0 40px rgba(0,150,199,0.3);
}

.stat-number {
    transform: translateZ(10px);
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

/* --- Enhanced Blog Cards (3D) --- */
.blog-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08) translateZ(10px);
}

/* --- Enhanced Service Cards (3D) --- */
.service-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.service-card:hover .service-card-icon {
    transform: scale(1.08) translateZ(20px) rotateY(10deg);
}

/* --- Magnetic Buttons --- */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

/* --- Ripple Click Effect --- */
.btn .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    animation: ripple 0.6s linear forwards;
    pointer-events: none;
}

/* --- CTA Animated Background --- */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,150,199,0.3), transparent);
}

.cta-section .cta-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    animation: floatOrb 25s ease-in-out infinite;
}

.cta-bg-orb-1 {
    width: 400px; height: 400px;
    background: var(--gold);
    top: -20%; left: -10%;
}

.cta-bg-orb-2 {
    width: 300px; height: 300px;
    background: var(--gold-light);
    bottom: -15%; right: -5%;
    animation-delay: -12s !important;
}

/* --- Enhanced Marquee (Gradient Fade + Glow Dots) --- */
.marquee-section {
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.marquee-item .dot {
    animation: pulse3d 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0,150,199,0.4);
}

/* --- Hero Enhanced 3D --- */
.hero-content {
    transform-style: preserve-3d;
}

.hero-title {
    transform: translateZ(30px);
}

.hero-desc {
    transform: translateZ(15px);
}

.hero-actions {
    transform: translateZ(20px);
}

/* Hero water shimmer overlay */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--charcoal), transparent);
    z-index: 4;
    pointer-events: none;
}

/* --- Text Reveal Clip Animation --- */
.text-reveal {
    clip-path: inset(0 100% 0 0);
    animation: textReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes textReveal {
    to { clip-path: inset(0 0% 0 0); }
}

/* --- Smooth Page Load --- */
.page-transition {
    animation: pageEnter 0.6s ease-out;
}

@keyframes pageEnter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Glow Line Decoration --- */
.glow-line {
    position: relative;
}

.glow-line::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 10px rgba(0,150,199,0.5), 0 0 30px rgba(0,150,199,0.2);
    animation: borderGlow 3s ease-in-out infinite;
}

/* --- FAQ Item Enhanced --- */
.faq-item {
    transform-style: preserve-3d;
    transition: var(--transition), box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: -4px 4px 20px rgba(0,150,199,0.08);
}

.faq-item.active {
    transform: translateX(8px) scale(1.01);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: #e7e40fe0;
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    will-change: transform;
    box-shadow: 0 0 10px rgba(0,150,199,0.5);
}

/* --- Custom Cursor Glow (Desktop only) --- 
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 20px; height: 20px;
    border: 2px solid rgba(0,150,199,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
    contain: layout style;
}

.cursor-glow.cursor-hover {
    width: 50px; height: 50px;
    border-color: rgba(0,150,199,0.8);
    background: rgba(0,150,199,0.05);
}

.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    contain: layout style;
}
*/
/* --- Section Edge Glow --- */
.section-dark::after {
    content: '';
    position: absolute;
    bottom: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,150,199,0.25), transparent);
}

/* --- Enhanced Footer Social (3D) --- */
.footer-social a {
    transform-style: preserve-3d;
}

.footer-social a:hover {
    transform: translateY(-3px) rotateY(15deg);
}

/* --- Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(50px); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-scale { opacity: 0; transform: scale(0.9); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .products-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .product-gallery { position: static; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .hero-trust { gap: 1.5rem; flex-wrap: wrap; }
    .service-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
    .service-sidebar { position: static; }
    .service-nav { flex-direction: row; overflow-x: auto; gap: 0.5rem; padding-bottom: 0.5rem; }
    .service-nav-item { white-space: nowrap; min-width: auto; }

    .hero-collage {
        width: 420px;
        height: 460px;
    }
    .collage-1 { width: 220px; height: 250px; }
    .collage-2 { width: 190px; height: 210px; }
    .collage-3 { width: 200px; height: 175px; }
    .collage-4 { width: 180px; height: 195px; }
}

@media (max-width: 900px) and (min-width: 769px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .hero-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-content { max-width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
}

@media (max-width: 768px) {
    html {
        --safe-top: env(safe-area-inset-top, 0px);
        --safe-bottom: env(safe-area-inset-bottom, 0px);
        overflow-x: clip;
    }

    body {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        overscroll-behavior-y: contain;
        overflow-x: clip;
        max-width: 100vw;
        padding-bottom: calc(70px + var(--safe-bottom));
    }

    /* Container centering */
    .container {
        padding: 0 1.25rem;
    }

    /* Hide top bar on mobile */
    .top-bar { display: none !important; }
    .navbar.has-topbar,
    .navbar.scrolled.has-topbar { top: 0; }

    /* App-like Navbar — compact, frosted */
    .navbar {
        padding: 0.5rem 0;
        background: rgba(12,32,54,0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }

    .navbar.scrolled { padding: 0.5rem 0; }
    .navbar-logo { font-size: 1.35rem; }
    .navbar-menu { display: none; }
    .navbar-actions .btn { display: none; }

    /* Mobile: show language switcher inside navbar (right-aligned, opposite logo) */
    .navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
    .navbar-actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
    .lang-switcher--mobile { display: inline-block; }
    .lang-switcher--mobile .lang-current {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.18);
        color: #fff;
        padding: .35rem .65rem .35rem .45rem;
        gap: .4rem;
    }
    .lang-switcher--mobile .lang-current .lang-code { display: inline; font-size: .72rem; }
    .lang-switcher--mobile .lang-menu {
        right: 0;
        top: calc(100% + 12px);
        min-width: 180px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    .lang-switcher--mobile .lang-menu::before { right: 14px; }

    /* ========== BOTTOM TAB BAR ========== */
    .mobile-tab-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 1000;
        background: rgba(12,32,54,0.97);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-top: 1px solid rgba(0,150,199,0.1);
        padding: 0.5rem 0 calc(0.4rem + var(--safe-bottom));
        align-items: center;
        justify-content: center;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    }

    .tab-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        flex: 1;
        padding: 0.3rem 0;
        color: rgba(255,255,255,0.4);
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        font-family: var(--font-heading);
        transition: color 0.2s ease;
        position: relative;
        text-align: center;
    }

    .tab-item svg {
        stroke: rgba(255,255,255,0.4);
        transition: stroke 0.2s ease;
    }

    .tab-item.active { color: var(--gold); }
    .tab-item.active svg { stroke: var(--gold); }

    .tab-item.active::before {
        content: '';
        position: absolute;
        top: -0.4rem;
        left: 50%; transform: translateX(-50%);
        width: 20px; height: 2px;
        background: var(--gold);
        border-radius: 2px;
    }

    /* Center CTA Tab */
    .tab-item-cta {
        margin-top: -1.2rem;
        color: var(--white);
    }

    .tab-cta-btn {
        width: 48px; height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0,150,199,0.4);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .tab-cta-btn svg { stroke: white; }
    .tab-item-cta:active .tab-cta-btn { transform: scale(0.9); }
    .tab-item:active { transform: scale(0.9); transition: transform 0.1s ease; }

    /* ========== HERO ========== */
    .hero {
        height: auto;
        min-height: 0;
        padding-top: 90px;
        padding-bottom: 40px;
        align-items: flex-start;
        overflow: visible;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 2rem;
    }

    .hero-collage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.75rem;
        width: 100%;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        position: relative;
        margin-top: 0;
    }

    .collage-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        min-height: 0 !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        border-radius: var(--radius-lg);
    }

    .collage-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block;
    }

    .collage-loaded .collage-item {
        animation: none !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title { font-size: 2.2rem; }

    .hero-desc {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
    }

    .hero-trust { display: none; }

    /* ========== SECTIONS — COMPACT ========== */
    .section { padding: 3.5rem 0; }
    .page-header { padding: 7rem 0 2.5rem; }
    .page-header h1 { font-size: 2rem; }

    /* Section headers - center on mobile */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header .section-desc {
        font-size: 0.95rem;
    }

    .heading-section {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    /* ========== GRIDS — SINGLE COLUMN ========== */
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

    /* Inline grids in forms/pages — stack on mobile */
    [style*="grid-template-columns: 1fr 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* About page gap fix */
    [style*="gap:5rem"],
    [style*="gap: 5rem"] {
        gap: 2rem !important;
    }

    /* About page fixed-height box */
    [style*="height:400px"],
    [style*="height: 400px"] {
        height: 250px !important;
    }

    /* ========== CARDS ========== */

    /* Category Cards — horizontal */
    .category-card {
        flex-direction: row;
        text-align: left;
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .category-icon {
        width: 48px; height: 48px;
        font-size: 1.3rem;
        flex-shrink: 0;
        animation: none;
    }

    /* Feature cards — compact horizontal */
    .feature-card {
        flex-direction: row;
        text-align: left;
        padding: 1.25rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 44px; height: 44px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .feature-card h3 { font-size: 1rem; }
    .feature-card p { font-size: 0.85rem; }

    /* Service cards compact */
    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 { font-size: 1.1rem; }

    /* Stats — centered grid */
    .stat-item {
        text-align: center;
    }

    .stat-number { font-size: 2rem; }

    /* Blog cards compact */
    .blog-card { border-radius: var(--radius-lg); }
    .blog-card-img { height: 180px; }
    .blog-card-body { padding: 1.25rem; }
    .blog-card-body h3 { font-size: 1rem; }

    /* FAQ touch-friendly */
    .faq-question {
        padding: 1rem 0;
        min-height: 48px;
        font-size: 0.95rem;
    }

    .faq-answer { font-size: 0.9rem; }

    /* ========== CTA ========== */
    .cta-section {
        text-align: center;
    }

    .cta-section h2 { font-size: 1.6rem; }
    .cta-section p { font-size: 0.95rem; }

    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }

    .cta-stat-number { font-size: 1.8rem; }
    .cta-stat-label { font-size: 0.7rem; }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* ========== PRODUCT DETAIL ========== */
    .product-main-img { height: 250px; }

    .service-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
    .service-sidebar { position: static; }

    .service-nav {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .service-nav::-webkit-scrollbar { display: none; }

    .service-nav-item {
        white-space: nowrap;
        min-width: auto;
        scroll-snap-align: start;
    }

    /* ========== FOOTER ========== */
    .footer { padding-bottom: 1rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .footer-col h4 { font-size: 0.9rem; margin-bottom: 0.75rem; }
    .footer-col ul { gap: 0.35rem; }
    .footer-desc { font-size: 0.85rem; }

    /* WhatsApp — small side tab on mobile */
    .whatsapp-wrap {
        bottom: auto;
        right: 0;
        top: calc(50% - 24px);
        transform: none;
    }

    .whatsapp-toggle {
        width: 40px;
        height: 48px;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
        box-shadow: -2px 2px 10px rgba(37,211,102,0.3);
    }

    .whatsapp-toggle::after {
        display: none;
    }

    .whatsapp-toggle svg {
        width: 20px;
        height: 20px;
    }

    .whatsapp-wrap.open .whatsapp-toggle {
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .whatsapp-popup {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        top: auto;
        width: 100vw;
        max-width: 100vw;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        transform-origin: bottom center;
        transform: translateY(100%);
        box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
        z-index: 999;
    }

    .whatsapp-wrap.open .whatsapp-popup {
        transform: translateY(0);
    }

    /* ========== MISC ========== */
    .wave-divider { height: 50px; }
    .subheading::before, .subheading::after { width: 20px; }
    .subheading { font-size: 0.7rem; }
    .gold-line { width: 60px; }

    /* Marquee */
    .marquee-section { padding: 2rem 0; }
    .marquee-item { font-size: 0.82rem; gap: 0.5rem; }

    /* Buttons — 48px touch targets */
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Form inputs — 16px prevents iOS zoom */
    input, select, textarea { font-size: 16px !important; }

    /* Contact info compact */
    .contact-info-card { padding: 1.25rem; }

    /* Scroll progress thinner */
    .scroll-progress { height: 2px; }

    /* Page header centering */
    .page-header {
        text-align: center;
    }

    .page-header p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    /* Disable heavy 3D on mobile */
    .cursor-glow, .cursor-dot { display: none !important; }
    .spotlight-section .spotlight-glow { display: none; }
    .tilt-card { transform: none !important; }
    .hero-content { transform-style: flat; }
    .hero::after { height: 100px; }

    /* Touch active states */
    .category-card:active,
    .feature-card:active,
    .service-card:active,
    .blog-card:active,
    .stat-item:active,
    .faq-item:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 1.7rem; }
    .hero-desc { font-size: 0.88rem; }
    .heading-section { font-size: 1.5rem; }
    .btn { padding: 0.7rem 1.25rem; font-size: 0.8rem; }
    .section { padding: 2.5rem 0; }
    .page-header { padding: 6rem 0 2rem; }
    .page-header h1 { font-size: 1.6rem; }
    .category-card { padding: 0.85rem 1rem; }
    .feature-card { padding: 1rem; }
    .stat-number { font-size: 1.75rem; }
    .stat-label { font-size: 0.75rem; }
    .blog-card-img { height: 150px; }
    .cta-section h2 { font-size: 1.4rem; }
    .footer-grid { gap: 1.5rem; }
    .collage-item { aspect-ratio: 1 / 1; }
    .hero-collage { gap: 0.5rem; }
}

@media (max-width: 360px) {
    .container { padding: 0 0.75rem; }
    .hero-title { font-size: 1.5rem; }
    .heading-section { font-size: 1.35rem; }
    .tab-item { font-size: 0.55rem; padding: 0.3rem 0.3rem; }
    .tab-cta-btn { width: 42px; height: 42px; }
}

/* Hide tab bar on desktop */
@media (min-width: 769px) {
    .mobile-tab-bar { display: none; }
}

/* ========== Fullpage Snap Scroll (Desktop Only) ========== */
@media (min-width: 769px) {
    html:has(.fullpage-scroll) {
        overflow-y: auto;
    }

    .fullpage-scroll {
        background: var(--charcoal);
    }

    .fullpage-scroll .hero {
        /* JS handles section scrolling */
    }

    .fullpage-scroll .wave-divider,
    .fullpage-scroll .marquee-section {
        display: none;
    }

    .fullpage-scroll .section,
    .fullpage-scroll .cta-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Light sections need explicit background */
    .fullpage-scroll .section:not(.section-dark):not(.section-cream) {
        background: var(--white);
    }

    .fullpage-scroll .section-cream {
        background: var(--cream);
    }

    .fullpage-scroll .footer {
        min-height: auto;
    }

    /* Section nav dots */
    .fp-nav {
        position: fixed;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .fp-nav-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        border: 1.5px solid rgba(255,255,255,0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        padding: 0;
    }

    .fp-nav-dot:hover {
        background: rgba(255,255,255,0.4);
        border-color: rgba(255,255,255,0.5);
        transform: scale(1.3);
    }

    .fp-nav-dot.active {
        background: var(--gold);
        border-color: var(--gold-light);
        box-shadow: 0 0 8px rgba(0,150,199,0.5);
        transform: scale(1.2);
    }

    .fp-nav-dot::before {
        content: attr(data-label);
        position: absolute;
        right: calc(100% + 12px);
        top: 50%;
        transform: translateY(-50%);
        white-space: nowrap;
        font-size: 0.7rem;
        font-weight: 500;
        color: rgba(255,255,255,0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        font-family: var(--font-heading);
        letter-spacing: 0.05em;
    }

    .fp-nav-dot:hover::before {
        opacity: 1;
    }
}

/* --- Utility --- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* === Image safety: prevent any uploaded image from stretching or overflowing === */
img{max-width:100%;height:auto}
.service-card-icon img{width:100%;height:100%;object-fit:cover;display:block;border-radius:inherit}
.blog-card-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center center;display:block}
.service-image img{width:100%;height:100%;max-height:380px;object-fit:contain;background:linear-gradient(135deg,var(--charcoal) 0%,var(--charcoal-light) 50%,var(--charcoal-lighter) 100%);display:block}
.service-image{max-height:380px}
.blog-content img{max-width:100%;height:auto;border-radius:8px}
/* === Admin-managed media additions === */
.navbar-logo-img{height:42px;width:auto;display:block;object-fit:contain;max-width:200px}
.has-topbar .navbar-logo-img{height:46px}
.footer-logo-img{height:48px;width:auto;display:block;object-fit:contain;max-width:200px;margin-bottom:1rem}

/* feature card icon as image */
.feature-icon img{width:60px;height:60px;object-fit:contain;display:block}

/* Category cards (homepage products) with background image + hover */
.category-card.has-image{
    position:relative;overflow:hidden;
    min-height:240px;
    color:#fff;
    isolation:isolate;
}
.category-card.has-image .category-card-bg{
    position:absolute;inset:0;
    background-size:cover;background-position:center;
    transform:scale(1.05);
    transition:transform .8s cubic-bezier(.2,.7,.3,1), filter .6s;
    filter:brightness(.55) saturate(1.05);
    z-index:-2;
}
.category-card.has-image .category-card-overlay{
    position:absolute;inset:0;
    background:linear-gradient(180deg,rgba(12,32,54,.15) 0%,rgba(12,32,54,.55) 60%,rgba(12,32,54,.85) 100%);
    z-index:-1;
    transition:background .5s;
}
.category-card.has-image:hover .category-card-bg{
    transform:scale(1.15);
    filter:brightness(.7) saturate(1.15);
}
.category-card.has-image:hover .category-card-overlay{
    background:linear-gradient(180deg,rgba(12,32,54,.05) 0%,rgba(12,32,54,.35) 50%,rgba(0,150,199,.75) 100%);
}
.category-card.has-image .category-icon{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.18);
    transform:translateY(0);
    transition:transform .5s cubic-bezier(.2,.7,.3,1);
}
.category-card.has-image:hover .category-icon{transform:translateY(-6px) scale(1.1)}
.category-card.has-image h3{color:#fff;transform:translateY(0);transition:transform .45s ease}
.category-card.has-image:hover h3{transform:translateY(-3px)}
.category-card.has-image p{color:rgba(255,255,255,.85);transition:color .4s}

/* ============================================================
   GLOBAL RESPONSIVE SAFETY LAYER
   Prevents overflow, stretching, sliding at every resolution
   ============================================================ */

/* Prevent horizontal scroll only on body; keep html scrollable */
html {
    width: 100%;
    overflow-x: clip;            /* clip won't break sticky/fixed like hidden does */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    overflow-y: visible;
    position: relative;
}
*, *::before, *::after {
    box-sizing: border-box;
}

/* Long URLs / words must wrap, never overflow */
p, h1, h2, h3, h4, h5, h6, li, a, span, div, td, th {
    overflow-wrap: anywhere;
    word-wrap: break-word;
}
.blog-content, .blog-content * { overflow-wrap: anywhere; }

/* Container fluid behavior - never wider than viewport */
.container {
    width: 100%;
    max-width: 1280px;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
}

/* Tables become horizontally scrollable on small screens */
.table-wrap, .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
table { width: 100%; max-width: 100%; }

/* Iframes & videos are fluid */
iframe, video, embed, object {
    max-width: 100%;
    height: auto;
}

/* Pre / code blocks scroll instead of overflow */
pre, code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

/* All images: never stretch, never break their aspect ratio */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------------- Card art safety ---------------- */
.category-card-bg {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
.blog-card-img { width: 100%; overflow: hidden; position: relative; }
.blog-card-img img,
.blog-card-img > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.service-card-icon, .feature-icon {
    flex-shrink: 0;
    overflow: hidden;
}

/* ---------------- Hero collage robustness ---------------- */
.hero-collage { max-width: 100%; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-item { overflow: hidden; }

/* ---------------- Grid auto-fit fallbacks ---------------- */
@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important; }
    .grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; }
    .grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important; }
}

/* ---------------- Tablet (≤900px) ---------------- */
@media (max-width: 900px) {
    .container { padding-left: 1.25rem; padding-right: 1.25rem; }
    .navbar-logo-img { height: 38px; }
    .footer-logo-img { height: 42px; }
    .hero-collage { gap: .5rem; }
    .feature-icon img { width: 52px; height: 52px; }
}

/* ---------------- Mobile landscape / small tablet (≤768px) ---------------- */
@media (max-width: 768px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; }
    .form-cols { grid-template-columns: 1fr !important; }

    /* Hero stacks */
    .hero-grid, .hero-content-wrap { grid-template-columns: 1fr !important; }
    .hero-collage { display: grid !important; grid-template-columns: 1fr 1fr !important; grid-template-rows: 1fr 1fr !important; gap: .5rem; }
    .collage-item { aspect-ratio: 1/1; min-height: 0 !important; }

    /* Section spacing */
    .section, section { padding-top: clamp(2rem, 7vw, 4rem); padding-bottom: clamp(2rem, 7vw, 4rem); }

    /* Card image min-height shrinks */
    .category-card.has-image { min-height: 200px; }
    .service-image { max-height: 280px; }
    .service-image img { max-height: 280px; }

    /* Tighter typography */
    h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); line-height: 1.15; }
    h2 { font-size: clamp(1.4rem, 5vw, 2rem); line-height: 1.2; }
    h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }

    /* Buttons full-width when stacked */
    .btn-group, .hero-cta-row { flex-wrap: wrap; }
    .btn-group .btn, .hero-cta-row .btn { flex: 1 1 auto; min-width: 0; }
}

/* ---------------- Small phones (≤480px) ---------------- */
@media (max-width: 480px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .navbar-logo-img { height: 34px; max-width: 150px; }
    .footer-logo-img { height: 38px; max-width: 160px; }

    /* Hero collage to 1 column with first image larger - keeps composition */
    .hero-collage { grid-template-columns: 1fr 1fr !important; gap: .4rem; }

    /* Cards padding shrink */
    .category-card, .service-card, .feature-card, .blog-card {
        padding: clamp(.9rem, 4vw, 1.5rem) !important;
    }
    .category-card.has-image { min-height: 180px; }

    /* Stat numbers don't break layout */
    .stat-number, .stats-number { font-size: clamp(2rem, 8vw, 2.8rem) !important; }

    /* FAQ / lists */
    .faq-question { font-size: 1rem; }

    /* Forms */
    input, textarea, select, .btn { font-size: 16px; } /* prevents iOS zoom */
}

/* ---------------- Tiny phones (≤360px) ---------------- */
@media (max-width: 360px) {
    .container { padding-left: .75rem; padding-right: .75rem; }
    h1 { font-size: 1.55rem; }
    h2 { font-size: 1.3rem; }
    .navbar-logo-img { height: 30px; max-width: 130px; }
    .feature-icon, .service-card-icon { width: 56px !important; height: 56px !important; font-size: 2rem !important; }
    .feature-icon img { width: 44px; height: 44px; }
    .category-icon { width: 56px !important; height: 56px !important; font-size: 1.8rem !important; }
}

/* ---------------- Ultra wide (≥1600px) ---------------- */
@media (min-width: 1600px) {
    .container { max-width: 1440px; }
}
@media (min-width: 1900px) {
    .container { max-width: 1560px; }
}

/* ---------------- Print ---------------- */
@media print {
    .navbar, .footer, .floating-whatsapp, .topbar { display: none !important; }
    body { color: #000; background: #fff; }
}

/* === Social icons (topbar + footer) - branded fill SVGs === */
.top-bar-social { display:flex; align-items:center; gap:.4rem; }
.top-bar-social a.social-link {
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    transition: all .25s ease;
    padding: 4px;
    flex: 0 0 auto;
}
.top-bar-social a.social-link svg { width: 100%; height: 100%; display:block; }
.top-bar-social a.social-link:hover {
    color: #fff;
    background: var(--brand, var(--gold));
    border-color: var(--brand, var(--gold));
    transform: translateY(-1px);
}

.footer-social { display:flex; flex-wrap:wrap; gap:.6rem; }
.footer-social a.social-link {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    transition: all .3s ease;
    padding: 9px;
    flex: 0 0 auto;
}
.footer-social a.social-link svg { width: 100%; height: 100%; display:block; }
.footer-social a.social-link:hover {
    background: var(--brand, var(--gold));
    border-color: var(--brand, var(--gold));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* Tighter on small phones */
@media (max-width: 480px) {
    .top-bar-social a.social-link { width: 24px; height: 24px; padding: 3px; }
    .footer-social a.social-link { width: 36px; height: 36px; padding: 8px; }
}

/* === Language Switcher === */
.lang-switcher { position: relative; display: inline-block; }

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .3rem .7rem .3rem .4rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: rgba(255,255,255,.92);
    font: inherit;
    font-size: .78rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.lang-current:hover {
    background: rgba(255,255,255,.13);
    border-color: rgba(197,160,89,.5);
    color: #fff;
}
.lang-current .lang-code {
    font-weight: 700;
    letter-spacing: .04em;
    font-size: .72rem;
}
.lang-current .lang-caret {
    opacity: .7;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.lang-switcher.open .lang-current .lang-caret { transform: rotate(180deg); }

/* Flag — high specificity to beat flag-icons' default sizing.
   Uses aspect-ratio + display:inline-block; do NOT override background-size
   (flag-icons sets `contain` which keeps the flag undistorted). */
.lang-switcher .lang-flag.fi,
.lang-switcher .lang-flag {
    display: inline-block;
    width: 22px;
    height: 16px;
    min-width: 22px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.15);
    flex-shrink: 0;
    vertical-align: middle;
    line-height: 1;
}

/* Dropdown — hidden by default, shown only via .open */
.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 168px;
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.08);
    padding: .3rem;
    z-index: 1100;
    /* Always render options left-to-right, regardless of page direction */
    direction: ltr;
    text-align: left;
}
.lang-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.08);
    border-left: 1px solid rgba(0,0,0,.08);
    transform: rotate(45deg);
}
.lang-switcher.open .lang-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    animation: langMenuIn .22s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes langMenuIn {
    from { opacity: 0; transform: translateY(-8px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-menu .lang-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    box-sizing: border-box;
    padding: .4rem .55rem;
    border-radius: 7px;
    color: #1a1a1a;
    font-size: .82rem;
    line-height: 1.15;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
    position: relative;
    white-space: nowrap;
}
/* Flag inside dropdown — compact */
.lang-menu .lang-option .lang-flag.fi,
.lang-menu .lang-option .lang-flag {
    width: 20px;
    height: 14px;
    min-width: 20px;
}
.lang-menu .lang-option .lang-name {
    flex: 1 1 auto;
    color: inherit;
    font-weight: inherit;
}
.lang-menu .lang-option .lang-check {
    color: #C5A059;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}
.lang-menu .lang-option:hover { background: #f5f5f5; color: #1a1a1a; }
.lang-menu .lang-option.active {
    background: linear-gradient(135deg, rgba(197,160,89,.14), rgba(197,160,89,.06));
    color: #8B7235;
    font-weight: 600;
}

/* Hide mobile-only switcher on desktop (min-width beats later !important-free rules in cascade) */
@media (min-width: 769px) {
    .lang-switcher--mobile { display: none !important; }
}

/* Mobile-specific dropdown sizing — keep within viewport, prevent clipping */
@media (max-width: 768px) {
    .lang-switcher--mobile .lang-menu {
        min-width: 200px;
        max-height: 70vh;
        overflow-y: auto;
    }
    /* If dropdown would extend past right edge, anchor it 8px from screen edge */
    .lang-switcher--mobile.open .lang-menu {
        right: 0;
    }
}

/* RTL support */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] .lang-menu::before { right: auto; left: 18px; }


/* ============================================================
   v3.1 � Native scroll + Mobile product-detail fixes + Responsive refinements
   ============================================================ */

/* --- Native scrolling (override leftover fullpage snap rules) --- */
html { scroll-behavior: smooth; }
.fullpage-scroll { background: transparent !important; }
.fullpage-scroll .section,
.fullpage-scroll .cta-section { min-height: 0 !important; display: block !important; }
.fullpage-scroll .wave-divider,
.fullpage-scroll .marquee-section { display: block !important; }
.fp-nav { display: none !important; }

/* --- Fluid container for all resolutions --- */
.container {
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
    max-width: min(1320px, 92vw);
}
@media (min-width: 1600px) { .container { max-width: 1440px; } }
@media (min-width: 1900px) { .container { max-width: 1560px; } }

/* --- Tablet (769px � 1024px): two-column where useful --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .service-detail-layout { grid-template-columns: 240px 1fr; gap: 2rem; }
    .service-sidebar { top: 5rem; }
    .hero-title { font-size: clamp(2.2rem, 5vw, 3rem); }
    .heading-section { font-size: clamp(1.8rem, 4vw, 2.4rem); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* --- Small laptop (?1280px): tighter sidebar --- */
@media (min-width: 1025px) and (max-width: 1280px) {
    .service-detail-layout { grid-template-columns: 260px 1fr; gap: 2.5rem; }
}

/* ====== MOBILE PRODUCT DETAIL FIXES (?768px) ====== */
@media (max-width: 768px) {
    /* Page header � slimmer on mobile */
    .page-header { padding: 5.5rem 0 1.75rem !important; }
    .page-header h1, .page-header .heading-display { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: .5rem; }
    .page-header p { font-size: .9rem; line-height: 1.5; margin-bottom: .75rem; }
    .breadcrumb { font-size: .75rem; flex-wrap: wrap; justify-content: center; }

    /* Hide redundant sidebar CTA on mobile (action buttons exist below) */
    .service-sidebar-cta { display: none !important; }

    /* Compact product nav (horizontal scroll) */
    .service-detail-layout { gap: 1.5rem !important; }
    .service-sidebar { margin-bottom: .25rem; }
    .service-nav { padding: .25rem .25rem .75rem; margin: 0 -1.25rem; padding-inline: 1.25rem; }
    .service-nav-item {
        padding: .65rem .9rem !important;
        font-size: .82rem !important;
        border-radius: 999px !important;
        gap: .5rem !important;
        min-height: 40px;
    }
    .service-nav-item svg { display: none !important; }
    .service-nav-icon { font-size: 1rem !important; }

    /* Product image � sensible mobile height */
    .service-image { margin-bottom: 1.5rem !important; border-radius: 16px; }
    .service-image img { width: 100%; height: auto; max-height: 320px; object-fit: cover; display: block; }
    .service-image-inner { height: 240px !important; }
    .service-image-icon { font-size: 3.5rem !important; }

    /* Description / features readable */
    .service-desc { margin-bottom: 1.75rem; }
    .service-desc p { font-size: .95rem !important; line-height: 1.75 !important; }
    .service-features, .service-usage { margin-bottom: 1.75rem; }
    .service-features h3, .service-usage h3 { font-size: 1.1rem; margin-bottom: .9rem; }
    .product-features-list { padding-left: 1.1rem; }
    .product-features-list li { font-size: .9rem; line-height: 1.7; margin-bottom: .4rem; }
    .service-usage-box { padding: 1rem; gap: .75rem; }
    .service-usage-box p { font-size: .9rem; line-height: 1.65; margin: 0; }

    /* Bottom action buttons stack neatly */
    .service-actions { flex-direction: column; gap: .6rem; }
    .service-actions .btn { width: 100%; justify-content: center; }
}

/* ====== Small phones (?480px) � extra trims ====== */
@media (max-width: 480px) {
    .page-header { padding: 5rem 0 1.5rem !important; }
    .page-header h1, .page-header .heading-display { font-size: 1.5rem; }
    .service-nav-item { padding: .55rem .8rem !important; font-size: .78rem !important; }
    .service-image img { max-height: 260px; }
    .service-image-inner { height: 200px !important; }
}

/* ====== Tiny phones (?360px) ====== */
@media (max-width: 360px) {
    .service-nav-item { padding: .5rem .7rem !important; font-size: .74rem !important; }
    .page-header h1, .page-header .heading-display { font-size: 1.35rem; }
}

/* ====== Universal: prevent horizontal overflow on all viewports ====== */
html, body { max-width: 100%; overflow-x: clip; }
img, video, canvas { max-width: 100%; height: auto; }



/* ============================================================
   v3.2 � Product detail mobile polish
   ============================================================ */
@media (max-width: 768px) {
    /* Prevent grid children from overflowing parent */
    .service-detail-layout > * { min-width: 0; }
    .service-content { width: 100%; max-width: 100%; min-width: 0; overflow-wrap: anywhere; word-wrap: break-word; }
    .service-content img,
    .service-content iframe,
    .service-content table { max-width: 100%; height: auto; }

    /* Image fallback (no real image) � compact with aspect ratio */
    .service-image { background: transparent; }
    .service-image-inner {
        height: auto !important;
        aspect-ratio: 16 / 10;
        padding: 1.25rem;
        border-radius: 16px;
    }
    .service-image-icon { font-size: 4rem !important; }
    .service-image-brand { font-size: .85rem; letter-spacing: .25em; }

    /* Real product image � let it size naturally */
    .service-image img {
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: cover;
        display: block;
        border-radius: 16px;
    }

    /* Description � guarantee it fits */
    .service-desc { width: 100%; }
    .service-desc p,
    .service-desc li,
    .service-desc h2, .service-desc h3, .service-desc h4 {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Pill nav: bleed full-width but keep content padded */
    .service-nav {
        margin-inline: calc(var(--page-pad, 1rem) * -1);
        padding-inline: var(--page-pad, 1rem);
    }

    /* Page header tighter on phones */
    .page-header .breadcrumb { margin-top: .5rem; gap: .25rem; }
    .page-header .subheading { margin-bottom: .5rem; }
}

/* Tiny phones � tighter image fallback */
@media (max-width: 380px) {
    .service-image-inner { aspect-ratio: 4 / 3; padding: 1rem; }
    .service-image-icon { font-size: 3.25rem !important; }
    .service-image-brand { font-size: .75rem; }
}



/* ============================================================
   v3.3 - Desktop product detail: image on the right of text
   ============================================================ */
@media (min-width: 992px) {
    .service-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        grid-template-areas:
            'desc      image'
            'features  image'
            'usage     image'
            'actions   actions';
        column-gap: 2.5rem;
        row-gap: 1.5rem;
        align-items: start;
    }
    .service-content > .service-image    { grid-area: image; margin-bottom: 0; position: sticky; top: 6rem; }
    .service-content > .service-desc     { grid-area: desc;     margin-bottom: 0; }
    .service-content > .service-features { grid-area: features; margin-bottom: 0; }
    .service-content > .service-usage    { grid-area: usage;    margin-bottom: 0; }
    .service-content > .service-actions  { grid-area: actions;  margin-top: .5rem; }

    .service-content > .service-image img {
        width: 100%;
        height: auto;
        max-height: 460px;
        object-fit: cover;
        display: block;
        border-radius: 16px;
    }
    .service-content > .service-image .service-image-inner {
        height: auto;
        aspect-ratio: 4 / 5;
    }
}

/* Slightly tighter on smaller laptops */
@media (min-width: 992px) and (max-width: 1280px) {
    .service-content {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
        column-gap: 2rem;
    }
}



/* ============================================================
   v3.4 - Desktop product image: show full uploaded image, no crop
   ============================================================ */
@media (min-width: 992px) {
    .service-content > .service-image {
        background: linear-gradient(135deg, var(--cream), #fff);
        border: 1px solid var(--gray-200);
        border-radius: 18px;
        overflow: hidden;
        padding: 1.25rem;
        box-shadow: 0 8px 28px rgba(12,32,54,.06);
    }
    .service-content > .service-image img {
        width: 100%;
        height: auto;
        max-height: 480px;
        object-fit: contain;       /* show full product, no crop */
        object-position: center;
        display: block;
        border-radius: 10px;
        background: transparent;
    }
    /* When fallback (no uploaded image) is rendered */
    .service-content > .service-image .service-image-inner {
        margin: -1.25rem;          /* fill the padded shell edge-to-edge */
        border-radius: 18px;
    }
}



/* ============================================================
   v3.5 - Product images in sidebar nav + other-products cards
   ============================================================ */
.service-nav-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0,150,199,.08);
    overflow: hidden;
    flex-shrink: 0;
}
.service-nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-nav-item.active .service-nav-icon {
    background: rgba(255,255,255,.18);
}

/* Other-products cards: render uploaded image instead of emoji */
.service-card-icon {
    overflow: hidden;
}
.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

@media (max-width: 768px) {
    .service-nav-icon { width: 26px; height: 26px; border-radius: 6px; }
}

/* ============================================
   Home Slider (Hero alt geçiş) — Premium
   ============================================ */
.home-slider {
    position: relative;
    width: 100%;
    height: clamp(420px, 62vw, 680px);
    overflow: hidden;
    background: var(--charcoal);
    margin-top: -1px;
    isolation: isolate;
}

.home-slider-track {
    position: absolute;
    inset: 0;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s cubic-bezier(.4,0,.2,1), visibility 1.1s;
    pointer-events: none;
}

.home-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.home-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.12);
    transition: transform 9s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.home-slide.is-active .home-slide-bg img {
    transform: scale(1);
}

/* Layered gradient overlay */
.home-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(12,32,54,0.85) 0%, rgba(12,32,54,0.55) 45%, rgba(12,32,54,0.15) 75%, rgba(12,32,54,0.05) 100%),
        linear-gradient(180deg, rgba(12,32,54,0) 60%, rgba(12,32,54,0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Decorative dot pattern */
.home-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Caption */
.home-slide-caption {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 clamp(1.5rem, 6vw, 5rem);
    padding-left: calc(clamp(1.5rem, 6vw, 5rem) + 40px);
    pointer-events: none;
}

.home-slide-caption-inner {
    max-width: 640px;
    color: var(--white);
    pointer-events: auto;
}

.home-slide-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    padding: 0.45rem 1rem 0.45rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s cubic-bezier(.4,0,.2,1);
}

.home-slide-kicker-line {
    width: 38px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    display: inline-block;
}

.home-slide-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.6vw, 3.6rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--white);
    margin: 0 0 1.25rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s 0.45s ease, transform 0.8s 0.45s cubic-bezier(.4,0,.2,1);
}

.home-slide-desc {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    margin: 0 0 2rem;
    max-width: 560px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s 0.6s ease, transform 0.8s 0.6s cubic-bezier(.4,0,.2,1);
}

.home-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0,150,199,0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform, box-shadow;
    transition-duration: 0.8s, 0.8s, 0.35s;
    transition-delay: 0.78s, 0.78s, 0s;
    transition-timing-function: ease, cubic-bezier(.4,0,.2,1), ease;
}

.home-slide-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.home-slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,150,199,0.5);
}

.home-slide-btn:hover::before { transform: translateX(100%); }

.home-slide-btn svg { transition: transform 0.3s ease; }
.home-slide-btn:hover svg { transform: translateX(4px); }

.home-slide-btn-static {
    cursor: default;
    pointer-events: none;
}

/* Active slide entrance animations */
.home-slide.is-active .home-slide-kicker,
.home-slide.is-active .home-slide-title,
.home-slide.is-active .home-slide-desc,
.home-slide.is-active .home-slide-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Arrows */
.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(12, 32, 54, 0.055);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.055);
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
}

.home-slider-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.home-slider-arrow:hover {
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 30px rgba(0,150,199,0.4);
}

.home-slider-arrow:hover::before { opacity: 1; }

.home-slider-prev { left: clamp(1rem, 3vw, 2rem); }
.home-slider-next { right: clamp(1rem, 3vw, 2rem); }

/* Bottom Controls */
.home-slider-controls {
    position: absolute;
    left: clamp(1.5rem, 6vw, 5rem);
    right: clamp(1.5rem, 6vw, 5rem);
    bottom: clamp(1.5rem, 3vw, 2.5rem);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    pointer-events: none;
}

.home-slider-counter {
    display: none !important;
}

.home-slider-current {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-slider-sep {
    width: 36px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

.home-slider-total {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}

/* Dots */
.home-slider-dots {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    pointer-events: auto;
}

.home-slider-dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.25);
    transition: all 0.4s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 0;
}

.home-slider-dot:hover { background: rgba(255,255,255,0.5); }

.home-slider-dot.is-active {
    width: 56px;
    background: rgba(255,255,255,0.2);
}

.home-slider-dot-fill {
    position: absolute;
    inset: 0;
    background: #FFC107;
    transform: scaleX(0);
    transform-origin: left center;
    border-radius: inherit;
}

.home-slider-dot.is-active .home-slider-dot-fill {
    animation: sliderDotFill var(--slider-interval, 5000ms) linear forwards;
}

.home-slider.is-paused .home-slider-dot.is-active .home-slider-dot-fill {
    animation-play-state: paused;
}

.home-slider:not(.has-autoplay) .home-slider-dot.is-active .home-slider-dot-fill {
    animation: none;
    transform: scaleX(1);
}

@keyframes sliderDotFill {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Top progress bar */
.home-slider-progress {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 5;
}

.home-slider-progress-bar {
    height: 100%;
    width: 0;
    background: #FFC107;
    box-shadow: 0 0 10px rgba(0,150,199,0.6);
}

.home-slider.has-autoplay .home-slider-progress-bar {
    animation: sliderProgress var(--slider-interval, 5000ms) linear infinite;
}

.home-slider.is-paused .home-slider-progress-bar {
    animation-play-state: paused;
}

@keyframes sliderProgress {
    from { width: 0; }
    to   { width: 100%; }
}

/* Tablet */
@media (max-width: 1024px) {
    .home-slider { height: clamp(380px, 72vw, 560px); }
    .home-slide-caption-inner { max-width: 540px; }
}

/* Mobile */
@media (max-width: 768px) {
    .home-slider {
        height: auto;
        min-height: 540px;
    }
    .home-slide::before {
        background:
            linear-gradient(180deg, rgba(12,32,54,0.55) 0%, rgba(12,32,54,0.3) 30%, rgba(12,32,54,0.65) 70%, rgba(12,32,54,0.95) 100%);
    }
    .home-slide-caption {
        align-items: flex-end;
        padding: 5rem 1.25rem 7.5rem;
        text-align: left;
    }
    .home-slide-caption-inner { max-width: 100%; }
    .home-slide-kicker { font-size: 0.7rem; margin-bottom: 0.85rem; letter-spacing: 0.22em; }
    .home-slide-kicker-line { width: 28px; }
    .home-slide-title { font-size: clamp(1.5rem, 7vw, 2.2rem); margin-bottom: 0.85rem; }
    .home-slide-desc  { font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.25rem; }
    .home-slide-btn   { padding: 0.8rem 1.4rem; font-size: 0.75rem; }

    /* Oklar alt-sol köşede yan yana */
    .home-slider-arrow {
        width: 40px; height: 40px;
        top: auto;
        bottom: 1.1rem;
        transform: none;
    }
    .home-slider-arrow:hover { transform: scale(1.05); }
    .home-slider-prev { left: 1rem; }
    .home-slider-next { left: 3.5rem; right: auto; }

    /* Dots alt-sağda, oklarla aynı hizada */
    .home-slider-controls {
        left: auto;
        right: 1rem;
        bottom: 1.6rem;
        width: auto;
        justify-content: flex-end;
        gap: 0.5rem;
        pointer-events: none;
    }
    .home-slider-dots {
        justify-content: flex-end;
        pointer-events: auto;
    }
    .home-slider-dot { width: 22px; height: 3px; }
    .home-slider-dot.is-active { width: 36px; }

    /* Üstteki progress bar daha ince */
    .home-slider-progress { height: 2px; }
}

@media (max-width: 480px) {
    .home-slider { min-height: 500px; }
    .home-slider-arrow { width: 36px; height: 36px; }
    .home-slider-next { left: 3rem; }
    .home-slide-caption { padding: 4.5rem 1.1rem 7rem; }
    .home-slider-dot { width: 18px; }
    .home-slider-dot.is-active { width: 30px; }
}

/* --- Hero Scroll Indicator (sağ kenar) --- */
.hero-scroll-indicator {
    position: absolute;
    right: clamp(1rem, 2.5vw, 2.25rem);
    bottom: 2.5rem;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}

.hero-scroll-indicator:hover {
    color: #FFC107;
    transform: translateY(-3px);
}

.hero-scroll-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-scroll-track {
    position: relative;
    width: 2px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.35), rgba(255,255,255,0.05));
    border-radius: 2px;
    overflow: hidden;
}

.hero-scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 12px rgba(0,150,199,0.7);
    animation: heroScrollDot 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes heroScrollDot {
    0%   { transform: translateY(-8px); opacity: 0; }
    25%  { opacity: 1; }
    75%  { opacity: 1; }
    100% { transform: translateY(56px); opacity: 0; }
}

@media (max-width: 768px) {
    .hero-scroll-indicator { display: none; }
}

/* --- Custom Scrollbar (Premium) --- */
html {
    scrollbar-width: thin;
    scrollbar-color: #FFC107 var(--charcoal);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFD54F 0%, #FFC107 50%, #FFA000 100%);
    border-radius: 10px;
    border: 2px solid var(--charcoal);
    background-clip: padding-box;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFE082 0%, #FFD54F 50%, #FFC107 100%);
    background-clip: padding-box;
    border: 2px solid var(--charcoal);
}

::-webkit-scrollbar-thumb:active {
    background: #FFA000;
    background-clip: padding-box;
    border: 2px solid var(--charcoal);
}

::-webkit-scrollbar-corner {
    background: var(--charcoal);
}



