/* ============================================================
   RK OTOMOTİV - Ultra Premium Automotive Website
   Modern, Minimal, Glassmorphism Design
   ============================================================ */

/* ======================== CSS VARIABLES ======================== */
:root {
    /* Dark Theme (Default) — Black / Red / Gray */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.07);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-primary: #e63946;
    --accent-secondary: #ff6b6b;
    --accent-gradient: linear-gradient(135deg, #e63946 0%, #c41230 50%, #ff4757 100%);
    --accent-glow: rgba(230, 57, 70, 0.3);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-glass: rgba(255, 255, 255, 0.09);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.15);
    --overlay-dark: rgba(10, 10, 10, 0.88);
    --header-bg: rgba(10, 10, 10, 0.85);

    /* Typography — 20% larger */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
    --fs-xs: clamp(0.85rem, 1.6vw, 0.95rem);
    --fs-sm: clamp(0.95rem, 2vw, 1.08rem);
    --fs-base: clamp(1.05rem, 2.2vw, 1.2rem);
    --fs-md: clamp(1.2rem, 2.5vw, 1.35rem);
    --fs-lg: clamp(1.3rem, 2.8vw, 1.5rem);
    --fs-xl: clamp(1.55rem, 3.2vw, 1.8rem);
    --fs-2xl: clamp(1.9rem, 4.5vw, 2.4rem);
    --fs-3xl: clamp(2.4rem, 5.5vw, 3.3rem);
    --fs-4xl: clamp(3rem, 7vw, 4.2rem);
    --fs-hero: clamp(3.2rem, 8vw, 6rem);

    /* Spacing */
    --section-py: clamp(60px, 10vw, 120px);
    --container-px: clamp(16px, 4vw, 48px);
    --gap-sm: 0.5rem;
    --gap-md: 1rem;
    --gap-lg: 1.5rem;
    --gap-xl: 2rem;
    --gap-2xl: 3rem;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.6s;

    /* Z-index */
    --z-back: -1;
    --z-base: 1;
    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-cursor: 400;
    --z-preloader: 500;
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #f2f2f2;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e5e5e5;
    --bg-card: rgba(0, 0, 0, 0.02);
    --bg-glass: rgba(255, 255, 255, 0.75);
    --bg-glass-hover: rgba(255, 255, 255, 0.9);
    --text-primary: #1a1a1a;
    --text-secondary: rgba(26, 26, 26, 0.7);
    --text-muted: rgba(26, 26, 26, 0.4);
    --accent-glow: rgba(230, 57, 70, 0.12);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-glass: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.08);
    --overlay-dark: rgba(242, 242, 242, 0.92);
    --header-bg: rgba(255, 255, 255, 0.92);
}

/* Light mode: header always needs backdrop so text is readable */
[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Light mode: hamburger */
[data-theme="light"] .hamburger span {
    background: #1a1a1a;
}

/* Light mode: theme toggle icon color */
[data-theme="light"] .theme-toggle {
    color: #1a1a1a;
}

/* Light mode: hero text stays white (over dark image) */
[data-theme="light"] .hero-title {
    color: #fff;
}

[data-theme="light"] .hero-desc {
    color: rgba(255, 255, 255, 0.75);
}

[data-theme="light"] .hero-badge {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

/* Light mode: hero nav & pagination stay white */
[data-theme="light"] .hero-nav-btn {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

[data-theme="light"] .hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-primary);
}

/* Light mode: partners in hero */
[data-theme="light"] .partners-label {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .partner-logo {
    color: rgba(255, 255, 255, 0.45);
}

[data-theme="light"] .hero-partners {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* Light mode: hero buttons */
[data-theme="light"] .hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Light mode: scroll indicator */
[data-theme="light"] .scroll-mouse {
    border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .scroll-wheel {
    background: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.5);
}

/* Light mode: service card hover text stays white */
[data-theme="light"] .service-card:hover .service-title {
    color: #fff;
}

[data-theme="light"] .service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .service-card:hover .service-number {
    color: #fff;
}

/* Light mode: gallery caption stays white (over image) */
[data-theme="light"] .gallery-info h3,
[data-theme="light"] .gallery-info span {
    color: #fff;
}

/* Light mode: testimonial slider */
[data-theme="light"] .testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Light mode: CTA section stays dark */
[data-theme="light"] .cta-section {
    background: #1a1a1a;
}

[data-theme="light"] .cta-bg-gradient {
    background: linear-gradient(135deg, #1a0a0a 0%, #2a0f0f 30%, #0a0a0a 100%);
}

[data-theme="light"] .cta-title {
    color: #fff;
}

[data-theme="light"] .cta-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* Light mode: footer */
[data-theme="light"] .footer {
    background: #1a1a1a;
    border-top-color: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .footer-about p {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .footer-col h4 {
    color: #fff;
}

[data-theme="light"] .footer-col ul a,
[data-theme="light"] .footer-col ul span {
    color: rgba(255, 255, 255, 0.55);
}

[data-theme="light"] .footer-col ul a:hover {
    color: var(--accent-primary);
}

[data-theme="light"] .footer-contact-list li i {
    color: var(--accent-primary);
}

[data-theme="light"] .footer-socials a {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .footer-socials a:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

[data-theme="light"] .footer-logo .logo-text {
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
}

/* Light mode: mobile bottom CTA */
[data-theme="light"] .mobile-bottom-cta {
    background: rgba(255, 255, 255, 0.95);
    border-top-color: rgba(0, 0, 0, 0.08);
}

/* Light mode: back to top */
[data-theme="light"] .back-to-top {
    background: var(--accent-primary);
    color: #fff;
}

/* Light mode: insurance partners section */
[data-theme="light"] .insurance-section {
    background: #fff;
}

/* Light mode: contact form */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .form-group select {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

ul, ol {
    list-style: none;
}

::selection {
    background: var(--accent-primary);
    color: #fff;
}

/* ======================== PRELOADER ======================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-bar-inner {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    border-radius: 10px;
    animation: preloaderLoad 2s var(--ease-out) forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes preloaderLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ======================== CUSTOM CURSOR ======================== */
.custom-cursor,
.custom-cursor-follower {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .custom-cursor {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--accent-primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: var(--z-cursor);
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
        mix-blend-mode: difference;
    }

    .custom-cursor-follower {
        display: block;
        position: fixed;
        width: 35px;
        height: 35px;
        border: 1.5px solid var(--accent-primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: var(--z-cursor);
        transform: translate(-50%, -50%);
        transition: transform 0.25s var(--ease-out), width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
        opacity: 0.5;
    }

    .custom-cursor.hover {
        width: 40px;
        height: 40px;
        background: rgba(230, 57, 70, 0.15);
        border: 1px solid var(--accent-primary);
    }

    .custom-cursor-follower.hover {
        width: 60px;
        height: 60px;
        opacity: 0.3;
    }

    body {
        cursor: none;
    }

    a, button, input, textarea, select, .service-card, .gallery-item {
        cursor: none;
    }
}

/* ======================== SCROLL PROGRESS ======================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent-gradient);
    z-index: calc(var(--z-header) + 1);
    transition: width 0.1s linear;
}

/* ======================== PARTICLES BG ======================== */
#particles-bg {
    position: fixed;
    inset: 0;
    z-index: var(--z-back);
    pointer-events: none;
    opacity: 0.3;
}

/* ======================== LAYOUT ======================== */
.container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}

/* ======================== TYPOGRAPHY ======================== */
.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent-primary);
    opacity: 0.5;
}

.section-tag::before {
    right: 100%;
}

.section-tag::after {
    left: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-transform: none;
}

.section-desc {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    line-height: 1.8;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======================== GLASSMORPHISM ======================== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.glass-card:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: var(--shadow-glow);
}

/* ======================== BUTTONS ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn i {
    font-size: 0.85em;
    transition: transform var(--duration-normal) var(--ease-out);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.35);
}

.btn-glow {
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 40px var(--accent-glow), 0 10px 30px rgba(230, 57, 70, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--bg-glass);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: var(--fs-base);
}

.btn-block {
    width: 100%;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ======================== HEADER ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: 1.1rem 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass);
    padding: 0.65rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    z-index: 10;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Nav */
.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: clamp(0.912rem, 1.92vw, 1.04rem);
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.nav-link i {
    font-size: 0.6em;
    margin-left: 0.3rem;
    transition: transform var(--duration-fast);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-md);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
}

.dropdown-menu a:hover {
    background: var(--bg-glass-hover);
    color: var(--accent-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: all var(--duration-fast);
    position: relative;
}

.theme-toggle:hover {
    background: var(--bg-glass-hover);
    border-color: var(--accent-primary);
}

.theme-toggle .fa-sun {
    display: none;
}

[data-theme="light"] .theme-toggle .fa-moon {
    display: none;
}

[data-theme="light"] .theme-toggle .fa-sun {
    display: block;
}

.header-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    transition: all var(--duration-fast);
}

@media (min-width: 768px) {
    .header-cta {
        display: inline-flex;
    }
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.35);
}

/* Hamburger */
.hamburger {
    width: 36px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-dark);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: calc(var(--z-header) - 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-slow) var(--ease-out);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(30px);
    transition: transform var(--duration-slow) var(--ease-out);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.5rem 2rem;
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.mobile-nav-link:hover {
    color: var(--accent-primary);
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

.mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.mobile-menu-footer p {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

/* ======================== HERO ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-slider .swiper-slide {
    overflow: hidden;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s linear;
}

.hero-slider .swiper-slide-active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(10, 10, 10, 0.45) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 4;
    pointer-events: none;
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.65) 0%,
        rgba(10, 10, 10, 0.35) 40%,
        rgba(10, 10, 10, 0.75) 100%
    );
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 4;
    animation: orbFloat 15s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(230, 57, 70, 0.12);
    top: 10%;
    right: -100px;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 107, 107, 0.08);
    bottom: 10%;
    left: -50px;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 var(--container-px);
    padding-top: 100px;
    padding-bottom: 60px;
    width: 100%;
    pointer-events: none;
}

.hero-content a,
.hero-content button,
.hero-content .btn,
.hero-content .hero-cta,
.hero-content .hero-partners {
    pointer-events: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #e63946;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-hero);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-title-line {
    display: block;
}

.hero-desc {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-desc strong {
    color: var(--accent-primary);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-partners {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-label {
    display: block;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.partner-logo {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
    transition: color var(--duration-fast);
}

.partner-logo:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
    pointer-events: none;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-pagination {
    position: absolute;
    bottom: 5rem;
    right: var(--container-px);
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: auto;
}

.hero-pagination .swiper-pagination-bullet {
    width: 3px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: all var(--duration-normal);
    display: block;
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    height: 45px;
    background: var(--accent-primary);
}

/* ======================== SERVICES ======================== */
/* Hero Navigation Arrows */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    pointer-events: auto;
}

.hero-prev {
    left: 1.5rem;
}

.hero-next {
    right: 1.5rem;
}

.hero-nav-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.4);
}

@media (max-width: 767px) {
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .hero-prev {
        left: 0.75rem;
    }

    .hero-next {
        right: 0.75rem;
    }
}

/* ======================== SERVICES ======================== */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: all var(--duration-slow) var(--ease-out);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    height: 100%;
    min-height: 360px;
}

.service-card-front {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: transform var(--duration-slow) var(--ease-out);
    z-index: 0;
    transform: scale(1);
}

.service-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.45) 0%, rgba(10, 10, 15, 0.92) 100%);
    transition: background var(--duration-slow) var(--ease-out);
}

.service-card:hover .service-card-bg {
    transform: scale(1.08);
}

.service-card:hover .service-card-bg::after {
    background: linear-gradient(180deg, rgba(230, 57, 70, 0.15) 0%, rgba(10, 10, 15, 0.88) 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.35);
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    color: #fff;
    transition: all var(--duration-normal) var(--ease-out);
}

.service-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    line-height: 1.7;
    flex: 1;
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--accent-primary);
    transition: all var(--duration-fast);
}

.service-link i {
    transition: transform var(--duration-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    opacity: 0.08;
    line-height: 1;
    transition: opacity var(--duration-normal);
    letter-spacing: -0.05em;
}

.service-card:hover .service-number {
    opacity: 0.15;
    color: #fff;
}

/* ======================== STATS ======================== */
.stats-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--border-color) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .stats-content {
        grid-template-columns: 1fr 1fr;
    }
}

.stats-text .section-tag {
    padding-left: 0;
}

.stats-text .section-tag::before {
    display: none;
}

.stats-text .section-title {
    text-align: left;
}

.stats-text .section-desc {
    text-align: left;
    margin-bottom: 2rem;
}

.stats-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.stat-feature i {
    color: var(--accent-primary);
    font-size: 1.1em;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-bar {
    margin-top: 1rem;
    height: 3px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.stat-bar-inner {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    border-radius: 3px;
    transition: width 1.5s var(--ease-out);
}

.stat-card.animated .stat-bar-inner {
    width: 100%;
}

/* ======================== INSURANCE PARTNERS ======================== */
.insurance-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.insurance-carousel {
    margin-top: 3rem;
    padding: 1rem 0;
    overflow: visible;
}

.insurance-carousel .swiper-wrapper {
    transition-timing-function: linear !important;
}

.insurance-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    min-height: 160px;
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    cursor: default;
}

.insurance-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), var(--shadow-glow);
}

.insurance-card img {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all var(--duration-normal) var(--ease-out);
}

[data-theme="light"] .insurance-card img {
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.5;
}

.insurance-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.08);
}

[data-theme="light"] .insurance-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.insurance-card span {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color var(--duration-fast);
}

.insurance-card:hover span {
    color: var(--text-primary);
}

.insurance-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.insurance-badge i {
    color: var(--accent-primary);
    font-size: 1.15rem;
}

.insurance-badge span {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    transition: transform var(--duration-normal) var(--ease-out);
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 15, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

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

.gallery-cat {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gallery-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.gallery-item:hover .gallery-zoom {
    transform: translateY(0);
    opacity: 1;
}

.gallery-zoom:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

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

.testimonials-slider {
    padding-bottom: 3rem;
}

.testimonial-card {
    padding: 2.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--accent-primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin: 1rem 0;
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
}

.testimonial-info span {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.testimonials-pagination {
    text-align: center;
    margin-top: 1.5rem;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    opacity: 1;
    transition: all var(--duration-fast);
}

.testimonials-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: var(--radius-full);
    background: var(--accent-primary);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.swiper-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all var(--duration-fast);
}

.swiper-btn:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
    transform: scale(1.1);
}

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

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content .section-tag {
    padding-left: 0;
}

.about-content .section-tag::before {
    display: none;
}

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

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-size: var(--fs-sm);
    font-weight: 500;
}

.about-badge i {
    color: var(--accent-primary);
    font-size: 1.1em;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .about-experience-badge {
        bottom: -20px;
        right: -20px;
    }
}

.exp-number {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.exp-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ======================== TIMELINE ======================== */
.timeline-section {
    background: var(--bg-secondary);
    padding-top: 0;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    opacity: 0.2;
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px;
    }

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-right: 0;
        padding-left: 40px;
    }
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 1.5rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: auto;
        right: -9px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        right: auto;
        left: -9px;
    }
}

.timeline-dot-inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
}

.timeline-content {
    padding: 1.5rem;
}

.timeline-year {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.timeline-desc {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ======================== CTA BANNER ======================== */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0a0a 0%, #2a0f0f 30%, #0a0a0a 100%);
}

.cta-bg-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.cta-desc {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ======================== CONTACT ======================== */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-card-content a,
.contact-card-content p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    transition: color var(--duration-fast);
}

.contact-card-content a:hover {
    color: var(--accent-primary);
}

.contact-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--duration-fast);
}

.social-link:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 0;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    outline: none;
    transition: border-color var(--duration-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-primary);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 0.85rem;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--duration-fast) var(--ease-out);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    font-size: var(--fs-xs);
    color: var(--accent-primary);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--duration-normal) var(--ease-out);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    width: 100%;
}

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

/* Map */
.contact-map {
    margin-top: 3rem;
}

.map-wrapper {
    overflow: hidden;
    padding: 0;
}

.map-wrapper iframe {
    display: block;
    border-radius: var(--radius-lg);
}

/* ======================== FOOTER ======================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding: 5rem 0 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--duration-fast);
}

.footer-socials a:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a,
.footer-col ul span {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    transition: all var(--duration-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul a:hover {
    color: var(--accent-primary);
    transform: translateX(3px);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-contact-list li i {
    color: var(--accent-primary);
    margin-top: 0.2rem;
    font-size: 0.85em;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* ======================== MOBILE BOTTOM CTA ======================== */
.mobile-bottom-cta {
    display: flex;
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: calc(var(--z-header) - 2);
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 0.5rem;
    transition: bottom var(--duration-normal) var(--ease-out);
}

.mobile-bottom-cta.visible {
    bottom: 0;
}

@media (min-width: 1024px) {
    .mobile-bottom-cta {
        display: none;
    }
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-md);
    font-size: var(--fs-xs);
    font-weight: 600;
    transition: all var(--duration-fast);
}

.mobile-cta-btn i {
    font-size: 1.2rem;
}

.mobile-cta-call {
    color: #fff;
    background: var(--accent-primary);
}

.mobile-cta-wp {
    color: #fff;
    background: #25d366;
}

.mobile-cta-form {
    color: var(--text-primary);
    background: var(--bg-glass);
}

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.6rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--z-header);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--duration-fast);
    animation: wpPulse 2s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .whatsapp-float {
        display: flex;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes wpPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.wp-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    background: #fff;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all var(--duration-fast);
}

.whatsapp-float:hover .wp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ======================== BACK TO TOP ======================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out);
    z-index: var(--z-header);
}

@media (min-width: 1024px) {
    .back-to-top {
        right: 7rem;
    }
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/* ======================== LIGHTBOX ======================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transform: scale(0.9);
    transition: transform var(--duration-normal) var(--ease-out);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

/* ======================== ANIMATIONS ======================== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all var(--duration-slow) var(--ease-out);
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal-up, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* ======================== UTILITIES ======================== */
@media (max-width: 767px) {
    .hero-scroll-indicator {
        display: none;
    }

    .hero-pagination {
        flex-direction: row;
        bottom: 2rem;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 25px;
        height: 3px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 45px;
        height: 3px;
    }
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */

/* Header Solid (for inner pages) */
.header--solid {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

/* Service Hero */
.svc-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 90px;
}

.svc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.svc-hero:hover .svc-hero-bg {
    transform: scale(1);
}

.svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 40%,
        rgba(10, 10, 10, 0.4) 100%
    );
}

[data-theme="light"] .svc-hero-overlay {
    background: linear-gradient(
        to top,
        rgba(242, 242, 242, 0.95) 0%,
        rgba(242, 242, 242, 0.6) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.svc-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 50px;
    width: 100%;
}

/* Breadcrumb */
.svc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: var(--fs-sm);
}

.svc-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.svc-breadcrumb a:hover {
    color: var(--accent-primary);
}

.svc-breadcrumb i {
    font-size: 0.65em;
    color: var(--text-muted);
}

.svc-breadcrumb span {
    color: var(--accent-primary);
    font-weight: 600;
}

.svc-hero-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.svc-hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.svc-hero-desc {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

/* Service Layout */
.svc-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

/* Main Content */
.svc-main {
    min-width: 0;
}

.svc-image-block {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.svc-image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) var(--ease-out);
}

.svc-image-block:hover img {
    transform: scale(1.03);
}

.svc-text {
    margin-bottom: 50px;
}

.svc-text p {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
}

.svc-text p:first-child {
    font-size: var(--fs-md);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
}

/* Features */
.svc-features-title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.svc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-feature-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.svc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(230, 57, 70, 0.2);
}

.svc-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 16px;
}

.svc-feature-card h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.svc-feature-card p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Sidebar */
.svc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.svc-sidebar-card {
    padding: 28px;
    border-radius: var(--radius-xl);
}

.svc-sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-sidebar-card h3 i {
    color: var(--accent-primary);
}

/* Sidebar Service List */
.svc-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-sidebar-list li {
    border-bottom: 1px solid var(--border-color);
}

.svc-sidebar-list li:last-child {
    border-bottom: none;
}

.svc-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: all var(--duration-fast);
}

.svc-sidebar-list li a i:first-child {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all var(--duration-fast);
    flex-shrink: 0;
}

.svc-sidebar-list li a span {
    flex: 1;
}

.svc-arrow {
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--duration-fast);
}

.svc-sidebar-list li a:hover {
    color: var(--accent-primary);
}

.svc-sidebar-list li a:hover i:first-child {
    background: var(--accent-gradient);
    color: #fff;
}

.svc-sidebar-list li a:hover .svc-arrow {
    opacity: 1;
    transform: translateX(0);
}

.svc-sidebar-list li.active a {
    color: var(--accent-primary);
    font-weight: 700;
}

.svc-sidebar-list li.active a i:first-child {
    background: var(--accent-gradient);
    color: #fff;
}

/* Contact Card */
.svc-contact-card {
    background: var(--accent-gradient);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.svc-contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1), transparent 60%);
}

.svc-contact-card-inner {
    position: relative;
    z-index: 1;
}

.svc-contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.svc-contact-card h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    justify-content: center;
    color: #fff;
}

.svc-contact-card p {
    font-size: var(--fs-sm);
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--duration-fast);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-block:last-child {
    margin-bottom: 0;
}

.svc-contact-card .btn-primary {
    background: #fff;
    color: var(--accent-primary);
}

.svc-contact-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* Working Hours */
.svc-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: var(--fs-sm);
    border-bottom: 1px solid var(--border-color);
}

.svc-hours-list li:last-child {
    border-bottom: none;
}

.svc-hours-list li span:first-child {
    color: var(--text-secondary);
}

.svc-hours-list li span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.svc-hours-list .closed {
    color: var(--accent-primary);
}

/* Service CTA */
.svc-cta {
    padding: var(--section-py) 0;
}

.svc-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 60px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(230, 57, 70, 0.15);
    background: var(--bg-glass);
}

.svc-cta-content h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.svc-cta-content p {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.6;
}

.svc-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.svc-cta-actions .btn {
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--duration-fast);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.svc-cta-actions .btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.svc-cta-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.4);
}

.svc-cta-actions .btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-glass);
}

.svc-cta-actions .btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

/* ===== SERVICE DETAIL RESPONSIVE ===== */
@media (max-width: 1024px) {
    .svc-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .svc-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .svc-hero {
        min-height: 40vh;
        padding-top: 80px;
    }
    .svc-hero-content {
        padding: 40px 0 36px;
    }
    .svc-hero-title {
        font-size: var(--fs-3xl);
    }
    .svc-hero-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
    .svc-features-grid {
        grid-template-columns: 1fr;
    }
    .svc-image-block img {
        height: 260px;
    }
    .svc-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    .svc-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .svc-cta-actions .btn {
        justify-content: center;
        width: 100%;
    }
    .svc-breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}

/* Service detail page - no preloader, no particles */
.service-detail-page #preloader,
.service-detail-page #particles-bg {
    display: none;
}
