/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: hsl(217, 100%, 50%);         /* Buser Blue - Canlı Mavi */
    --primary-hover: hsl(217, 100%, 42%);   /* Koyu Mavi */
    --primary-light: hsl(217, 100%, 95%);   /* Hafif Mavi Arka Plan */
    --accent: hsl(142, 70%, 45%);           /* WhatsApp Green */
    --accent-hover: hsl(142, 70%, 38%);
    
    /* Neutral Colors */
    --neutral-900: hsl(222, 47%, 11%);     /* Koyu Arduvaz / Siyaha Yakın Lacivert */
    --neutral-800: hsl(217, 19%, 27%);     /* Koyu Gri */
    --neutral-600: hsl(217, 16%, 32%);     /* Orta/Koyu Gri (Daha Okunabilir) */
    --neutral-200: hsl(214, 32%, 91%);     /* Açık Gri */
    --neutral-100: hsl(210, 40%, 96%);     /* Açık Bölüm Arka Planı */
    --white: hsl(0, 0%, 100%);
    
    /* Layout & Spacing */
    --max-width: 1440px;
    --header-height: 96px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.05);
    --shadow-md: 0 10px 30px rgba(30, 41, 59, 0.08); /* Koyu Gri Gölgeler */
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--neutral-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

ul, ol {
    list-style: none;
}

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

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

svg {
    transition: fill var(--transition-fast), stroke var(--transition-fast);
}

/* Container Utility */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--border-radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 85, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 85, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    flex-shrink: 0;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: -55px 0;
    transition: height var(--transition-normal), margin var(--transition-normal), transform var(--transition-normal);
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

.main-header.scrolled .logo-img {
    height: 180px;
    margin: -55px 0;
}

/* Nav Menu & Links */
.nav-menu > ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--neutral-800);
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.6px;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Active Link Hover/Active Effect (Renk Değişimi ve Hafif Yükselme) */

.chevron-icon {
    transition: transform var(--transition-fast);
}

.dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--white);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(222, 226, 230, 0.5);
    padding: 10px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 100;
}

/* Header-Specific Minimal Luxury Button */
.btn-header {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(0, 85, 255, 0.15);
    border: none;
    transition: all var(--transition-fast);
}

.btn-header:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 85, 255, 0.25);
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.dropdown-menu li a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--neutral-900);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: opacity var(--transition-slow) ease-in-out, visibility var(--transition-slow) ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 620px;
    color: var(--white);
}

/* Slide elements animation */
.hero-badge, .hero-title, .hero-desc, .btn-hero {
    opacity: 0;
    transform: translateY(30px);
    transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.slide.active .hero-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.slide.active .hero-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.slide.active .btn-hero {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Badge (Top tag) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 85, 255, 0.15);
    border: 1px solid rgba(0, 85, 255, 0.3);
    padding: 8px 16px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
}

/* Hero Typography */
.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.6;
}

.btn-hero {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Slider Arrow Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-normal);
}

.slider-control:hover {
    background-color: var(--white);
    color: var(--neutral-900);
    border-color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.slider-control.prev {
    left: 32px;
}

.slider-control.next {
    right: 32px;
}

/* Bottom Curve Structure */
.bottom-curve {
    display: none;
}

/* ==========================================================================
   MAIN CONTENT & INTRO CARD
   ========================================================================== */
.main-content {
    position: relative;
    z-index: 6;
    margin: 0 auto;
    padding-bottom: 80px;
    background-color: var(--white);
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
}

.stats-card-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -65px;
}

.stats-card {
    background: var(--neutral-100);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    padding: 50px 40px;
    border: 1px solid var(--neutral-200);
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

/* Sütunlar arasındaki dikey gri bölücüler */
.stats-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(222, 226, 230, 0.8);
}

.stats-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1.1;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

.stats-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float-btn {
    position: fixed;
    bottom: calc(30px + env(safe-area-inset-bottom));
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .stats-number {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .main-header.scrolled {
        height: 70px;
    }

    /* Mobile Nav Styles */
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        padding: 40px 24px;
        z-index: 1005;
        overflow-y: auto;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-light);
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 10px;
        padding-left: 15px;
        width: 100%;
    }

    .dropdown.open .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        display: block;
        transform: none;
    }

    .header-action {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .btn-header {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* Mobile Slider Styles */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .slider-control {
        width: 44px;
        height: 44px;
    }

    .slider-control.prev {
        left: 16px;
    }

    .slider-control.next {
        right: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }
    
    .stats-item:nth-child(2n)::after {
        display: none;
    }
    
    .stats-card {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn-header span {
        display: none; /* Hide text on small mobiles, show only icon */
    }
    
    .btn-header {
        padding: 10px;
        border-radius: 50%;
    }

    .btn-header .btn-icon {
        margin: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px 0;
    }
    
    .stats-item::after {
        display: none;
    }
    
    .stats-number {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   ABOUT SECTION (Hakkımızda)
   ========================================================================== */
.about-section {
    margin-top: 80px;
    padding: 20px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-800);
}

.about-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-800);
}

.about-badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.about-text {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.75;
    text-align: justify;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3.4;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        aspect-ratio: 16 / 10;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* ==========================================================================
   SERVICES SECTION (Hizmetlerimiz Carousel)
   ========================================================================== */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-800);
}

.services-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-800);
}

.services-badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

/* Carousel Kaydırma Alanı */
.services-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.services-carousel {
    display: flex;
    gap: 24px;
    padding: 10px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.services-carousel.grabbing {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

/* Hizmet Kartı Tasarımı */
.service-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 250px;
    scroll-snap-align: start;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 480px;
    padding: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.1) 0%, rgba(30, 41, 59, 0.7) 100%);
    z-index: 2;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.15);
}

.service-card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    margin: 0;
    padding: 0;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-card-image-wrapper {
    transform: scale(1.05);
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-info {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 20px;
    z-index: 3;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-service {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-lg);
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
    transition: all var(--transition-normal);
}

.btn-service:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Dots */
.services-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.services-dots .dot {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 20, 50, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.services-dots .dot.active {
    width: 24px;
    border-radius: 10px;
    background-color: var(--primary);
}

/* Mobil / Tablet Duyarlılık */


@media (max-width: 992px) {
    .service-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .services-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 0 0 100%;
    }
    .services-carousel {
        padding: 10px 20px;
    }
    .services-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   FAQ SECTION (Sıkça Sorulan Sorular)
   ========================================================================== */
.faq-section {
    margin-top: 80px;
    padding: 60px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-800);
}

.faq-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-800);
}

.faq-badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    max-width: 800px;
    line-height: 1.25;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--neutral-600);
    background: var(--neutral-100);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    background: var(--neutral-100);
}

/* Premium Odaklanma Efekti (Aktif kart dışındakilerin sönmesi) */
.faq-list:has(.faq-item.active) .faq-item:not(.active) {
    opacity: 0.65;
    transform: scale(0.985);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 24px 32px;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-num {
    background-color: var(--neutral-900);
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.faq-item.active .faq-num {
    background-color: var(--primary);
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-900);
    flex-grow: 1;
    font-family: 'Montserrat', sans-serif;
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-600);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(90deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-in-out;
}

.faq-answer-inner {
    padding: 0 32px 28px 90px;
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .faq-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    .faq-question {
        padding: 20px 24px;
    }
    .faq-num {
        width: 32px;
        height: 32px;
        margin-right: 14px;
        font-size: 0.85rem;
    }
    .faq-answer-inner {
        padding: 0 24px 20px 70px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question-text {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   BLOG SECTION (Sektör Hakkında Faydalı Bilgiler Carousel)
   ========================================================================== */
.blog-section {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-800);
}

.blog-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-800);
}

.blog-badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.blog-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

/* Carousel Kaydırma Alanı */
.blog-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.blog-carousel {
    display: flex;
    gap: 24px;
    padding: 10px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

.blog-carousel.grabbing {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

/* Blog Kartı Tasarımı */
.blog-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 300px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

/* Premium Gradient Hover Katmanı */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-hover);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(244, 49, 0, 0.25);
    border-color: transparent;
}

.blog-card-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 14px;
    line-height: 1.35;
    min-height: 58px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-normal);
}

.blog-card:hover .blog-card-title {
    color: var(--white);
}

.blog-card-desc {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 86px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-normal);
}

.blog-card:hover .blog-card-desc {
    color: rgba(255, 255, 255, 0.85);
}

.btn-blog {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-lg);
    margin-top: auto;
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
    align-self: flex-start;
    transition: all var(--transition-normal);
}

.blog-card:hover .btn-blog {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Dots */
.blog-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.blog-dots .dot {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 20, 50, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.blog-dots .dot.active {
    width: 24px;
    border-radius: 10px;
    background-color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 992px) {
    .blog-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 100%;
    }
    .blog-carousel {
        padding: 10px 20px;
    }
    .blog-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner-section {
    background-color: var(--primary);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center;
    padding: 60px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.btn-cta-banner {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 36px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-banner:hover {
    background-color: var(--primary-light);
    color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   MAIN FOOTER
   ========================================================================== */
.main-footer {
    background-color: #22252a;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 240px;
    width: auto;
    object-fit: contain;
    margin: -65px 0 -55px -15px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.footer-socials .social-icon:hover {
    background-color: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0, 98, 255, 0.3);
}

.footer-column-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column ul li {
    font-size: 0.95rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact .contact-label {
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON (Yukarı Git Butonu)
   ========================================================================== */
.scroll-to-top-btn {
    position: fixed;
    bottom: calc(105px + env(safe-area-inset-bottom));
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--neutral-900);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(244, 49, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cta-banner-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-banner-title {
        font-size: 1.8rem;
    }
    .main-footer {
        padding: 60px 0 30px 0;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
        gap: 16px;
    }
}

/* ==========================================================================
   PREMIUM HİZMET DETAY SAYFALARI (40-60K TL'LİK TASARIM STİLLERİ)
   ========================================================================== */
.service-detail-body {
    background-color: var(--white);
}

/* Page Header Premium Tasarımı */
.premium-page-header {
    position: relative;
    background: linear-gradient(135deg, hsl(222, 47%, 11%) 0%, hsl(217, 100%, 18%) 100%);
    padding: 150px 0 80px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
.premium-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: rotateGlow 20s linear infinite;
}
@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.premium-page-header .page-title {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-transform: uppercase;
}
.premium-page-header .page-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Detay Grid */
.premium-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 60px;
    margin-top: 80px;
    align-items: start;
}

.premium-detail-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 15px;
}
.premium-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.premium-detail-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--neutral-800);
    margin-bottom: 40px;
    text-align: justify;
}

/* Premium Mini Özellik Kartları (Tik listesi yerine) */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.premium-feature-card {
    background: var(--neutral-100);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.premium-feature-card:hover {
    transform: translateY(-5px);
    background: var(--neutral-100);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.premium-feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}
.premium-feature-card:hover .premium-feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--white);
}
.premium-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
}
.premium-feature-card p {
    font-size: 0.88rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Premium Sağ Kenar Kartları */
.premium-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.premium-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
    transition: transform var(--transition-normal);
    height: 720px; /* Dikeyde soldaki bloğa uyum sağlaması için ciddi derecede uzatıldı */
}
.premium-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.15);
    z-index: 2;
    pointer-events: none;
}
.premium-image-card:hover {
    transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
}
.premium-image-card img {
    width: 100%;
    height: 100%; /* Resmin kutuyu tam kaplaması sağlandı */
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.premium-image-card:hover img {
    transform: scale(1.04);
}

.premium-support-card {
    background: linear-gradient(135deg, hsl(222, 47%, 11%) 0%, hsl(217, 100%, 18%) 100%);
    color: var(--white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.premium-support-card::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--primary);
    opacity: 0.15;
    filter: blur(40px);
    border-radius: 50%;
}
.premium-support-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.premium-support-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}
.btn-premium-sidebar {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    background-color: var(--primary);
    color: var(--white);
}
.btn-premium-sidebar:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Premium Hizmet Süreci Bölümü */
.process-section {
    padding: 100px 0;
    background-color: var(--white);
    margin-top: 80px;
}
.process-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-800);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.process-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1.5px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
/* Adımlar arası bağlayıcı çizgi (Masaüstü için) */
.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(244, 49, 0, 0.15) 0px, rgba(244, 49, 0, 0.15) 10px, transparent 10px, transparent 20px);
    z-index: 1;
}
.process-step-card {
    background: var(--neutral-100);
    border-radius: var(--border-radius-md);
    padding: 35px 24px 28px 24px;
    text-align: center;
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}
.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.process-step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--neutral-100);
    box-shadow: 0 4px 10px rgba(0, 85, 255, 0.2);
}
.process-step-icon {
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 10px;
}
.process-step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 12px;
}
.process-step-card p {
    font-size: 0.88rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Premium Akordeon SSS */
.service-faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

/* Responsive */
@media (max-width: 1200px) {
    .premium-detail-grid {
        gap: 40px;
    }
    .process-steps::before {
        display: none;
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}
@media (max-width: 992px) {
    .premium-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .premium-page-header .page-title {
        font-size: 2.5rem;
    }
    .premium-image-card {
        height: 420px; /* Tablet ekranlarda görsel yüksekliği uzatıldı */
    }
}
@media (max-width: 600px) {
    .premium-features-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .process-title {
        font-size: 2rem;
    }
    .premium-detail-content h2 {
        font-size: 1.8rem;
    }
    .premium-image-card {
        height: 300px; /* Mobil ekranlarda görsel yüksekliği uzatıldı */
    }
}

/* ==========================================================================
   PREMIUM MINIMAL DİKEY DESTEK KUTUSU (GÖRSEL ODAKLI - LÜKS MİNİMAL)
   ========================================================================== */
.premium-minimal-support-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, hsl(222, 47%, 11%) 0%, hsl(217, 100%, 18%) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px 30px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(244, 49, 0, 0.06);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.premium-minimal-support-box::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--primary);
    opacity: 0.15;
    filter: blur(40px);
    border-radius: 50%;
}

.support-box-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.support-box-text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.support-box-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.btn-support-box-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.btn-support-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    width: auto;
    min-width: 280px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    background-color: var(--primary);
    color: var(--white);
    transition: all var(--transition-normal);
    gap: 8px;
    box-shadow: 0 4px 12px rgba(244, 49, 0, 0.15);
}

.btn-support-box:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .premium-minimal-support-box {
        padding: 20px 20px;
        text-align: center;
        align-items: center;
    }
    .support-box-content {
        align-items: center;
        text-align: center;
    }
    .support-box-text h3 {
        font-size: 1.15rem;
    }
    .support-box-text p {
        font-size: 0.85rem;
    }
    .btn-support-box {
        width: 100%;
        min-width: unset;
    }
    .btn-support-box-wrapper {
        justify-content: center;
    }
}



/* Breadcrumb Styles */
.breadcrumb-nav { background: var(--neutral-100); padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.breadcrumb-list { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; font-size: 0.85rem; }
.breadcrumb-item a { color: var(--primary); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-current { color: var(--neutral-600); }
.breadcrumb-separator { color: var(--neutral-400); }
