@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #38bdf8;
    --primary-dark: #0284c7;
    --primary-light: #7dd3fc;
    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.5);
    --secondary: #0ea5e9;
    --red-accent: #e53935;
    --red-dark: #c62828;
    --red-light: rgba(229, 57, 53, 0.1);
    --gradient-red: linear-gradient(135deg, #e53935, #c62828);
    --success: #22c55e;
    --warning: #f59e0b;
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --text-gray: #64748b;
    --text-muted: #94a3b8;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-light: #ffffff;
    --bg-gray: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-primary: linear-gradient(135deg, #38bdf8, #06b6d4);
    --gradient-hero: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0284c7 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px var(--accent-glow);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Fade Up Animation */
.fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up.animate {
    animation: fadeUp 0.6s ease-out forwards;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
    overflow-x: hidden;
    cursor: auto;
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-trail {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0.5;
}

.cursor-dot.hover,
.cursor-trail.hover {
    transform: translate(-50%, -50%) scale(1.5);
}

@media (max-width: 768px) {

    .cursor-dot,
    .cursor-trail {
        display: none;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-icon {
    display: none;
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary);
}

.dropdown-menu a i {
    width: 20px;
    color: var(--primary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    border: none;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-search-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Inline Expandable Search */
.inline-search {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

/* Search wrapper - absolute positioned, expands from search button to the right */
.inline-search .search-input-wrapper {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    white-space: nowrap;
    z-index: 100;
}

/* Active state - expand to the right, over the SSS button */
.inline-search.active .search-input-wrapper {
    width: 280px;
    opacity: 1;
    padding: 6px 12px 6px 16px;
    pointer-events: auto;
}

/* SSS button - moves right when search expands */
.nav-actions .btn-outline-light {
    flex-shrink: 0;
    white-space: nowrap;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When search is active, push SSS button and language selector to the right */
.inline-search.active~.btn-outline-light,
.inline-search.active~.btn-outline-light~.language-selector {
    transform: translateX(290px);
}

.inline-search .search-input-wrapper input {
    width: 180px;
    flex-shrink: 0;
    border: none;
    outline: none;
    font-size: 0.95rem;
    padding: 10px 0;
    background: transparent;
    color: var(--text-dark);
}

.inline-search .search-input-wrapper input::placeholder {
    color: var(--text-gray);
}

.inline-search .search-close-btn {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    border: none;
    background: rgba(229, 57, 53, 0.15);
    color: var(--red-accent);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
    line-height: 1;
    font-size: 12px;
    position: relative;
    top: -2px;
    left: 3px;
}

.inline-search .search-close-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.inline-search .search-close-btn:hover {
    background: var(--red-accent);
    color: white;
    transform: scale(1.1);
}

.btn-outline-light {
    padding: 10px 20px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--primary);
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.btn-glass {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-glow {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
    padding: 12px 24px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 140px;
    margin-bottom: 40px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    animation: wave 15s linear infinite;
}

.wave-1 {
    opacity: 0.4;
    animation-duration: 15s;
}

.wave-2 {
    opacity: 0.3;
    animation-duration: 20s;
    bottom: 10px;
}

.wave-3 {
    opacity: 0.2;
    animation-duration: 25s;
    bottom: 20px;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Investment Comparison - 1 House + 1 Gold = 10 SULOOK + 10 Golds */
.investment-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.comparison-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.house-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.1));
    border-color: rgba(239, 68, 68, 0.4);
}

.house-icon i {
    font-size: 2.5rem;
    color: #fca5a5;
}

.comparison-coins {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.single-coin {
    margin-top: 10px;
}

.gold-coin {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    animation: coinShine 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.gold-coin i {
    font-size: 1.1rem;
    color: #78350f;
}

@keyframes coinShine {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(251, 191, 36, 0.7);
        transform: scale(1.05);
    }
}

.comparison-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.comparison-equals {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    animation: equalsGlow 2s infinite;
}

@keyframes equalsGlow {

    0%,
    100% {
        color: rgba(255, 255, 255, 0.4);
        text-shadow: none;
    }

    50% {
        color: var(--accent);
        text-shadow: 0 0 20px var(--accent-glow);
    }
}

/* Machines Grid - 10 Machines */
.machines-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.mini-machine {
    width: 36px;
    height: 48px;
    background: linear-gradient(180deg, #0c4a6e, #0369a1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: machineFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.mini-machine i {
    font-size: 0.9rem;
    color: var(--accent);
}

.mini-machine:nth-child(1) {
    animation-delay: 0s;
}

.mini-machine:nth-child(2) {
    animation-delay: 0.1s;
}

.mini-machine:nth-child(3) {
    animation-delay: 0.2s;
}

.mini-machine:nth-child(4) {
    animation-delay: 0.3s;
}

.mini-machine:nth-child(5) {
    animation-delay: 0.4s;
}

.mini-machine:nth-child(6) {
    animation-delay: 0.5s;
}

.mini-machine:nth-child(7) {
    animation-delay: 0.6s;
}

.mini-machine:nth-child(8) {
    animation-delay: 0.7s;
}

.mini-machine:nth-child(9) {
    animation-delay: 0.8s;
}

.mini-machine:nth-child(10) {
    animation-delay: 0.9s;
}

@keyframes machineFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Coins Grid - 10 Golds */
.coins-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.coins-grid .gold-coin {
    width: 28px;
    height: 28px;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.coins-grid .gold-coin:nth-child(1) {
    --i: 0;
}

.coins-grid .gold-coin:nth-child(2) {
    --i: 1;
}

.coins-grid .gold-coin:nth-child(3) {
    --i: 2;
}

.coins-grid .gold-coin:nth-child(4) {
    --i: 3;
}

.coins-grid .gold-coin:nth-child(5) {
    --i: 4;
}

.coins-grid .gold-coin:nth-child(6) {
    --i: 5;
}

.coins-grid .gold-coin:nth-child(7) {
    --i: 6;
}

.coins-grid .gold-coin:nth-child(8) {
    --i: 7;
}

.coins-grid .gold-coin:nth-child(9) {
    --i: 8;
}

.coins-grid .gold-coin:nth-child(10) {
    --i: 9;
}

.coins-grid .gold-coin i {
    font-size: 0.85rem;
}

.right-side .comparison-label {
    color: var(--success);
    font-size: 1rem;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 3s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0.3;
        top: 22px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.light {
    color: white;
}

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title.light {
    color: white;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.8);
}

/* Water Fill Section */
.water-fill-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    position: relative;
}

.water-fill-container {
    position: relative;
}

.fill-progress {
    position: sticky;
    top: 100px;
    width: 100%;
    height: 8px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 10px;
    margin-bottom: 60px;
    overflow: visible;
    z-index: 100;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 10px;
    position: relative;
    transition: width 0.1s linear;
    overflow: visible;
}

.progress-text {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    white-space: nowrap;
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.damacana-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    min-height: 600px;
    position: relative;
}

.damacana-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box[data-reveal="right"] {
    transform: translateX(50px);
}

.stat-box.visible {
    opacity: 1;
    transform: translateX(0);
}

.stat-box i {
    font-size: 1.8rem;
    color: var(--primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Machine Fill Container - Damacana Inside Machine */
.machine-fill-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.machine-frame {
    position: relative;
    width: 350px;
    height: 550px;
}

.machine-base-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

/* Window overlay positioned on the machine's window area */
.machine-window-overlay {
    position: absolute;
    top: 38%;
    left: 18%;
    width: 28%;
    height: 26%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 8px;
}

/* Mini Damacana inside machine */
.damacana-inside {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.damacana-cap-mini {
    width: 25px;
    height: 12px;
    background: linear-gradient(180deg, #1e88e5, #1565c0);
    border-radius: 4px 4px 0 0;
    z-index: 5;
}

.damacana-body-mini {
    width: 80%;
    height: 85%;
    background: linear-gradient(180deg, rgba(200, 230, 255, 0.3), rgba(150, 200, 255, 0.2));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(150, 200, 255, 0.3);
}

.fill-nozzle-mini {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    z-index: 10;
}

.fill-nozzle-mini .water-stream {
    width: 8px;
    height: 0;
    background: linear-gradient(180deg, #38bdf8, #0ea5e9);
    margin: 0 auto;
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 0 10px var(--accent-glow);
}

.fill-nozzle-mini .water-stream.active {
    height: 30px;
    opacity: 1;
}

/* Keep old damacana styles for backward compatibility */
.damacana-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.damacana {
    position: relative;
    width: 200px;
    height: 350px;
}

.damacana-cap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: linear-gradient(180deg, #1e88e5, #1565c0);
    border-radius: 5px 5px 0 0;
    z-index: 5;
}

.damacana-neck {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 40px;
    background: linear-gradient(180deg, rgba(200, 230, 255, 0.4), rgba(150, 200, 255, 0.3));
    border: 3px solid rgba(100, 180, 255, 0.5);
    border-radius: 5px;
}

.damacana-body {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 290px;
    background: linear-gradient(180deg, rgba(200, 230, 255, 0.3), rgba(150, 200, 255, 0.2));
    border: 4px solid rgba(100, 180, 255, 0.4);
    border-radius: 20px 20px 40px 40px;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(100, 180, 255, 0.2), 0 10px 40px rgba(0, 0, 0, 0.1);
}

.water-level {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 50%, #0284c7 100%);
    transition: height 0.3s ease-out;
    border-radius: 0 0 36px 36px;
}

.water-surface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
    animation: waterWave 2s ease-in-out infinite;
}

@keyframes waterWave {

    0%,
    100% {
        transform: translateY(0) scaleY(1);
    }

    50% {
        transform: translateY(-3px) scaleY(1.1);
    }
}

.bubble {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: bubbleRise 3s infinite;
}

.bubble-1 {
    left: 20%;
    animation-delay: 0s;
}

.bubble-2 {
    left: 50%;
    animation-delay: 1s;
    width: 6px;
    height: 6px;
}

.bubble-3 {
    left: 75%;
    animation-delay: 2s;
    width: 10px;
    height: 10px;
}

@keyframes bubbleRise {
    0% {
        bottom: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0;
    }
}

.damacana-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(14, 165, 233, 0.3);
    z-index: 1;
}

.fill-nozzle {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.nozzle-body {
    width: 30px;
    height: 50px;
    background: linear-gradient(180deg, #475569, #334155);
    border-radius: 5px 5px 10px 10px;
    margin: 0 auto;
}

.water-stream {
    width: 12px;
    height: 0;
    background: linear-gradient(180deg, #38bdf8, #0ea5e9);
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 0 15px var(--accent-glow);
}

.water-stream.active {
    height: 60px;
    opacity: 1;
}

.fill-status {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    box-shadow: var(--shadow-glow);
}

.fill-status .liters {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.fill-status .unit {
    font-size: 0.9rem;
    opacity: 0.9;
}

.fill-complete-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 48px;
    background: var(--success);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.4);
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fill-complete-message.show {
    transform: translate(-50%, -50%) scale(1);
}

.fill-complete-message i {
    font-size: 2rem;
}

/* Spiral Gallery Section */
.spiral-gallery-section {
    min-height: 130vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.spiral-gallery-header {
    position: sticky;
    top: 0;
    padding: 80px 0 30px;
    z-index: 10;
}

.spiral-container {
    position: sticky;
    top: 80px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.spiral-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    transform-style: preserve-3d;
}

.spiral-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 300px;
    height: 220px;
    transform-style: preserve-3d;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.spiral-card.front {
    box-shadow: 0 40px 80px rgba(6, 182, 212, 0.3);
}

.spiral-card:hover {
    box-shadow: 0 40px 80px rgba(6, 182, 212, 0.4);
}

.spiral-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.spiral-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.card-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Spiral Gallery Responsive */
@media (max-width: 1024px) {
    .spiral-card {
        width: 250px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .spiral-gallery-section {
        min-height: 80vh;
    }

    .spiral-container {
        height: 60vh;
    }

    .spiral-card {
        width: 200px;
        height: 150px;
    }

    .spiral-gallery-header {
        padding: 60px 0 20px;
    }
}

@media (max-width: 480px) {
    .spiral-card {
        width: 160px;
        height: 120px;
    }
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-gray) 0%, var(--bg-light) 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calc-section {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.calc-section:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.calc-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bottle-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.bottle-icon i {
    font-size: 1.5rem;
}

.bottle-icon span {
    font-size: 0.75rem;
}

.bottle-5l {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.bottle-19l {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.calc-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.calc-input-group {
    margin-bottom: 24px;
}

.calc-input-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.label-text {
    font-weight: 600;
    color: var(--text-dark);
}

.label-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.range-slider {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: var(--bg-gray);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: var(--transition);
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    transition: transform 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-limits {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.calc-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.calc-subtotal span:first-child {
    font-weight: 600;
}

.subtotal-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

/* Calculator Results */
.calculator-results {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
    border: 2px solid var(--primary);
}

.results-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.results-header i {
    font-size: 2rem;
    color: var(--primary);
}

.results-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.result-card {
    padding: 24px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    transform: translateY(-4px);
}

.result-card.highlight {
    background: var(--gradient-primary);
    color: white;
    grid-column: span 2;
}

.result-card.highlight .result-label {
    color: rgba(255, 255, 255, 0.9);
}

.result-card.highlight .result-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.result-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.result-info {
    flex: 1;
}

.result-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.result-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.result-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.results-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.summary-item span:first-child {
    color: var(--text-gray);
}

.summary-item span:last-child {
    font-weight: 700;
}

.summary-item.highlight {
    padding-top: 12px;
    border-top: 2px solid var(--bg-light);
}

.summary-item.highlight span:last-child {
    color: var(--success);
    font-size: 1.1rem;
}

/* ROI Disclaimer */
.roi-disclaimer {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0.8;
}

/* Investment Section */
.investment-section {
    padding: 100px 0;
}

.investment-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.invest-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.invest-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.invest-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.invest-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.invest-card:hover .card-glow {
    opacity: 0.3;
}

/* OTİS Section */
.otis-section {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.otis-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.otis-feature-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: white;
}

.otis-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.otis-feature-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.otis-feature-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* References Section */
.references-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.references-slider {
    overflow: hidden;
    margin-top: 40px;
}

.references-track {
    display: flex;
    gap: 40px;
    /* Animation disabled - JS handles scrolling via scrollLeft in initDraggablePartners() */
}

/* Note: .references-slider:hover behavior is handled by JS which stops auto-scroll on mouseenter */

.reference-logo {
    flex-shrink: 0;
    padding: 24px 48px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.reference-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-gray);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background: white;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-method strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-method span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-gray);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Removed floating label animation as it was causing overlap issues */

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

textarea.form-control+label {
    top: 20px;
    transform: none;
}

select.form-control {
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    position: relative;
}

.footer-wave {
    color: var(--bg-light);
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: var(--text-muted);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .damacana-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .damacana-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .calculator-results {
        position: static;
    }

    .investment-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .otis-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spiral-card {
        width: 280px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        transform: translateX(-100%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .investment-cards {
        grid-template-columns: 1fr;
    }

    .otis-features-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-card.highlight {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form {
        padding: 24px;
    }

    .spiral-card {
        width: 250px;
        height: 180px;
    }
}

/* ==================== */
/* Product Showcase Section */
/* ==================== */
.product-showcase-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    position: relative;
    overflow: hidden;
}

.product-showcase-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

/* Color Selector */
.color-selector {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.color-option:hover {
    background: var(--bg-gray);
}

.color-option.active {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.color-swatch i {
    font-size: 1.2rem;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.color-option.active .color-swatch i {
    opacity: 1;
    transform: scale(1);
}

.white-swatch {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 3px solid #cbd5e1;
}

.white-swatch i {
    color: var(--primary);
}

.blue-swatch {
    background: linear-gradient(135deg, #0c4a6e, #0284c7);
}

.color-option span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.color-option.active span {
    color: var(--primary);
}

/* Product Viewer */
.product-viewer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-stage {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.product-image.active {
    opacity: 1;
    pointer-events: auto;
}

/* Product Glow */
.product-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    transition: background 0.5s ease;
}

.product-glow.blue-glow {
    background: radial-gradient(ellipse at center, rgba(12, 74, 110, 0.4) 0%, transparent 70%);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}

.floating-badge i {
    color: var(--primary);
    font-size: 1.1rem;
}

.badge-left {
    left: -20px;
    top: 30%;
    animation-delay: 0s;
}

.badge-right {
    right: -20px;
    top: 50%;
    animation-delay: 0.5s;
}

.badge-top {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-top {
    animation-name: floatBadgeTop;
}

@keyframes floatBadgeTop {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Rotate Hint */
.rotate-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--bg-gray);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rotate-hint i {
    color: var(--primary);
    animation: pointerMove 2s ease-in-out infinite;
}

@keyframes pointerMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Product Info Panel */
.product-info-panel {
    padding: 32px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 320px;
}

.product-name {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--bg-gray);
}

.model-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-gray);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.color-name {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
}

/* Product Specs */
.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.spec-item:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

.spec-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.feature-tag i {
    font-size: 0.85rem;
}

/* Product CTA */
.product-cta {
    margin-top: 16px;
}

/* Background Decoration */
.showcase-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.03;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

/* Product Showcase Responsive */
@media (max-width: 1024px) {
    .product-showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .color-selector {
        flex-direction: row;
        justify-content: center;
        order: 1;
    }

    .product-viewer {
        order: 2;
    }

    .product-info-panel {
        order: 3;
        max-width: 100%;
    }

    .product-stage {
        height: 500px;
    }

    .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-stage {
        height: 400px;
    }

    .product-info-panel {
        padding: 24px;
    }

    .product-name h3 {
        font-size: 1.5rem;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }

    .rotate-hint {
        font-size: 0.8rem;
    }
}

/* ===== INNER PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-desc {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-glow);
    filter: blur(80px);
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    opacity: 0.3;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    opacity: 0.2;
}

.deco-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    opacity: 0.15;
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.content-block {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.content-block.reverse {
    grid-template-columns: 1fr 120px;
}

.content-block.reverse .content-icon-box {
    order: 2;
}

.content-icon-box {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
}

.content-icon-box.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.content-text .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    padding: 24px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Eco Stats */
.eco-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.eco-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50px;
    font-weight: 500;
    color: #16a34a;
}

.eco-icon {
    width: 36px;
    height: 36px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.content-text .note {
    font-style: italic;
    color: var(--text-muted);
    padding-left: 20px;
    border-left: 3px solid #22c55e;
}

/* Vision Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.vm-card {
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vm-card.vision {
    background: var(--gradient-primary);
    color: white;
}

.vm-card.mission {
    background: white;
    border: 2px solid var(--primary);
    color: var(--text-dark);
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.vm-card.mission .vm-icon {
    background: var(--primary);
    color: white;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.vm-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0a1628;
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Inner Pages */
@media (max-width: 1024px) {
    .page-title {
        font-size: 2.5rem;
    }

    .content-block {
        grid-template-columns: 1fr;
    }

    .content-block.reverse {
        grid-template-columns: 1fr;
    }

    .content-block.reverse .content-icon-box {
        order: 0;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-block {
        padding: 24px;
        margin-bottom: 40px;
    }

    .content-icon-box {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .eco-stats {
        flex-direction: column;
    }
}

/* ===== PAGE SPECIFIC STYLES ===== */

/* Otomat Page */
.otomat-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
}

.showcase-left h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.showcase-left h2 i {
    color: var(--primary);
}

.showcase-left>p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.color-options-grid {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.color-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.color-opt:hover,
.color-opt.active {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}

.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
}

.color-circle.white {
    background: #f8f9fa;
}

.color-circle.blue {
    background: #0d6e8a;
}

.showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sf-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.sf-item i {
    color: var(--primary);
}

.showcase-right {
    display: flex;
    justify-content: center;
}

.otomat-display {
    position: relative;
    width: 300px;
    height: 450px;
}

.otomat-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.otomat-img.active {
    opacity: 1;
}

/* Filtration Grid */
.filtration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.filt-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    min-height: 120px;
    transition: all 0.3s ease;
}

.filt-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.filt-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.filt-item span {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 500;
}

.cert-badge i {
    font-size: 1.5rem;
}

/* Sensor Grid */
.sensor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sensor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-weight: 500;
}

.sensor-item i {
    font-size: 1.2rem;
}

/* Business Model */
.business-model {
    padding: 60px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
}

.business-model h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.business-model h2 i {
    color: var(--primary);
}

.business-model .lead {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.bm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bm-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.bm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bm-card.highlight {
    background: var(--gradient-primary);
    color: white;
}

.bm-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.bm-card.highlight .bm-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.bm-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.bm-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Installation Timeline */
.installation-section {
    padding: 60px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.installation-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.installation-section h2 i {
    color: var(--primary);
}

.install-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    padding-top: 20px;
}

.install-timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, #22c55e 100%);
    border-radius: 2px;
    z-index: 0;
}

.install-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.install-step .step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.install-step:hover .step-number {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 20px 50px rgba(56, 189, 248, 0.5);
}

.install-step.final .step-number {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
}

.install-step.final:hover .step-number {
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.5);
}

.install-step .step-content {
    background: white;
    padding: 24px 16px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    min-height: 100px;
}

.install-step:hover .step-content {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.install-step .step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.install-step .step-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* OTİS Page Styles */
.otis-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.otis-intro-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.otis-intro-content h2 i {
    color: var(--primary);
}

.otis-intro-content>p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.otis-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ob-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    font-weight: 500;
}

.ob-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: #1e293b;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #0f172a;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #fbbf24;
}

.mockup-dots span:nth-child(3) {
    background: #22c55e;
}

.mockup-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.mockup-body {
    padding: 24px;
}

.mock-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    color: white;
}

.mock-stat i {
    font-size: 1.5rem;
    color: var(--accent);
}

.mock-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.mock-label {
    font-size: 0.85rem;
    opacity: 0.6;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    padding-top: 20px;
}

.chart-bar {
    flex: 1;
    background: rgba(14, 165, 233, 0.3);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
}

.chart-bar.active {
    background: var(--accent);
}

/* Panel Features */
.panel-features {
    margin-bottom: 60px;
}

.panel-features h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.panel-features h2 i {
    color: var(--primary);
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pf-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.pf-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pf-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.pf-card h4 {
    margin-bottom: 8px;
}

.pf-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Smart Service Benefits */
.smart-service-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ssb-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: var(--radius-lg);
}

.ssb-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e53935, #c62828);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ssb-content h4 {
    margin-bottom: 4px;
    color: #c62828;
}

.ssb-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Live Stats */
.live-stats-section {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.live-stats-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.live-stats-section h2 i {
    color: var(--primary);
}

.live-stats-section>p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.live-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.live-stat {
    padding: 32px;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
}

.ls-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.ls-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.ls-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

.ls-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}

.ls-indicator.active {
    background: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.cc-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cc-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.cc-content a,
.cc-content p {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cc-content a:hover {
    color: var(--primary);
}

.social-links h4 {
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form label i {
    color: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.btn-full {
    width: 100%;
}

.map-section {
    margin-top: 60px;
}

.map-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.map-section h2 i {
    color: var(--primary);
}

.map-container {
    height: 400px;
    background: var(--bg-gray);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
    color: var(--primary);
}

/* FAQ Page */
.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-gray);
}

.faq-icon {
    width: 44px;
    height: 44px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px 84px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 500;
}

.still-questions {
    text-align: center;
    padding: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    color: white;
}

.sq-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.still-questions h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.still-questions p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.still-questions .btn-primary {
    background: white;
    color: var(--primary);
}

/* Blog Styles */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 60px;
}

.fp-image {
    position: relative;
    height: 400px;
}

.fp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.fp-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fp-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.fp-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.fp-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bc-image {
    position: relative;
    height: 200px;
}

.bc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-category {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bc-content {
    padding: 24px;
}

.bc-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.bc-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.bc-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.bc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.bc-link:hover {
    gap: 12px;
}

.blog-newsletter {
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.bn-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.blog-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.blog-newsletter>p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    outline: none;
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
}

/* Article Page */
.article-hero {
    position: relative;
    padding: 200px 0 100px;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.article-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.95));
}

.article-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    transition: var(--transition);
}

.back-link:hover {
    color: white;
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.article-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.article-content {
    max-width: 800px;
    margin: 0 auto 40px;
    background: white;
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.article-content .lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
}

.article-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content blockquote {
    position: relative;
    padding: 32px 32px 32px 80px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: var(--radius-lg);
    margin: 32px 0;
}

.article-content blockquote i {
    position: absolute;
    left: 24px;
    top: 24px;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.article-content blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

.article-list {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.article-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-gray);
}

.article-list li i {
    color: var(--primary);
}

.article-highlight {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
    margin: 32px 0;
}

.ah-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.ah-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.ah-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.article-share {
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-share span {
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.related-posts {
    max-width: 800px;
    margin: 0 auto;
}

.related-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.rc-content {
    padding: 16px;
}

.rc-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.rc-content h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-dark);
}

/* Locations Page */
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.map-interactive {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
}

.map-legend {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.active {
    background: var(--accent);
}

.legend-dot.service {
    background: #f59e0b;
}

.turkey-map {
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    position: relative;
}

.map-pins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.city-pin {
    position: absolute;
    cursor: pointer;
}

.pin-marker {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.city-pin:hover .pin-marker,
.city-pin.hover .pin-marker {
    transform: scale(1.3);
}

.pin-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 12px 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.city-pin:hover .pin-tooltip,
.city-pin.hover .pin-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pin-tooltip strong {
    display: block;
    margin-bottom: 4px;
}

.pin-tooltip span {
    font-size: 0.85rem;
    color: var(--primary);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.city-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.city-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.city-card h4 {
    margin-bottom: 8px;
}

.city-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.city-count {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.expansion-info {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    align-items: center;
}

.exp-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.expansion-info h3 {
    margin-bottom: 8px;
}

.expansion-info p {
    color: var(--text-muted);
    margin: 0;
}

/* Service Tab Styles */
.service-intro {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.service-intro h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.service-intro h2 i {
    color: var(--primary);
}

.service-intro p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.service-centers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.sc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sc-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.sc-header h4 {
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.sc-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-processes {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.service-processes h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.service-processes h3 i {
    color: var(--primary);
}

.sp-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-gray);
    border-radius: 50px;
    font-weight: 500;
}

.sp-item i {
    color: var(--primary);
}

.sp-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sp-note i {
    color: var(--primary);
}

/* Dealer Pages */
.who-can-apply,
.application-process {
    margin-bottom: 60px;
}

.who-can-apply h2,
.application-process h2,
.application-form-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.who-can-apply h2 i,
.application-process h2 i,
.application-form-section h2 i {
    color: var(--primary);
}

.applicant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.applicant-card {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.applicant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ac-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.applicant-card h4 {
    margin-bottom: 8px;
}

.applicant-card p {
    color: var(--text-muted);
    margin: 0;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 70px;
    right: 70px;
    height: 3px;
    background: #e5e7eb;
}

.process-connector {
    flex: 1;
    height: 3px;
    background: #e5e7eb;
    margin-top: 60px;
    display: none;
}

.process-step {
    position: relative;
    text-align: center;
    width: 140px;
}

.ps-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.process-step.final .ps-number {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.ps-content h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.ps-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ps-icon {
    margin-top: 16px;
    color: var(--primary);
    font-size: 1.5rem;
}

.application-form-section {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.dealer-form .form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
}

.dealer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dealer-form .form-group {
    margin-bottom: 20px;
}

.dealer-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.dealer-form input,
.dealer-form select,
.dealer-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.dealer-form input:focus,
.dealer-form select:focus,
.dealer-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.form-checkbox a {
    color: var(--primary);
    font-weight: 500;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Conditions Page */
.conditions-intro {
    margin-bottom: 60px;
}

.conditions-intro h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.conditions-intro h2 i {
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.benefit-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bc-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h4 {
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: var(--radius-md);
}

.req-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.partnership-section {
    margin-bottom: 60px;
}

.partnership-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    margin-bottom: 32px;
    text-align: center;
    justify-content: center;
}

.partnership-section h2 i {
    color: var(--primary);
}

.partnership-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.partner-card {
    flex: 1;
    max-width: 350px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.partner-card.sulook {
    background: var(--gradient-primary);
    color: white;
}

.pc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pc-header i {
    font-size: 1.5rem;
}

.partner-card ul {
    list-style: none;
    padding: 0;
}

.partner-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-card.sulook li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.partner-card li:last-child {
    border-bottom: none;
}

.partner-card li i {
    font-size: 0.8rem;
    opacity: 0.6;
}

.partner-divider {
    width: 50px;
    height: 50px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.conditions-cta {
    text-align: center;
}

.cta-card {
    display: inline-block;
    padding: 48px 80px;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    color: white;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-card p {
    opacity: 0.8;
    margin-bottom: 24px;
}

/* Responsive for new pages */
@media (max-width: 1024px) {

    .otomat-showcase,
    .otis-intro,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .filtration-grid,
    .sensor-grid,
    .bm-grid,
    .pf-grid,
    .live-stats-grid,
    .blog-grid,
    .cities-grid,
    .service-centers-grid,
    .applicant-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .fp-image {
        height: 250px;
    }

    .fp-content {
        padding: 32px;
    }

    .install-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .install-timeline::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .install-step {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .step-number {
        margin: 0;
    }

    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .process-step {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        width: 100%;
    }

    .ps-number {
        margin: 0;
        flex-shrink: 0;
    }

    .ps-icon {
        display: none;
    }

    .partnership-grid {
        flex-direction: column;
    }

    .partner-card {
        max-width: 100%;
        width: 100%;
    }

    .partner-divider {
        transform: rotate(90deg);
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .filtration-grid,
    .sensor-grid,
    .bm-grid,
    .pf-grid,
    .live-stats-grid,
    .blog-grid,
    .cities-grid,
    .service-centers-grid,
    .applicant-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .location-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .dealer-form .form-row,
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .article-content {
        padding: 32px;
    }

    .article-hero-content h1 {
        font-size: 1.8rem;
    }

    .otomat-showcase,
    .business-model,
    .installation-section,
    .application-form-section {
        padding: 32px;
    }
}

/* ============================================
   MODERN DESIGN SYSTEM - 2026 UPDATE
   ============================================ */

/* Modern Page Hero */
.page-hero-modern {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(229, 57, 53, 0.1) 0%, transparent 40%);
}

.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    /* No auto animation - will be controlled by JS scroll parallax */
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Two larger circles side by side at the bottom */
.shape-1 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    left: 15%;
}

.shape-2 {
    width: 260px;
    height: 260px;
    bottom: -60px;
    right: 15%;
}

/* Smaller circle on top */
.shape-3 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.12);
}

/* Mobile adjustments for shapes */
@media (max-width: 768px) {
    .shape-1 {
        width: 180px;
        height: 180px;
        left: 5%;
        bottom: -40px;
    }

    .shape-2 {
        width: 160px;
        height: 160px;
        right: 5%;
        bottom: -30px;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
        top: 25%;
    }

    .shape-4,
    .shape-5,
    .shape-6 {
        width: 60px;
        height: 60px;
    }
}

/* New shapes - shape-4, shape-5, shape-6 */
.shape-4 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 8%;
    background: rgba(255, 255, 255, 0.08);
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 8%;
    background: rgba(255, 255, 255, 0.1);
}

.shape-6 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 35%;
    background: rgba(56, 189, 248, 0.15);
}

/* Additional shapes for richer visual effect (7-15) */
.shape-7 {
    width: 40px;
    height: 40px;
    top: 15%;
    left: 25%;
    background: rgba(255, 255, 255, 0.06);
}

.shape-8 {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 25%;
    background: rgba(255, 255, 255, 0.07);
}

.shape-9 {
    width: 50px;
    height: 50px;
    top: 45%;
    left: 45%;
    background: rgba(56, 189, 248, 0.1);
}

.shape-10 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    right: 35%;
    background: rgba(255, 255, 255, 0.08);
}

.shape-11 {
    width: 35px;
    height: 35px;
    top: 25%;
    right: 20%;
    background: rgba(6, 182, 212, 0.12);
}

.shape-12 {
    width: 55px;
    height: 55px;
    bottom: 45%;
    left: 12%;
    background: rgba(255, 255, 255, 0.06);
}

.shape-13 {
    width: 45px;
    height: 45px;
    top: 55%;
    left: 60%;
    background: rgba(56, 189, 248, 0.08);
}

.shape-14 {
    width: 65px;
    height: 65px;
    bottom: 25%;
    right: 10%;
    background: rgba(255, 255, 255, 0.09);
}

.shape-15 {
    width: 30px;
    height: 30px;
    top: 35%;
    left: 70%;
    background: rgba(6, 182, 212, 0.1);
}

/* Mobile adjustments for new shapes */
@media (max-width: 768px) {

    .shape-7,
    .shape-8,
    .shape-9,
    .shape-10,
    .shape-11,
    .shape-12,
    .shape-13,
    .shape-14,
    .shape-15 {
        transform: scale(0.6);
    }
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.page-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-title-modern .gradient-text {
    background: linear-gradient(135deg, #7dd3fc, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-desc-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Modern Content Section */
.content-section-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* About Intro Modern */
.about-intro-modern {
    max-width: 800px;
    margin: 40px auto 60px;
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: visible;
}

.intro-quote-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.35);
    z-index: 10;
}

.intro-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
}

/* Section Header Modern */
.section-header-modern {
    text-align: center;
    margin-bottom: 50px;
}

.section-icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-lead {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards Modern */
.content-block-modern {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 60px 0;
}

.feature-cards-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.fc-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card-modern:hover .fc-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.feature-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card-modern p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Eco Section Modern */
.eco-section-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: var(--radius-xl);
    margin-bottom: 80px;
}

.eco-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.eco-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.eco-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.eco-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.eco-stats-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eco-stat-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.eco-stat-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(8px);
}

.eco-stat-modern i {
    font-size: 1.3rem;
    color: white;
}

.eco-stat-modern span {
    color: white;
    font-weight: 500;
}

.eco-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-circle {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    animation: pulse 3s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Vision Mission Modern */
.vm-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card-modern {
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.vm-card-modern.vision {
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
}

.vm-card-modern.mission {
    background: linear-gradient(135deg, #0369a1, #0ea5e9);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 24px;
}

.vm-card-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.vm-card-modern p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* CTA Modern */
.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(229, 57, 53, 0.1) 0%, transparent 50%);
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content-modern h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content-modern p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer Modern */
.footer-modern {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    padding: 80px 0 40px;
}

.footer-modern .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-modern .footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.footer-modern .footer-brand .logo img {
    height: 50px;
}

.footer-modern .footer-links h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-modern .footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-modern .footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-modern .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-modern .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FORM STYLES - FIXED
   ============================================ */

.contact-form .form-group,
.dealer-form .form-group {
    margin-bottom: 24px;
}

.contact-form label,
.dealer-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-form label i,
.dealer-form label i {
    margin-right: 8px;
    color: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.dealer-form input,
.dealer-form select,
.dealer-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: var(--transition);
    color: var(--text-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.dealer-form input::placeholder,
.dealer-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.dealer-form input:focus,
.dealer-form select:focus,
.dealer-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.contact-form .form-row,
.dealer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-full {
    width: 100%;
}

/* Contact Form Wrapper Modern */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Contact Info Modern */
.contact-info {
    padding: 50px;
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
    border-radius: var(--radius-xl);
    color: white;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.cc-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cc-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cc-content a,
.cc-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.cc-content a:hover {
    color: white;
}

.social-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* ============================================
   TÜRKİYE HARİTASI - INTERACTIVE SVG MAP
   ============================================ */

.map-section-modern {
    margin-bottom: 60px;
}

.map-section-modern h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.turkey-map-container {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.map-legend {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.sales {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.legend-dot.service {
    background: #f59e0b;
    box-shadow: 0 0 10px #f59e0b;
}

.turkey-map-svg {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    position: relative;
}

.turkey-map-svg svg {
    width: 100%;
    height: auto;
}

.turkey-map-svg path {
    fill: #334155;
    stroke: #475569;
    stroke-width: 0.5;
    transition: var(--transition);
}

.turkey-map-svg path:hover {
    fill: #475569;
}

.turkey-map-svg path.active {
    fill: var(--primary);
    stroke: var(--primary-light);
}

.city-marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary), 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: markerPulse 2s infinite;
}

.marker-dot.service {
    background: #f59e0b;
    box-shadow: 0 0 15px #f59e0b, 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes markerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.city-marker:hover .marker-dot {
    transform: scale(1.5);
}

.marker-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 16px;
    background: white;
    color: var(--text-dark);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.city-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Cities Grid Modern */
.cities-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.city-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.city-card-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.city-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.city-info h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.city-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Blog Detail Hero Fix */
.article-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%);
    position: relative;
}

.article-hero-content {
    position: relative;
    z-index: 2;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.article-category,
.article-date,
.article-read-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.article-category {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Article Section Spacing Fix */
.article-section {
    padding: 60px 0;
    background: var(--bg-gray);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.article-content {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.article-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 50px;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 24px;
}

.article-body li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.article-body blockquote {
    padding: 30px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(6, 182, 212, 0.1));
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    margin: 30px 0;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.article-body blockquote i {
    color: var(--primary);
    margin-right: 10px;
}

.article-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.article-stat {
    text-align: center;
    padding: 25px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.as-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.as-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Article Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 50px;
    border-top: 1px solid #e5e7eb;
}

.article-share span {
    font-weight: 600;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.facebook {
    background: #4267B2;
}

.share-btn.linkedin {
    background: #0077B5;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 50px;
    background: var(--bg-gray);
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h4 i {
    color: var(--red-accent);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-post {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.popular-post:hover {
    background: var(--bg-gray);
}

.pp-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
}

.pp-title {
    font-weight: 500;
    color: var(--text-dark);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-tag {
    padding: 8px 16px;
    background: var(--bg-gray);
    color: var(--text-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cat-tag:hover {
    background: var(--primary);
    color: white;
}

.sidebar-cta {
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
}

.sidebar-cta i {
    font-size: 2rem;
    margin-bottom: 16px;
}

.sidebar-cta h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-posts h3 i {
    color: var(--primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Red Accent Usage */
.accent-red {
    color: var(--red-accent);
}

.bg-red-light {
    background: var(--red-light);
}

.btn-red {
    background: var(--gradient-red);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.35);
}

.btn-red:hover {
    background: linear-gradient(135deg, #c62828, #b71c1c);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 57, 53, 0.5);
}

/* Red Gradient Text */
.gradient-text-red {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Red Border Accent */
.border-red {
    border-left: 4px solid var(--red-accent);
}

/* Red Icon Box */
.icon-box-red {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.35);
}

/* Tab Content Fix */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modern */
@media (max-width: 1024px) {
    .page-title-modern {
        font-size: 2.5rem;
    }

    .feature-cards-modern,
    .vm-grid-modern {
        grid-template-columns: 1fr;
    }

    .eco-section-modern {
        grid-template-columns: 1fr;
    }

    .eco-visual {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        order: 2;
    }

    .cities-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-modern .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-modern {
        padding: 120px 0 60px;
    }

    .page-title-modern {
        font-size: 2rem;
    }

    .page-desc-modern {
        font-size: 1rem;
    }

    .about-intro-modern {
        padding: 40px 25px;
    }

    .intro-quote {
        font-size: 1.2rem;
    }

    .eco-section-modern {
        padding: 40px 25px;
    }

    .vm-card-modern {
        padding: 35px 25px;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 35px 25px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-body {
        padding: 30px;
    }

    .article-stats-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid-modern {
        grid-template-columns: 1fr;
    }

    .footer-modern .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-content-modern h2 {
        font-size: 2rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CUSTOM CURSOR - Only for index.html
   ============================================ */
body.has-custom-cursor {
    cursor: none;
}

body.has-custom-cursor button,
body.has-custom-cursor a,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea {
    cursor: none;
}

/* ============================================
   FORM FIX - No floating labels
   ============================================ */
.contact-form .form-group,
.dealer-form .form-group {
    position: relative;
    margin-bottom: 24px;
}

.contact-form label,
.dealer-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.dealer-form input,
.dealer-form select,
.dealer-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: var(--transition);
    color: var(--text-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.dealer-form input::placeholder,
.dealer-form textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* ============================================
   3D TURKEY MAP STYLES
   ============================================ */
.map-3d-container {
    position: relative;
    perspective: 1000px;
    margin: 40px 0;
}

.turkey-map-3d {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #0c1929 0%, #1a365d 50%, #0c1929 100%);
    padding: 40px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        inset 0 0 100px rgba(56, 189, 248, 0.1);
    transform: rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.turkey-map-3d:hover {
    transform: rotateX(0deg);
}

.turkey-map-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.turkey-map-3d:hover .turkey-map-image {
    transform: translateZ(20px) scale(1.02);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

/* City markers on 3D map */
.map-markers-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.city-marker-3d {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    z-index: 10;
}

.city-marker-3d .marker-pin {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.5);
    animation: markerGlow 2s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.city-marker-3d:hover .marker-pin {
    transform: scale(1.5);
}

.city-marker-3d .marker-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: var(--shadow-md);
}

.city-marker-3d:hover .marker-label {
    opacity: 1;
    visibility: visible;
}

@keyframes markerGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(56, 189, 248, 0.5);
    }

    50% {
        box-shadow: 0 4px 25px rgba(56, 189, 248, 0.8), 0 0 40px rgba(56, 189, 248, 0.4);
    }
}

/* Map legend */
.map-legend-3d {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.legend-item-3d {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-dot-3d {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
}

.legend-dot-3d.sales {
    background: var(--primary);
    box-shadow: 0 2px 10px rgba(56, 189, 248, 0.5);
}

.legend-dot-3d.service {
    background: #22c55e;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.5);
}

.legend-label-3d {
    color: var(--text-gray);
    font-weight: 500;
}

/* ============================================
   IMAGE GALLERY / PLACEHOLDER SECTIONS
   ============================================ */
.image-gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.gallery-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1e3a5f 0%, #0c1929 100%);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.gallery-label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.gallery-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Image Placeholder Box */
.image-placeholder-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #0c1929 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 2px dashed rgba(56, 189, 248, 0.3);
}

.image-placeholder-box i {
    font-size: 4rem;
    color: rgba(56, 189, 248, 0.4);
    margin-bottom: 16px;
}

.image-placeholder-box span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

/* Featured Gallery (larger first item) */
.gallery-grid.featured .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

/* Dealer showcase */
.dealer-showcase {
    padding: 80px 0;
    background: var(--bg-light);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.showcase-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1e3a5f 0%, #0c1929 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.showcase-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.showcase-card .card-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.showcase-card .card-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Factory/Production images section */
.factory-gallery {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.factory-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.factory-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1e3a5f 0%, #0c1929 100%);
}

.factory-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factory-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.factory-item {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #0c1929 100%);
}

.factory-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid.featured .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .factory-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .gallery-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid.featured .gallery-item:first-child {
        grid-column: span 1;
    }

    .map-legend-3d {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* ============================================
   V2 MAP SECTION - SVG Based Turkey Map
   ============================================ */
.map-section-v2 {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.turkey-svg-container {
    background: linear-gradient(135deg, #0c1929 0%, #1a365d 50%, #0c1929 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.turkey-svg-map {
    width: 100%;
    height: auto;
    max-height: 500px;
}

.turkey-path {
    transition: all 0.5s ease;
}

.turkey-svg-container:hover .turkey-path {
    fill: url(#turkeyGrad);
    filter: url(#mapShadow) drop-shadow(0 0 30px rgba(56, 189, 248, 0.3));
}

.city-marker-svg {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.city-marker-svg:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px currentColor);
}

.city-marker-svg.active {
    transform: scale(1.3);
}

/* Static markers - stable hover experience */
.city-marker-svg circle:first-child {
    opacity: 1;
}

/* City Tooltip */
.city-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.city-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.city-tooltip h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #38bdf8;
}

.city-tooltip p {
    margin: 0;
    opacity: 0.8;
}

.map-legend-v2 {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
    padding: 16px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 20;
}

.legend-item-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.legend-dot-v2 {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
}

.legend-dot-v2.primary {
    background: #38bdf8;
}

.legend-dot-v2.accent {
    background: #e53935;
}

.legend-dot-v2.service {
    background: #22c55e;
}

/* V2 Cities Grid - Modern Cards with Visible Text */
.cities-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.city-card-v2 {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.city-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.city-card-v2.highlighted {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
    border: 2px solid var(--primary);
    animation: cardPulse 0.5s ease-in-out;
}

@keyframes cardPulse {

    0%,
    100% {
        transform: translateY(-8px) scale(1.02);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.city-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.city-card-v2:hover::before {
    width: 8px;
}

.city-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.city-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.city-card-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.city-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--red-accent), #f87171);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}

/* ============================================
   V2 GALLERY - Masonry Style
   ============================================ */
.gallery-section-v2 {
    padding: 80px 0;
    background: white;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #0c1929 100%);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card.featured {
    min-height: 350px;
}

.gallery-card:not(.featured):not(.placeholder-card) {
    min-height: 200px;
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.gallery-tag {
    display: inline-block;
    background: var(--red-accent);
    color: white;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-card-overlay h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.gallery-card-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Placeholder Cards */
.placeholder-card {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(56, 189, 248, 0.3);
}

.placeholder-content {
    text-align: center;
    color: rgba(56, 189, 248, 0.5);
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}

.placeholder-content span {
    font-size: 0.9rem;
}

/* ============================================
   V2 SERVICE TIMELINE
   ============================================ */
.service-section-v2 {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 50px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--primary);
}

.timeline-item.completed .timeline-number {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-color: #22c55e;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.timeline-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #22c55e);
    margin: 0 5px;
    margin-bottom: 70px;
}

/* ============================================
   CONTACT METHOD FIX - Icon Alignment
   ============================================ */
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.method-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-method>div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-method strong {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method span {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   POPUP PARALLAX FADE
   ============================================ */
.fill-success-popup {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fill-success-popup.fade-parallax {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
    pointer-events: none;
}

/* Responsive V2 */
@media (max-width: 992px) {
    .cities-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry .gallery-column:last-child {
        display: none;
    }

    .service-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }

    .map-legend-v2 {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .cities-grid-v2 {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-masonry .gallery-column:nth-child(2) {
        display: none;
    }

    .turkey-svg-container {
        padding: 20px;
    }
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    transform: translateY(-30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0) scale(1);
}

.search-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close-btn:hover {
    background: var(--red-accent);
    transform: rotate(90deg);
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.search-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    margin-right: 16px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 1.3rem;
    color: white;
    outline: none;
    font-family: inherit;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-shortcut {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.search-results {
    margin-top: 24px;
}

.search-quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-links-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(56, 189, 248, 0.2);
    transform: translateX(10px);
}

.quick-link i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* ============================================
   POPUP CENTERED & PARALLAX FIX
   ============================================ */
.fill-complete-message {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.8) !important;
    z-index: 1000;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fill-complete-message.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) !important;
}

.fill-complete-message i {
    font-size: 1.5rem;
}

/* ============================================
   3D HORIZONTAL GALLERY (Like reference image)
   ============================================ */
.gallery-3d-section {
    padding: 100px 0;
    background: #0a0a0a;
    overflow: hidden;
}

.gallery-3d-container {
    position: relative;
    height: 500px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-3d-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform-style: preserve-3d;
}

.gallery-3d-card {
    width: 280px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.gallery-3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-3d-card:hover img {
    transform: scale(1.1);
}

.gallery-3d-card:nth-child(1) {
    transform: translateX(-40px) rotateY(15deg) scale(0.85);
    opacity: 0.6;
}

.gallery-3d-card:nth-child(2) {
    transform: translateX(-20px) rotateY(8deg) scale(0.92);
    opacity: 0.8;
}

.gallery-3d-card:nth-child(3) {
    transform: translateZ(50px) scale(1.05);
    z-index: 10;
}

.gallery-3d-card:nth-child(4) {
    transform: translateX(20px) rotateY(-8deg) scale(0.92);
    opacity: 0.8;
}

.gallery-3d-card:nth-child(5) {
    transform: translateX(40px) rotateY(-15deg) scale(0.85);
    opacity: 0.6;
}

.gallery-3d-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
}

.gallery-3d-card-overlay h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-3d-card-overlay p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.gallery-3d-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.gallery-3d-nav button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-3d-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Responsive 3D Gallery */
@media (max-width: 992px) {
    .gallery-3d-container {
        height: 400px;
    }

    .gallery-3d-card {
        width: 220px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .gallery-3d-track {
        gap: 15px;
    }

    .gallery-3d-card {
        width: 180px;
        height: 250px;
    }

    .gallery-3d-card:nth-child(1),
    .gallery-3d-card:nth-child(5) {
        display: none;
    }
}

/* ============================================
   PREMIUM INTERACTIVE INTRO BLOCK
   ============================================ */
.intro-block-modern {
    position: relative;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 24px;
    padding: 50px 60px;
    margin: 0 0 80px 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.intro-block-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 24px 0 0 24px;
}

.intro-block-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.3);
}

.intro-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.intro-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.intro-icon-box {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.35);
}

.icon-glow {
    display: none;
}

.intro-content-modern h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.intro-content-modern p {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
}

.intro-accent {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6rem;
    color: rgba(56, 189, 248, 0.06);
    pointer-events: none;
}

@media (max-width: 768px) {
    .intro-block-modern {
        padding: 30px;
    }

    .intro-flex {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .intro-accent {
        display: none;
    }

    .intro-content-modern p {
        font-size: 1rem;
    }
}


/* ============================================
   DRIBBBLE STYLE 3D ROTATING CAROUSEL
   ============================================ */
.dribbble-gallery-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
}

.dribbble-gallery-wrapper {
    width: 100%;
    min-height: 600px;
    padding: 80px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.dribbble-gallery-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(30, 30, 30, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

/* 3D Scene Container */
.carousel-3d-container {
    width: 100%;
    height: 520px;
    position: relative;
    perspective: 1200px;
    perspective-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* The track - centered reference point */
.carousel-3d-track {
    position: relative;
    width: 320px;
    height: 450px;
    transform-style: preserve-3d;
    cursor: grab;
}

.carousel-3d-track.dragging {
    cursor: grabbing;
}

/* Individual Cards - Base styles (main positioning via JS) */
.carousel-3d-card {
    background: #1a1a1a;
    backface-visibility: hidden;
}

.carousel-3d-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.carousel-3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Overlay - Text at bottom */
.carousel-3d-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    z-index: 2;
}

.carousel-3d-card-overlay h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.carousel-3d-card-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.carousel-3d-card-overlay p i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Navigation */
.carousel-3d-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.carousel-3d-nav button {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-3d-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

/* Indicators */
.carousel-3d-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-indicator.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-3d-container {
        height: 420px;
    }

    .carousel-3d-track,
    .carousel-3d-card {
        width: 260px;
        height: 380px;
    }

    .carousel-3d-card-overlay h4 {
        font-size: 1.2rem;
    }
}

/* Investment & Applicants Grid Styles */
.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.applicants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .investment-grid,
    .applicants-grid {
        grid-template-columns: 1fr;
    }
}

.investment-card,
.applicant-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.investment-card:hover,
.applicant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.inv-icon,
.app-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(6, 182, 212, 0.1));
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.investment-card h4,
.applicant-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.investment-card p,
.applicant-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   MODERN INVESTMENT TIMELINE
   ============================================ */
.investment-section-modern {
    padding: 80px 0;
    margin: 60px 0;
}

.investment-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.investment-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    border-radius: 2px;
}

.inv-step {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.inv-step:hover .step-number {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 25px 60px rgba(56, 189, 248, 0.5);
}

.step-content {
    margin-top: 30px;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.inv-step:hover .step-content {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(6, 182, 212, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .investment-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .investment-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .investment-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

/* ============================================
   REALISTIC TURKEY SVG MAP STYLES
   ============================================ */
.turkey-svg-container-realistic {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0f172a 100%);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    overflow: visible;
}

.turkey-svg-container-realistic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.turkey-map-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* External SVG Map - Object Element */
.turkey-base-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Markers Overlay - Positioned over base map */
.turkey-markers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.turkey-markers-overlay .city-marker-realistic {
    pointer-events: all;
}

.turkey-realistic-map {
    width: 100%;
    height: auto;
    max-height: 450px;
    display: block;
}

/* Province Styling */
.turkey-provinces .province {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.turkey-provinces .province:hover,
.turkey-provinces .province.active-province:hover {
    fill: url(#provinceHover);
    stroke: #fff;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.5));
    transform: translateY(-2px);
}

.turkey-provinces .headquarters-province {
    fill: rgba(229, 57, 53, 0.3);
    stroke: #e53935;
    stroke-width: 1.2;
}

.turkey-provinces .headquarters-province:hover {
    fill: rgba(229, 57, 53, 0.5);
    stroke: #fff;
    filter: drop-shadow(0 0 25px rgba(229, 57, 53, 0.6));
}

.turkey-provinces .service-province {
    fill: rgba(34, 197, 94, 0.25);
    stroke: #22c55e;
    stroke-width: 1.2;
}

.turkey-provinces .service-province:hover {
    fill: rgba(34, 197, 94, 0.45);
    stroke: #fff;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.5));
}

/* City Marker Styles */
.city-marker-realistic {
    cursor: pointer;
    transition: filter 0.3s ease;
}

.city-marker-realistic:hover {
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.8)) brightness(1.2);
}

.city-marker-realistic.headquarters:hover {
    filter: drop-shadow(0 0 25px rgba(229, 57, 53, 0.9)) brightness(1.2);
}

.city-marker-realistic.service:hover {
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.8)) brightness(1.2);
}

/* Marker Label */
.marker-label {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

/* Pulse Animation for Markers */
.marker-pulse {
    animation: markerPulse 2s ease-in-out infinite;
}

.marker-pulse-hq {
    animation: markerPulseHQ 2s ease-in-out infinite;
}

.marker-pulse-service {
    animation: markerPulseService 2s ease-in-out infinite;
}

@keyframes markerPulse {

    0%,
    100% {
        r: 12;
        opacity: 0.5;
    }

    50% {
        r: 18;
        opacity: 0;
    }
}

@keyframes markerPulseHQ {

    0%,
    100% {
        r: 16;
        opacity: 0.5;
    }

    50% {
        r: 24;
        opacity: 0;
    }
}

@keyframes markerPulseService {

    0%,
    100% {
        r: 12;
        opacity: 0.5;
    }

    50% {
        r: 18;
        opacity: 0;
    }
}

/* Map Tooltip */
.map-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    min-width: 180px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.3);
    backdrop-filter: blur(10px);
}

.map-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-tooltip .tooltip-city {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #38bdf8;
}

.map-tooltip .tooltip-info {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Responsive Map Styles */
@media (max-width: 992px) {
    .turkey-svg-container-realistic {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .turkey-realistic-map {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .turkey-svg-container-realistic {
        padding: 20px 15px;
        margin-bottom: 40px;
    }

    .turkey-realistic-map {
        max-height: 280px;
    }

    .marker-label {
        font-size: 9px !important;
    }

    .map-legend-v2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .turkey-realistic-map {
        max-height: 220px;
    }

    /* Keep labels visible but very small on mobile */
    .city-marker-realistic .marker-label {
        font-size: 5px !important;
    }
}

/* ============================================
   REFERENCES SECTION - AUTO SCROLLING
   ============================================ */
.references-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
    overflow: hidden;
}

.references-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
}

/* Fade masks at screen edges */
.references-slider::before,
.references-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.references-slider::before {
    left: 0;
    background: linear-gradient(to right, #e0f2fe 0%, #e0f2fe 20%, transparent 100%);
}

.references-slider::after {
    right: 0;
    background: linear-gradient(to left, #e0f2fe 0%, #e0f2fe 20%, transparent 100%);
}

/* Scrollable Track - Like Gallery Carousel */
.references-track {
    display: flex;
    gap: 24px;
    padding: 20px 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    will-change: scroll-position;
    transform: translateZ(0);
    backface-visibility: hidden;
    width: 100%;
    min-width: 100%;
}

.references-track::-webkit-scrollbar {
    display: none;
}

.references-track:active {
    cursor: grabbing;
}

.references-track.is-dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
}

/* Auto-scroll is now handled by JavaScript only via scrollLeft property with momentum */
/* CSS animation was disabled to prevent conflicts with JS-based scrolling */

.reference-logo {
    flex-shrink: 0;
    min-width: 140px;
    padding: 20px 28px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reference-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
    border-color: var(--primary);
}

.reference-logo span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

/* ============================================
   CUSTOMER REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.reviews-section .section-header {
    position: relative;
    z-index: 1;
}

.reviews-section .section-title {
    color: white;
}

.reviews-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(14, 165, 233, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-avatar i {
    font-size: 1.5rem;
    color: white;
}

.reviewer-info h4 {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.reviewer-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.reviewer-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviewer-location i {
    font-size: 0.75rem;
    color: var(--red-accent);
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-date i {
    font-size: 0.75rem;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .review-card {
        padding: 24px;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }

    .review-text {
        font-size: 0.95rem;
    }
}

/* ============================================
   DAMACANA SECTION FIXES - TEXT OVERLAP
   ============================================ */
.water-fill-section {
    padding: 100px 0;
    position: relative;
}

.damacana-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    min-height: 500px;
}

.damacana-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 200px;
}

.stat-box {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.stat-box.visible {
    opacity: 1;
    transform: translateX(0);
}

.right-stats .stat-box {
    transform: translateX(30px);
}

.right-stats .stat-box.visible {
    transform: translateX(0);
}

.stat-box i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.damacana-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .damacana-wrapper {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }

    .damacana-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        flex: none;
        width: 100%;
    }

    .stat-box {
        flex: 0 0 calc(33.333% - 12px);
        min-width: 150px;
        padding: 12px 14px;
        transform: translateY(20px);
    }

    .stat-box.visible {
        transform: translateY(0);
    }

    .right-stats .stat-box {
        transform: translateY(20px);
    }

    .right-stats .stat-box.visible {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .water-fill-section {
        padding: 60px 0;
    }

    .damacana-wrapper {
        gap: 30px;
    }

    .damacana-stats {
        gap: 10px;
    }

    .stat-box {
        flex: 0 0 calc(50% - 8px);
        min-width: 140px;
        padding: 10px 12px;
    }

    .stat-box i {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
    }

    .stat-value {
        font-size: 0.95rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* Fill Complete Popup - 2 second timeout handled in JS */
.fill-complete-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 24px 48px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.4);
}

.fill-complete-message.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.fill-complete-message i {
    font-size: 1.8rem;
}

/* ============================================
   MAP LABEL SIZE INCREASE & POSITION FIX
   ============================================ */
.map-section-v2 {
    padding: 80px 0 100px;
}

.city-marker-realistic .marker-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.city-marker-realistic.headquarters .marker-label {
    font-size: 13px !important;
    font-weight: 700 !important;
}

.city-marker-realistic.capital .marker-label {
    font-size: 12px !important;
}

/* ============================================
   MOBILE OVERFLOW FIX - NO WHITE SPACE
   ============================================ */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        position: relative;
    }

    .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    section {
        overflow-x: hidden;
    }

    /* Prevent any element from causing horizontal scroll */
    * {
        max-width: 100%;
    }

    img,
    video,
    iframe,
    embed,
    object {
        max-width: 100%;
        height: auto;
    }
}

/* Form Button Fix - Align center */
.contact-form button[type='submit'],
.dealership-form button[type='submit'],
form button.btn-full,
form button.btn-primary {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
}


/* Contact Section Balance Fix */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-method {
    padding: 18px 20px;
}

/* Contact Form Button Spacing */
.contact-form button[type='submit'],
.contact-form-wrapper button[type='submit'] {
    margin-top: 24px;
}

