/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Light Theme (Default) */
    --primary: #ff6b35;
    --primary-depth: #e85d2a;
    --primary-light: rgba(255, 107, 53, 0.1);

    --secondary: #0f172a;
    --secondary-light: #1e293b;

    --text-heading: #0f172a;
    --text-body: #475569;
    --text-light: #94a3b8;

    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-off-white: #f1f5f9;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --text-heading: #f1f5f9;
    --text-body: #cbd5e1;
    --text-light: #94a3b8;

    --bg-white: #0f172a;
    --bg-light: #1e293b;
    --bg-off-white: #334155;

    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.5s ease, color 0.5s ease;
    padding-bottom: 0px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
}

/* --- Preloader (NEW) --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

[data-theme="dark"] #preloader {
    background: #0f172a;
}

.loader-content {
    text-align: center;
}

/* Removed loader-logo styles as requested */

/* Restored loader-bar styles */
/* Spinner Styles (NEW) */
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 107, 53, 0.2);
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Scroll to Top Button (NEW) --- */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

#scrollTop.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

#scrollTop:hover {
    transform: translateY(-5px);
    background: var(--primary-depth);
}

@media (max-width: 768px) {
    #scrollTop {
        bottom: 90px;
        right: 20px;
    }
}

/* ... Existing Styles Keep ... */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 90px;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.scrolled .theme-toggle {
    background: var(--bg-off-white);
    color: var(--text-heading);
    box-shadow: var(--shadow-md);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 107, 53, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 53, 0.1);
    border-color: transparent;
    backdrop-filter: blur(2px);
}

body.hovering .cursor-dot {
    opacity: 0;
}

.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-white);
    transition: background-color 0.5s ease;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: blob-bounce 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 107, 53, 0.15);
    animation-duration: 25s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(15, 23, 42, 0.05);
    animation-duration: 30s;
    animation-direction: alternate-reverse;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: rgba(255, 200, 100, 0.1);
    animation-duration: 20s;
}

[data-theme="dark"] .blob-1 {
    background: rgba(255, 107, 53, 0.2);
}

[data-theme="dark"] .blob-2 {
    background: rgba(148, 163, 184, 0.1);
}

[data-theme="dark"] .blob-3 {
    background: rgba(255, 200, 100, 0.05);
}

@keyframes blob-bounce {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.marquee-section {
    background: var(--secondary);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 20;
    transform: skewY(-2deg);
    margin: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .marquee-section {
    background: var(--bg-light);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.marquee-item i {
    color: var(--primary);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal-blur {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-blur.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
}

.tilt-inner {
    transform: translateZ(20px);
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 10px 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    justify-content: space-around;
    align-items: center;
}

[data-theme="dark"] .mobile-bottom-bar {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-body);
}

.bottom-nav-item i {
    stroke-width: 2.5px;
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item.highlight {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    flex-direction: row;
    gap: 8px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }

    /* Hide custom cursor on mobile only */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    /* Typography Reductions */
    .hero h2 {
        font-size: 1.65rem !important;
        /* Further reduced to prevent cutoff */
        line-height: 1.25;
        margin-bottom: 12px;
        word-wrap: break-word;
    }

    .hero p {
        font-size: 0.85rem !important;
        /* Smaller for mobile */
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
        /* Smaller for mobile */
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Layout & Spacing */
    .section {
        padding: 40px 0;
        /* Reduced from 60px 0 */
    }

    .container {
        padding: 0 16px;
        /* Reduced from 24px */
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
        /* Remove fixed 100vh if possible to save space, or keep but adjust content */
    }

    .theme-toggle {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    /* Cards & Stats */
    .service-card img,
    .tilt-card img {
        height: 180px;
        /* Reduced from 200px */
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .service-card {
        padding: 20px;
        /* Reduced padding */
    }

    .service-card h3 {
        font-size: 1.15rem !important;
        /* Smaller for mobile */
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.88rem !important;
        line-height: 1.6;
    }

    .services-grid {
        gap: 20px;
        grid-template-columns: 1fr;
        /* Single column */
    }

    .badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 20px !important;
        font-size: 0.8rem !important;
        gap: 6px;
    }

    .hero-btn-group {
        gap: 10px;
    }

    .testimonial-text {
        font-size: 1.05rem !important;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .faq-header {
        font-size: 0.92rem;
        padding: 16px 20px;
    }

    .marquee-item {
        font-size: 0.88rem;
    }

    /* Compact Stats Grid (2 Columns) - AGGRESSIVE OPTIMIZATION */
    .stats {
        margin-top: -20px;
        padding-bottom: 20px;
        width: 100%;
        overflow-x: hidden;
        /* Prevent horizontal scroll */
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
        padding: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .stat-item {
        padding: 8px 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        /* Allow flexbox to shrink */
        overflow: hidden;
        /* Contain content */
    }

    /* Remove the separator lines on mobile if present */
    .stat-item::after {
        display: none !important;
    }

    .stat-icon {
        padding: 6px;
        margin-bottom: 4px;
        font-size: 1.1rem;
    }

    .stat-icon i {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.4rem !important;
        margin-bottom: 3px;
        white-space: nowrap;
        /* Keep numbers on one line */
    }

    .stat-label {
        font-size: 0.6rem !important;
        line-height: 1.2;
        text-align: center;
        word-wrap: break-word;
        max-width: 100%;
        padding: 0 2px;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    /* Fix dark mode text visibility on mobile for cards */
    [data-theme="dark"] .service-card h3,
    [data-theme="dark"] .tilt-card h3 {
        color: #f1f5f9 !important;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    transition: var(--transition);
    z-index: 1000;
}

header.scrolled {
    padding: 15px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
}

.nav-api {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 900;
    color: white;
    transition: var(--transition);
}

.logo span {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    display: block;
    margin-top: -5px;
}

header.scrolled .logo h1 {
    color: var(--text-heading);
}

.nav-links {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled .nav-links {
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
}

.nav-links a {
    font-weight: 500;
    color: white;
    opacity: 0.9;
    position: relative;
}

header.scrolled .nav-links a {
    color: var(--text-heading);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled .phone-link {
    color: var(--text-heading);
    background: var(--bg-off-white);
    border-color: transparent;
}

.phone-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 1100;
    padding: 0;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    /* Yükseklik ayarlandı */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    /* Çizgi kalınlığı */
    background-color: var(--primary);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    position: absolute;
}

.hamburger-line.top {
    top: 0;
}

.hamburger-line.mid {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line.mid2 {
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

/* Yedek çizgi */
.hamburger-line.bot {
    bottom: 0;
}

/* Menü Açıkken X Olma Animasyonu */
.mobile-toggle.active .hamburger-line.top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle.active .hamburger-line.mid {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line.bot {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-toggle:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.mobile-toggle:hover .hamburger-line {
    background-color: white;
}

header.scrolled .mobile-toggle {
    background: var(--bg-white);
}


@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        /* Daha opak */
        backdrop-filter: blur(20px);
        /* Daha fazla blur */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        /* Smooth bounce effect */
        z-index: 1001;
        border-radius: 0;
    }

    [data-theme="dark"] .nav-links {
        background: rgba(15, 23, 42, 0.98);
        /* Dark mode için daha opak */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-heading);
        font-size: 1.3rem;
        /* Biraz daha küçük */
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--primary);
        transform: translateX(5px);
    }

    .header-actions {
        display: none;
    }

    /* Hide desktop dark mode button on mobile */
    .theme-toggle {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
        /* Override display: none and use flex for centering */
    }
}

/* Mobile Theme Toggle Button (hide on desktop) */
.mobile-theme-toggle-wrapper {
    display: none;
}

@media (max-width: 768px) {
    .mobile-theme-toggle-wrapper {
        display: block !important;
    }

    .mobile-theme-toggle {
        background: var(--bg-off-white);
        border: 1px solid var(--bg-off-white);
        padding: 12px 24px;
        border-radius: 50px;
        color: var(--text-heading);
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: var(--transition);
        font-family: 'Outfit', sans-serif;
    }

    .mobile-theme-toggle:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-depth) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--secondary);
    border: 2px solid var(--bg-off-white);
}

[data-theme="dark"] .btn-secondary {
    color: var(--text-heading);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

[data-theme="dark"] .btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: saturate(1.2);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--secondary) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    padding: 20px;
}

.badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.5);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    min-height: 1.1em;
}

.typing-cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: var(--primary);
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero p {
    font-size: 1.4rem;
    color: #cbd5e1;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.stats {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    padding-bottom: 80px;
}

.stats-grid {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
    border: 1px solid var(--bg-off-white);
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: var(--bg-off-white);
}

@media (max-width: 768px) {
    .stat-item:not(:last-child)::after {
        display: none;
    }
}

.stat-icon {
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-flex;
    padding: 15px;
    background: var(--primary-light);
    border-radius: 50%;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: rotateY(180deg);
    background: var(--primary);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section.bg-light {
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-heading);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-header p {
    color: var(--text-body);
    font-size: 1.15rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--glass-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--bg-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--secondary);
    transition: var(--transition);
}

[data-theme="dark"] .service-icon-box {
    color: var(--text-heading);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-heading);
    font-size: 1.6rem;
    font-weight: 700;
    transform: translateZ(20px);
}

.service-card p {
    color: var(--text-body);
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1.05rem;
    transform: translateZ(20px);
}

.service-card a {
    transform: translateZ(20px);
    display: inline-flex;
}

.testimonials-section {
    background: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .testimonials-section {
    background: #020617;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    position: relative;
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 24px;
    font-size: 1.2rem;
    letter-spacing: 5px;
}

.testimonial-text {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    color: white;
    margin-bottom: 40px;
}

.testimonial-author h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid var(--bg-off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-heading);
    background: transparent;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--bg-light);
}

.faq-body.open {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-content {
    padding: 0 30px 24px 30px;
    color: var(--text-body);
    line-height: 1.8;
}

footer {
    background: var(--secondary);
    color: white;
    padding-top: 100px;
}

[data-theme="dark"] footer {
    background: #020617;
    border-top: 1px solid var(--bg-off-white);
}

.footer-info p {
    color: #94a3b8;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: white;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.contact-item {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-bottom {
    background: var(--secondary-light);
    margin-top: 60px;
    padding: 30px 0;
}

[data-theme="dark"] .footer-bottom {
    background: #0f172a;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* --- Corporate Footer Redesign --- */
.corporate-footer {
    background: var(--secondary);
    color: #e2e8f0;
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

[data-theme="dark"] .corporate-footer {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-brand p {
    color: #94a3b8;
    margin: 20px 0;
    line-height: 1.6;
    max-width: 300px;
}

.footer-logo h2 {
    color: white;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.footer-logo span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Contact Specific */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #94a3b8;
    margin-bottom: 20px !important;
}

.contact-list li i {
    color: var(--primary);
    min-width: 20px;
    margin-top: 2px;
}

.contact-list li a:hover {
    color: var(--primary);
    transform: none !important;
}

/* Footer Bottom */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a:hover {
    color: var(--primary);
}

.sep {
    color: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .corporate-footer {
        padding: 60px 0 100px 0; /* Extra padding bottom for sticky mobile bar */
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        margin: 15px auto;
    }

    .footer-col {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}