@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =========================================================
   FONTAWESOME FONT FAMILY RESET (İkonların Görünmeme Sorununu Çözer)
   ========================================================= */
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands, [class^="fa-"], [class*=" fa-"] {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', 'Font Awesome 5 Free', 'Font Awesome 5 Brands', 'FontAwesome' !important;
}

/* =========================================================
   HOME PAGE STYLES (STRIPE & APPLE INSPIRED REDESIGN)
   ========================================================= */

/* Global Home Page Font Override */
.home-hero-shell,
.home-hero-kicker,
.home-hero-title,
.home-hero-copy,
.home-hero-primary-btn,
.home-hero-secondary-btn,
.hover-card,
.input-group-lg,
.demo-home-cta,
.demo-home-badge,
.demo-home-title,
.demo-home-text,
.demo-home-panel,
.demo-home-metric-card,
.demo-home-feature-list,
.demo-journey-section,
.demo-step-card,
.trust-showcase-section,
.testimonials-section,
.faq-section,
.product-filters,
.product-card-modern,
.callmebg,
#callMeForm,
.why-choose-section,
.feature-box,
.section-support {
    font-family: 'Outfit', sans-serif;
}

/* Space Grotesk typography for numbers, kicker details, and tag badges */
.home-hero-kicker,
.demo-home-badge,
.demo-step-number,
.why-choose-eyebrow,
.trust-showcase-eyebrow,
.testimonials-eyebrow,
.faq-eyebrow,
.trust-metric-card strong,
.demo-home-metric-card strong,
.product-type-badge,
.product-package-badge,
.product-campaign-badge-card,
.product-campaign-urgency-badge,
.product-price,
.product-price-original {
    font-family: 'Space Grotesk', sans-serif !important;
}

/* 1. Hero Section Layout & Styles */
.home-hero-shell {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at 10% 10%, rgba(var(--theme-primary-rgb), 0.06), transparent 40%),
        linear-gradient(135deg, #ffffff 0%, #fdfdfd 50%, rgba(var(--theme-primary-rgb), 0.02) 100%);
    border: 1px solid rgba(var(--theme-primary-rgb), 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
}

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.85rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--theme-dark);
    margin-bottom: 1.2rem;
}

.home-hero-copy {
    color: var(--theme-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.home-hero-primary-btn,
.home-hero-secondary-btn {
    border-radius: 30px;
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero-primary-btn {
    color: var(--theme-white) !important;
    background: var(--theme-primary);
    border: none;
    box-shadow: 0 10px 24px rgba(var(--theme-primary-rgb), 0.15);
}

.home-hero-primary-btn:hover {
    background: var(--theme-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(var(--theme-primary-rgb), 0.22);
}

.home-hero-secondary-btn {
    color: var(--theme-dark) !important;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
}

.home-hero-secondary-btn:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.home-hero-media-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 0.75rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #f1f3f5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.home-hero-media {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

.main-slider {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .home-hero-shell {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .home-hero-title {
        font-size: 2rem;
    }
    .home-hero-actions {
        flex-direction: column;
    }
    .home-hero-primary-btn,
    .home-hero-secondary-btn {
        width: 100%;
        text-align: center;
    }
    .home-hero-media-shell {
        min-height: 220px;
        border-radius: 16px;
    }
    .main-slider {
        aspect-ratio: 4 / 3;
    }
}

.slider-image-container,
.slider-image-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.slider-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* 2. Home Widgets (Hover Cards) */
.hover-card {
    border-radius: 20px;
    border: 1px solid #f1f3f5 !important;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01) !important;
}

.hover-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--theme-primary-rgb), 0.15) !important;
    box-shadow: 0 12px 30px rgba(var(--theme-primary-rgb), 0.05) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hover-card:hover .icon-box {
    transform: scale(1.05);
}

/* 3. Search Bar Container (Pill Search Design) */
.input-group-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid #e9ecef !important;
    border-radius: 50px !important;
    background-color: #ffffff !important;
    padding: 6px !important;
    display: flex;
    align-items: center;
}

.input-group-lg .form-control {
    border: none !important;
    background-color: transparent !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 1rem !important;
    color: var(--theme-dark);
}

.input-group-lg .form-control:focus {
    box-shadow: none !important;
    background-color: transparent !important;
}

.input-group-lg .btn {
    border: none !important;
    border-radius: 50px !important;
    padding: 0.6rem 1.8rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    background-color: var(--theme-primary) !important;
    color: var(--theme-white) !important;
    transition: background-color 0.2s ease;
}

.input-group-lg .btn:hover {
    background-color: var(--theme-primary-hover) !important;
}

/* 4. Demo Section */
.demo-home-cta {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 10%, rgba(var(--theme-primary-rgb), 0.06), transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #fdfdfd 50%, rgba(var(--theme-primary-rgb), 0.02) 100%);
    border: 1px solid rgba(var(--theme-primary-rgb), 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
}

.demo-home-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.demo-home-title {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--theme-dark);
    margin-bottom: 1rem;
}

.demo-home-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--theme-muted);
    margin-bottom: 1.8rem;
}

.demo-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.demo-home-primary-btn,
.demo-home-secondary-btn {
    border-radius: 30px;
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.demo-home-primary-btn {
    color: var(--theme-white) !important;
    background: var(--theme-primary);
    border: none;
    box-shadow: 0 10px 24px rgba(var(--theme-primary-rgb), 0.15);
}

.demo-home-primary-btn:hover {
    background: var(--theme-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(var(--theme-primary-rgb), 0.22);
}

.demo-home-secondary-btn {
    color: var(--theme-dark) !important;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
}

.demo-home-secondary-btn:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.demo-home-panel {
    position: relative;
    padding: 1.5rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #f1f3f5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.demo-home-panel-top {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.demo-home-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(var(--theme-primary-rgb), 0.15);
}

.demo-home-metrics {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.demo-home-metric-card {
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.demo-home-metric-card strong {
    display: block;
    font-size: 0.92rem;
    color: var(--theme-dark);
    margin-bottom: 0.15rem;
}

.demo-home-metric-card span {
    color: var(--theme-muted);
    font-size: 0.85rem;
}

.demo-home-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.demo-home-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #495057;
    font-weight: 500;
    font-size: 0.92rem;
}

.demo-home-feature-list i {
    color: var(--theme-primary);
}

@media (max-width: 991.98px) {
    .demo-home-cta {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .demo-home-cta {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .demo-home-actions {
        flex-direction: column;
    }
    .demo-home-primary-btn,
    .demo-home-secondary-btn {
        width: 100%;
        text-align: center;
    }
}

/* 5. Demo Journey Steps */
.demo-journey-section {
    padding: 3rem 2rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #f1f3f5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.01);
}

.demo-journey-heading {
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.demo-journey-eyebrow {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.demo-journey-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--theme-dark);
    margin-bottom: 0.8rem;
}

.demo-journey-description {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--theme-muted);
}

.demo-step-card {
    position: relative;
    padding: 1.8rem 1.5rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #eaeef2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--theme-primary-rgb), 0.15);
    box-shadow: 0 12px 30px rgba(var(--theme-primary-rgb), 0.04);
}

.demo-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 28px;
    padding: 0 0.8rem;
    border-radius: 999px;
    background-color: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.demo-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--theme-primary-rgb), 0.06);
    color: var(--theme-primary);
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
}

.demo-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 0.6rem;
}

.demo-step-text {
    color: var(--theme-muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

.demo-journey-footer {
    margin-top: 2.5rem;
}

@media (max-width: 991.98px) {
    .demo-journey-section {
        padding: 2rem 1.5rem;
    }
}

/* 6. Why Choose Us Section (Glassmorphic Features) */
.why-choose-section {
    padding: 3rem 2rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(var(--theme-primary-rgb), 0.05), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
    border: 1px solid #f1f3f5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.01);
}

.why-choose-heading {
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.why-choose-eyebrow {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.why-choose-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--theme-dark);
    margin-bottom: 0.8rem;
}

.why-choose-description {
    color: var(--theme-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

.feature-box {
    position: relative;
    padding: 1.6rem;
    background: #ffffff !important;
    border-radius: 20px;
    border: 1px solid #eaeef2 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.01) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--theme-primary-rgb), 0.04) !important;
    border-color: rgba(var(--theme-primary-rgb), 0.15) !important;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(var(--theme-primary-rgb), 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--theme-primary);
    margin-bottom: 1.2rem;
}

.feature-kicker {
    display: inline-block;
    color: var(--theme-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--theme-muted);
    line-height: 1.65;
    font-size: 0.9rem;
}

@media (max-width: 575.98px) {
    .why-choose-section {
        padding: 1.5rem;
        border-radius: 20px;
    }
}

/* 7. Trust Metrics, Testimonials, FAQ Cards */
.trust-showcase-section,
.testimonials-section,
.faq-section {
    padding: 3rem 2rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #f1f3f5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.01);
}

.trust-showcase-eyebrow,
.testimonials-eyebrow,
.faq-eyebrow {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.trust-showcase-title,
.testimonials-title,
.faq-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    font-weight: 800;
    color: var(--theme-dark);
    margin-bottom: 0.8rem;
}

.trust-showcase-text,
.testimonials-description {
    color: var(--theme-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

.trust-metric-card {
    padding: 1.4rem 1.2rem;
    border-radius: 18px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}

.trust-metric-card strong {
    display: block;
    color: var(--theme-dark);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.trust-metric-card span {
    display: block;
    color: var(--theme-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.testimonials-heading,
.faq-heading {
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.testimonial-card {
    padding: 1.8rem 1.5rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #eaeef2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.01);
}

.testimonial-stars {
    color: #f59e0b;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.testimonial-text {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.testimonial-author strong {
    display: block;
    color: var(--theme-dark);
    font-size: 0.92rem;
    margin-bottom: 0.1rem;
}

.testimonial-author span {
    display: block;
    color: var(--theme-muted);
    font-size: 0.85rem;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    border: 1px solid #eaeef2;
    border-radius: 14px;
    background-color: #ffffff;
    padding: 0 1.2rem;
    transition: all 0.25s ease;
}

.faq-item[open] {
    border-color: rgba(var(--theme-primary-rgb), 0.15);
    background-color: #fdfdfd;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 2rem 1rem 0;
    position: relative;
    font-weight: 600;
    color: var(--theme-dark);
    font-size: 0.98rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--theme-primary);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    color: var(--theme-muted);
    line-height: 1.65;
    font-size: 0.92rem;
    margin: 0 0 1rem;
}

@media (max-width: 575.98px) {
    .trust-showcase-section,
    .testimonials-section,
    .faq-section {
        padding: 1.5rem 1.2rem;
    }
}

/* 8. Products Carousel & Filter Section (Kompakt ve Apple Tarzı) */
.swiper-product,
.product-swiper {
    height: auto !important;
    max-height: none !important;
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.product-swiper .swiper-wrapper {
    height: auto !important;
}

.product-swiper .swiper-slide {
    height: auto !important;
    display: flex !important;
    align-items: stretch !important;
}

.product-frame-card {
    background-color: #ffffff;
    border: 1px solid #f1f3f5;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
}

.product-filters .nav-link {
    border: none;
    border-radius: 30px;
    padding: 0.5rem 1.1rem;
    margin: 0.2rem 0;
    color: #495057;
    background-color: transparent;
    transition: all 0.25s ease;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

.product-filters .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--theme-primary);
}

.product-filters .nav-link.active {
    background-color: var(--theme-primary) !important;
    color: var(--theme-white) !important;
}

.product-card-modern {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #eaeef2 !important;
    border-radius: 16px !important;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(var(--theme-primary-rgb), 0.15) !important;
}

.card-img-top-wrapper {
    aspect-ratio: 4 / 3 !important; /* Restore to original 4/3 aspect-ratio to prevent image cropping */
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
}

.card-img-top-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-img-top-wrapper img.loaded {
    opacity: 1;
}

.product-card-modern .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1rem !important; /* Slightly more compact padding */
}

.product-card-modern .card-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--theme-dark);
    min-height: 38px;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card-topline {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.product-type-badge,
.product-package-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.product-type-badge {
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
}

.product-package-badge {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
}

.product-meta {
    font-size: 0.75rem;
    color: var(--theme-muted);
    margin-bottom: 0.6rem;
}

.product-price-container {
    margin-bottom: 1rem;
    min-height: 38px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--theme-price);
}

.product-price-original {
    text-decoration: line-through;
    color: var(--theme-muted);
    font-size: 0.82rem;
}

.product-price-note {
    color: var(--theme-muted);
    font-size: 0.8rem;
}

.product-campaign-badge-card {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 30px;
    background: rgba(var(--theme-primary-rgb), 0.08) !important;
    color: var(--theme-primary) !important;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.15) !important;
}

.product-campaign-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 30px;
    background: rgba(220, 38, 38, 0.06);
    color: #c62828;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.product-card-modern .btn-details {
    margin-top: auto;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.55rem;
}

/* Swiper navigation buttons fix with FontAwesome for dynamic theme color integration */
.swiper-button-next,
.swiper-button-prev {
    height: 38px !important;
    width: 38px !important;
    background-color: #ffffff !important;
    border: 1px solid #eaeef2 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
    color: var(--theme-primary) !important;
    transition: all 0.25s ease !important;
    background-image: none !important; /* Clear broken inline background SVGs */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', sans-serif !important;
    font-weight: 900 !important;
    font-size: 0.85rem !important;
    color: var(--theme-primary) !important;
    transition: color 0.25s ease !important;
}

.swiper-button-prev::after {
    content: '\f053' !important; /* Left chevron */
}

.swiper-button-next::after {
    content: '\f054' !important; /* Right chevron */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--theme-primary) !important;
    border-color: var(--theme-primary) !important;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #ffffff !important;
}

.swiper-pagination-bullet {
    background-color: rgba(var(--theme-primary-rgb), 0.2);
    border: 1px solid rgba(var(--theme-primary-rgb), 0.3);
}

.swiper-pagination-bullet-active {
    background-color: var(--theme-primary) !important;
    border-color: var(--theme-primary) !important;
}

/* 9. Call Me Form Background */
.callmebg {
    background-color: #fdfdfd;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.08);
    background-image:
        radial-gradient(circle at 10% 90%, rgba(var(--theme-primary-rgb), 0.04), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(var(--theme-primary-rgb), 0.04), transparent 30%);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    margin: 3.5rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.callmebg h3 {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--theme-dark);
}

#callMeForm .form-control {
    border-radius: 30px;
    border: 1px solid #e9ecef;
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    background-color: #ffffff;
}

#callMeForm .form-control:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 4px rgba(var(--theme-primary-rgb), 0.1);
}

#callMeForm .btn {
    border-radius: 30px;
    padding: 0.7rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: var(--theme-primary);
    color: #ffffff !important;
}

#callMeForm .btn:hover {
    background-color: var(--theme-primary-hover);
    transform: translateY(-1px);
}

/* 10. Apple-like Support Section */
.section-support h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--theme-dark);
}

.icon-circle-support {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #ffffff;
    transition: transform 0.25s ease;
}

.icon-circle-support:hover {
    transform: scale(1.05);
}

.support-box h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.support-box h6 {
    font-size: 1.3rem;
    font-weight: 800;
}

/* Support Circle Colors */
.bg-whatsapp {
    background-color: #25D366 !important;
}

.text-whatsapp {
    color: #25D366 !important;
}

.bg-tech {
    background-color: var(--theme-primary) !important;
}

.text-tech {
    color: var(--theme-primary) !important;
}

/* 9. Premium Stats Grid Section */
.stats-grid-shell {
    background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.03) 0%, rgba(var(--theme-primary-rgb), 0.06) 100%);
    border: 1px solid rgba(var(--theme-primary-rgb), 0.08);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02) !important;
}

.stat-box-modern {
    text-align: center;
    padding: 1.8rem 1rem;
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01) !important;
}

.stat-box-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(var(--theme-primary-rgb), 0.08) !important;
    border-color: rgba(var(--theme-primary-rgb), 0.2) !important;
}

.stat-icon-wrapper {
    width: 54px;
    height: 54px;
    line-height: 54px;
    border-radius: 50px;
    background: rgba(var(--theme-primary-rgb), 0.08);
    color: var(--theme-primary);
    margin: 0 auto 1.2rem auto;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-box-modern:hover .stat-icon-wrapper {
    background: var(--theme-primary);
    color: #ffffff;
    transform: rotate(360deg);
}

.stat-num-container {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--theme-dark);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    color: var(--theme-primary);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--theme-muted);
    margin-bottom: 0;
    font-weight: 500;
}

/* 10. Interactive Prep Roadmap Assistant */
.roadmap-assistant-container {
    padding: 1rem 0;
}

.roadmap-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--theme-primary);
    background: rgba(var(--theme-primary-rgb), 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.roadmap-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--theme-dark);
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.roadmap-description {
    color: var(--theme-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.roadmap-feature-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    background: rgba(var(--theme-primary-rgb), 0.05);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.roadmap-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 24px;
    padding: 2.5rem;
}

.roadmap-step-label {
    font-weight: 600;
    color: var(--theme-dark);
    font-size: 1rem;
    display: block;
}

.btn-roadmap-option {
    border: 2px solid #eaeef2 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: var(--theme-dark) !important;
    transition: all 0.25s ease !important;
}

.btn-roadmap-option:hover {
    border-color: rgba(var(--theme-primary-rgb), 0.3) !important;
    background: rgba(var(--theme-primary-rgb), 0.01) !important;
}

.btn-check:checked + .btn-roadmap-option {
    border-color: var(--theme-primary) !important;
    background: rgba(var(--theme-primary-rgb), 0.04) !important;
    box-shadow: 0 8px 20px rgba(var(--theme-primary-rgb), 0.08) !important;
}

.btn-roadmap-option i {
    color: var(--theme-muted);
    transition: color 0.25s ease;
}

.btn-check:checked + .btn-roadmap-option i {
    color: var(--theme-primary);
}

.btn-roadmap-option strong {
    font-size: 0.9rem;
    display: block;
}

.btn-generate-roadmap {
    box-shadow: 0 10px 24px rgba(var(--theme-primary-rgb), 0.2) !important;
}

/* Roadmap Result Area */
.roadmap-result-panel {
    animation: fadeIn 0.4s ease-in-out;
}

.result-metric-box {
    background: rgba(var(--theme-primary-rgb), 0.03);
    border: 1px solid rgba(var(--theme-primary-rgb), 0.06);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
}

.result-metric-title {
    display: block;
    font-size: 0.8rem;
    color: var(--theme-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.result-metric-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.result-text-area {
    background: #f8f9fa;
    border-left: 4px solid var(--theme-primary);
    border-radius: 0 12px 12px 0;
    padding: 1.2rem;
}

.result-focus-badge {
    background: #f1f3f5;
    color: #495057;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Premium Search Tags */
.premium-search-group {
    border-radius: 50px !important;
    overflow: hidden;
    border: 2px solid #eaeef2 !important;
    background: #ffffff;
}

.premium-search-group:focus-within {
    border-color: var(--theme-primary) !important;
    box-shadow: 0 10px 30px rgba(var(--theme-primary-rgb), 0.08) !important;
}

.premium-search-group .form-control {
    border: none !important;
    box-shadow: none !important;
}

.premium-search-group .btn-primary {
    border-radius: 0 50px 50px 0 !important;
}

.badge-tag {
    background: #f1f3f5 !important;
    color: #495057 !important;
    border: 1px solid #e9ecef !important;
    font-weight: 500 !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    margin: 0 3px;
    display: inline-block;
}

.badge-tag:hover {
    background: var(--theme-primary) !important;
    color: #ffffff !important;
    border-color: var(--theme-primary) !important;
    transform: translateY(-2px);
}

/* 11. Sınav Geri Sayım Sayaçları */
.countdown-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--theme-primary);
    background: rgba(var(--theme-primary-rgb), 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.countdown-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--theme-dark);
}

.exam-countdown-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    padding: 2.2rem;
    transition: all 0.3s ease;
}

.exam-countdown-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(var(--theme-primary-rgb), 0.2);
}

.exam-badge-type {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--theme-primary);
    background: rgba(var(--theme-primary-rgb), 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
}

.exam-name-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--theme-dark);
}

.countdown-timer-group {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem 0.5rem;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    min-width: 65px;
    padding: 8px 5px;
}

.timer-unit strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-dark);
    line-height: 1.2;
}

.timer-unit span {
    font-size: 0.65rem;
    color: var(--theme-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.milestone-item {
    font-size: 0.82rem;
    color: var(--theme-muted);
}

.milestone-item i {
    font-size: 0.75rem;
}

/* 12. İnteraktif Platform Arayüz Keşif Modülü */
.platform-tour-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--theme-primary);
    background: rgba(var(--theme-primary-rgb), 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.platform-tour-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--theme-dark);
}

.platform-tour-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 24px;
    overflow: hidden;
}

.tour-tab-btn {
    background: transparent;
    border-radius: 14px;
    color: var(--theme-dark);
    transition: all 0.25s ease;
}

.tour-tab-btn:hover {
    background: #f8f9fa;
}

.tour-tab-btn.active {
    background: rgba(var(--theme-primary-rgb), 0.05);
    border-left: 4px solid var(--theme-primary) !important;
}

.tour-tab-icon {
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background: #f1f3f5;
    color: var(--theme-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.tour-tab-btn.active .tour-tab-icon {
    background: var(--theme-primary);
    color: #ffffff;
}

.tour-tab-btn h6 {
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.tour-tab-btn.active h6 {
    color: var(--theme-primary);
}

/* Browser Mockup */
.mockup-browser-window {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    background: #ffffff;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.browser-url-bar {
    background: #f1f3f5;
    border-radius: 20px;
    padding: 2px 20px;
    font-size: 0.72rem;
    width: 60%;
    display: inline-block;
    text-align: left;
}

.tour-mockup-wrapper {
    animation: fadeIn 0.4s ease-in-out;
}

.bot-bubble {
    border-left: 3px solid var(--theme-primary);
    background: #f8f9fa !important;
}

/* 13. Derece Yapan Öğrenci Kartları Slider'ı */
.achievers-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--theme-primary);
    background: rgba(var(--theme-primary-rgb), 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.achievers-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--theme-dark);
}

.achiever-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.achiever-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(var(--theme-primary-rgb), 0.15);
}

.achiever-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--theme-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid #e9ecef;
}

.achiever-rank-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--theme-primary);
    background: rgba(var(--theme-primary-rgb), 0.06);
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
}

.achiever-quote {
    line-height: 1.5;
    font-style: italic;
}

.achievers-swiper .swiper-pagination-bullet-active {
    background: var(--theme-primary) !important;
    width: 18px !important;
    border-radius: 5px !important;
}

.achievers-swiper {
    padding-bottom: 3.5rem !important;
}

/* Mobile Optimization & Overflow Prevention for New Sections */
@media (max-width: 575.98px) {
    .platform-tour-content-panel {
        padding: 1.2rem !important;
    }
    .platform-tour-tabs {
        padding: 1.2rem !important;
    }
    .roadmap-card {
        padding: 1.5rem !important;
    }
    .exam-countdown-card {
        padding: 1.5rem 1rem !important;
    }
    .achiever-card {
        padding: 1.5rem !important;
    }
    .browser-url-bar {
        width: 75% !important;
        padding: 2px 10px !important;
        font-size: 0.65rem !important;
    }
    .countdown-timer-group {
        padding: 0.8rem 0.2rem !important;
        gap: 0.25rem !important;
    }
}

@media (max-width: 360px) {
    .timer-unit {
        min-width: 52px !important;
        padding: 6px 2px !important;
    }
    .timer-unit strong {
        font-size: 1.2rem !important;
    }
    .timer-unit span {
        font-size: 0.6rem !important;
    }
}

@media (max-width: 575.98px) {
    .quick-search-tags {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding: 4px 0 10px !important;
        margin-top: 14px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 8px !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }
    .quick-search-tags::-webkit-scrollbar {
        display: none !important;
    }
    .quick-search-tags span {
        flex-shrink: 0 !important;
        margin-right: 4px !important;
    }
    .badge-tag {
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 6px 14px !important;
        font-size: 0.82rem !important;
    }
}
