@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #FFCC00;
    --dark: #0a0a0a;
    --light: #f4f4f4;
    --gray: #666;
    --border: #eaeaea;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: #ffffff;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: --dark;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.relative-container {
    position: relative;
}

/* --- Header --- */
#top-bar {
    background: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    z-index: 1100;
    position: relative;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lang-select {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

#main-header {
    background: #000;
    /* Dark Header */
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: 0.3s;
    color: #fff;
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
    color: #fff;
}

.logo span.dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li {
    position: relative;
    font-weight: 500;
    font-size: 15px;
}

.nav-links li a {
    color: #ccc;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #fff;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.btn-primary-glow {
    background: var(--primary);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
    display: inline-block;
}


.btn-primary-glow:hover {
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
    transform: scale(1.05);
}

/* Custom Image Button Reset */


/* Drops & Mega */
/* Drops & Mega */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--border);
    margin-top: 20px;
    /* Added gap */
}


/* Safe Hover Area (Invisible Bridge) */
.dropdown:hover::after,
.mega:hover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    /* Matches margin-top */
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li a {
    font-size: 14px;
    color: #555;
}

.dropdown-menu li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 30px;
    display: none;
    z-index: 1001;
    border: 1px solid var(--border);
}

.mega:hover .mega-menu {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.mega-col h4 {
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
    color: #000;
}

.mega-col ul li {
    margin-bottom: 8px;
}

.mega-col ul li a {
    color: #555;
    font-size: 14px;
}

.mega-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: 0.4s;
    padding: 40px;
    overflow-y: auto;
    color: #000;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #000;
}

.mobile-menu-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}

.mobile-group-header {
    color: #999;
    font-size: 13px;
    margin: 15px 0 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- HERO SLIDER --- */
#hero {
    height: 60vh;
    /* SHORTER HEIGHT AS REQUESTED */
    min-height: 450px;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    background: #000;
    /* Dark Background */
    display: flex;
    flex-direction: column;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-wrapper.h-100 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 40px;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    padding-right: 50px;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px 5px 5px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.badge-pill {
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    color: #000;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    color: #fff;
}

.hero-desc {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-dark-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-main {
    background: var(--primary);
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.rocket-img {
    max-width: 100%;
    width: 400px;
}

/* Slightly smaller image */
.floating-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Modern Slider Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: 300;
}

.swiper-pagination-bullet {
    background: #666;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Hero BG Shapes (Placeholder for visual flair) */
.hero-bg-shapes::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: var(--primary);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-bg-shapes::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 500px;
    height: 500px;
    background: #00c6ff;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

/* Brand Strip Full Width */
#brand-strip-full {
    background: #fff;
    border-top: none;
    padding: 20px 0;
    width: 100%;
    z-index: 10;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #eee;
}

.strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    margin-left: -10px;
}

.mini-partners {
    display: flex;
    gap: 30px;
    opacity: 0.7;
}

/* --- Sections Common --- */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

/* Slider Navigation */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

/* --- Bento Services Grid (Light Theme) --- */
/* --- Bento Services Grid (Light Theme - 5 Column Layout) --- */
.bento-section {
    background: #fff;
    width: 100%;
    overflow: hidden;
}

/* Wider Container for Bento */
.bento-section .container {
    max-width: 1600px !important;
    /* Force wider width */
    padding: 0 40px;
}

/* Decoration Image for Tall Card */
.big-decor-img {
    width: 140px;
    /* Slightly smaller for icon */
    height: auto;
    object-fit: contain;
    margin: auto;
    /* Center fully in available space */
    display: block;
    align-self: center;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
    transition: 0.4s;
    flex-grow: 1;
    /* Allow it to take available space */
}

.service-card:hover .big-decor-img {
    transform: scale(1.1) rotate(-5deg);
}

.bento-grid {
    display: grid;
    /* 5 Columns - Proportional Sizing */
    grid-template-columns: repeat(5, 1fr);
    /* Taller Rows: Min 250px (Compact) */
    grid-template-rows: minmax(260px, auto) minmax(260px, auto);
    gap: 20px;
    /* Tighter gap */
}

.service-card {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 20px;
    /* Compact padding */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
    background: #fff;
}

/* Icons */
.card-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    /* Compact margin */
    background: transparent;
    border: 1px solid var(--primary);
}

.service-card:hover .card-icon-box {
    background: var(--primary);
    color: #000;
}

/* Typography */
.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
    /* Very tight margin */
    line-height: 1.3;
}

.service-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    /* Compact margin */
    line-height: 1.4;
    flex-grow: 0;
    /* Don't stretch */
}

/* Link Style Button */
.card-btn-circle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #000;
    font-size: 13px;
    width: fit-content;
    background: none;
    padding: 0;
    margin-top: 5px;
    /* Minimal gap */
}

.card-btn-circle i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    font-size: 12px;
    transition: 0.3s;
    color: #000;
}

.card-btn-circle:hover i {
    transform: rotate(-45deg);
}

/* --- Strict Explicit Grid Placement (5 Cols) --- */

/* 1. Kutu: Sol En Baştaki (Tall) */
.service-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    /* Span 2 Rows */
    background: #fff;
    border: 1px solid #ddd;
}

.service-card:nth-child(1) .card-icon-box {
    width: 70px;
    height: 70px;
    font-size: 32px;
    background: #fffcf0;
    border: none;
}

.service-card:nth-child(1) h3 {
    font-size: 22px;
}

/* 2. Kutu: Orta Üst (Wide) -> Spans cols 2 & 3 */
.service-card:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
}

/* 3. Kutu: Sağ Üst (Wide) -> Spans cols 4 & 5 */
.service-card:nth-child(3) {
    grid-column: 4 / 6;
    grid-row: 1;
}

/* 4. Kutu: Orta Alt (Wide) -> Spans cols 2 & 3 */
.service-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

/* 5. Kutu: Sağ Alt Sol (Small) -> Spans col 4 */
.service-card:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2;
}

/* 6. Kutu: Sağ Alt Sağ (Small) -> Spans col 5 */
.service-card:nth-child(6) {
    grid-column: 5 / 6;
    grid-row: 2;
}


/* Responsive */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .service-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    /* Maybe span tall one? */
    .service-card:nth-child(1) {
        grid-row: span 2;
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .service-card:nth-child(1) {
        grid-row: auto;
    }
}

/* Stats */
#why-us {
    background: #fafafa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-count {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-box p {
    font-weight: 600;
    color: #333;
}

/* Experts & Testimonials */
.expert-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.expert-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.expert-text p {
    color: #666;
    margin-bottom: 30px;
}

.testimonials-slider {
    background: #000;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.testi-header h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.testi-card {
    margin-top: 30px;
}

.testi-card .stars {
    color: var(--primary);
    margin-bottom: 15px;
}

.testi-card p {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 15px;
    font-size: 16px;
}

.client-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

/* Process */
.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    position: relative;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: 0.3s;
}

.step-card:hover {
    background: #fffcf0;
    border-color: var(--primary);
}

.step-no {
    display: block;
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 10px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Timeline (Vertical style for variety) */
#brand-journey {
    background: #0a0a0a;
    color: #fff;
}

#brand-journey .section-header h2 {
    color: #fff;
}

#brand-journey .section-header p {
    color: #aaa;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-left: 2px solid #333;
    padding-left: 40px;
}

.time-item {
    margin-bottom: 40px;
    position: relative;
}

.time-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.time-item h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 5px;
}

.time-item p {
    color: #ccc;
}


/* --- Split Section Layout (FAQ & Partners) --- */
.split-section-wrapper {
    padding: 80px 0;
    position: relative;
    /* Light gray background for contrast if needed, or keeping it white/section dependent */
    /* Image shows light clean background */
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Info Column */
.split-info .section-tag {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.split-info h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.split-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 90%;
}

.split-info a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
    transition: 0.3s;
}

.split-info a:hover {
    color: var(--primary);
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acc-item {
    background: #fff;
    border-radius: 15px;
    /* Rounded corners */
    padding: 5px 20px;
    /* Slim padding context */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Subtle shadow */
    transition: 0.3s;
}

.acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #444;
    transition: 0.3s;
}

.acc-header span {
    max-width: 90%;
}

.acc-btn {
    width: 35px;
    height: 35px;
    background: var(--primary);
    /* Yellow button */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.acc-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.acc-body {
    display: none;
    padding: 0 10px 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    transition: 0.3s;
}

.acc-header.active+.acc-body {
    display: block;
    animation: fadeIn 0.3s ease;
}

.acc-header.active .acc-btn {
    transform: rotate(45deg);
    background: #000;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partner Cards Styles */
.partners-grid-new {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    /* Spread them out */
}

.partner-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 140px;
    transition: 0.3s;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.p-link-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
    color: #ccc;
    /* Light blueish/gray in design */
    transition: 0.3s;
}

.partner-card:hover .p-link-icon {
    color: var(--primary);
}

.p-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.p-logo span {
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-grid-new {
        flex-direction: column;
    }

    .split-info h2 {
        font-size: 32px;
    }

    .journey-grid {
        /* Fix from previous ensuring wrapping */
        flex-wrap: wrap;
    }
}

/* Footer */
#main-footer {
    background: #000;
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

.footer-brand h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.footer-social a:hover {
    background: var(--primary);
    color: #000;
}

.footer-nav h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
    display: flex;
    gap: 10px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* ANIMATION OVERRIDES FOR VISIBILITY */
.reveal {
    opacity: 1 !important;
    transform: none !important;
}

.animate-text {
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive */
@media (max-width: 992px) {

    .nav-links,
    .btn-primary-glow {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mega-menu {
        display: none !important;
    }

    h1 {
        font-size: 40px;
    }

    .hero-wrapper.h-100 {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-top: 20px;
    }

    /* Force Image Hidden on Mobile */
    .hero-image {
        display: none !important;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-grid,
    .step-grid {
        grid-template-columns: 1fr 1fr;
    }

    .expert-wrapper,
    .comm-grid,
    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .strip-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    #hero {
        height: auto;
        min-height: auto;
        padding-bottom: 0;
    }

    .swiper-slide {
        height: auto;
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Trusted By Section --- */
#trusted-by {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eee;
}

.trusted-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

/* Left: Experience Box */
.trusted-left {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-box {
    background: var(--primary);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 4px solid #fff;
}

.exp-box .stars {
    color: #000;
    margin-bottom: 5px;
    font-size: 16px;
    letter-spacing: 2px;
}

.exp-year {
    font-size: 80px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin: 10px 0;
    font-family: var(--font-heading);
}

.exp-text {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    display: block;
    line-height: 1.2;
}

.trusted-title {
    color: #000;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
}

/* Right: Animated Marquees */
.trusted-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    position: relative;
    /* Mask for fading edges - adjusted for light bg */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-row {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    /* Gap correction for loop */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: fit-content;
}

/* Animations */
.marquee-left .marquee-content {
    animation-name: scrollLeft;
    animation-duration: 40s;
}

.marquee-right .marquee-content {
    animation-name: scrollRight;
    animation-duration: 45s;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Logo Pills */
.marquee-content span {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 50px;
    height: 70px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    transition: 0.3s;
}

.marquee-content span:hover {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.marquee-content img {
    max-height: 28px;
    /* Adjusted specific to logo types usually */
    max-width: 120px;
    filter: grayscale(100%);
    /* Just greyscale, no brightness boost */
    opacity: 0.6;
    transition: 0.3s;
}

.marquee-content span:hover img {
    filter: none;
    opacity: 1;
}

/* --- Brand Journey High-End (Invisible Grid) --- */
/* Override container width specifically for this section to fit all cards */
#brand-journey .container {
    max-width: 1600px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    position: relative;
    padding-top: 60px;
    padding-bottom: 40px;
}

/* Connecting Line (Gradient) */
.journey-line {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--primary) 20%,
            var(--primary) 80%,
            transparent 100%);
    opacity: 0.3;
    z-index: 0;
    display: block;
    /* Ensure visible */
}

.journey-card {
    background: #fff;
    /* Keep white bg */
    border: none;
    padding: 40px 10px 30px;
    /* Reduced side padding to fit */
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    overflow: hidden;
    /* For watermark cropping */
    /* Floating shadow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.journey-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Minimal Icon Box */
.j-icon-box {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: #fff;
    border-radius: 30%;
    /* Squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    z-index: 2;
}

.journey-card:hover .j-icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.3);
    background: #fff;
    /* Keep white bg */
}

.j-icon-box i {
    font-size: 36px;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s;
}

.journey-card:hover .j-icon-box i {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9900 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Watermark Number */
.j-step {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 140px;
    font-weight: 900;
    color: #000;
    opacity: 0.03;
    /* Very subtle watermark */
    line-height: 1;
    font-family: var(--font-heading);
    z-index: 0;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    pointer-events: none;
}

.journey-card:hover .j-step {
    opacity: 0.06;
    transform: translateX(-10px);
    color: var(--primary);
}

/* Typography */
.journey-card h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #000;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.journey-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    padding: 0 5px;
}

/* Mobile Tweaks */
@media (max-width: 1200px) {

    /* Tablet: wrapped grid */
    .journey-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .journey-line {
        display: none;
    }
}

@media (max-width: 992px) {

    /* Mobile: 2 cols */
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }

    .trusted-left {
        width: 100%;
        flex-direction: row;
        /* Horizontal on mobile maybe? */
        align-items: center;
        justify-content: center;
        text-align: left;
    }

    .exp-box {
        padding: 20px;
        width: 160px;
        flex-shrink: 0;
    }

    .exp-year {
        font-size: 50px;
        margin: 5px 0;
    }

    .exp-text {
        font-size: 16px;
    }

    .trusted-title {
        font-size: 30px;
    }
}

/* --- Google Reviews Slider --- */
.reviews-section {
    padding: 60px 0 80px;
    background: #fafafa;
    /* Light contrast background */
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.g-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    font-weight: 700;
    color: #555;
    font-size: 14px;
}

.g-badge i {
    color: #4285F4;
    /* Google Blue */
    font-size: 18px;
}

.reviews-header h3 {
    font-size: 32px;
    color: #000;
}

.reviewsSwiper {
    padding: 20px 20px 60px !important;
    /* Extra bottom padding for shadow/safety */
    margin: 0 -20px;
    /* Negative margin to allow full bleed scroll on mobile if needed */
}

.review-slide {
    width: 235px !important;
    /* Slightly increased width */
    height: auto;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    height: 100%;
    min-height: 380px;
    /* Taller vertical shape */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #eee;
}

.rc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rc-stars {
    color: #FFD700;
    /* Gold */
    font-size: 14px;
    letter-spacing: 2px;
}

.rc-g-icon {
    color: #ddd;
    font-size: 20px;
}

.rc-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.rc-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rc-avatar {
    width: 45px;
    height: 45px;
    background: #4285F4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.rc-avatar.color-2 {
    background: #34A853;
}

/* Green */
.rc-avatar.color-3 {
    background: #EA4335;
}

/* Red */

.rc-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #000;
}

.rc-info span {
    font-size: 12px;
    color: #888;
}

/* Mobile responsive for reviews */
/* --- Blog Section --- */
.blog-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #f5f5f5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-img {
    height: 180px;
    background: #f9f9f9;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.no-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 30px;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
    border: 1px solid transparent;
    width: fit-content;
}

.btn-read-more:hover {
    gap: 10px;
    color: #000;
}

/* Tablet */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- New Footer Redesign --- */
.new-footer {
    background-color: #0d1b2a;
    /* Dark Blue / Navy */
    color: #fff;
    padding: 60px 0 40px;
    font-size: 14px;
}

.footer-wide {
    max-width: 1600px !important;
    /* Force wider container */
    padding: 0 40px !important;
    width: 100%;
}

.footer-top-desc {
    text-align: center;
    max-width: 100%;
    /* Spread full width */
    margin: 0 auto 50px;
    opacity: 0.8;
    line-height: 1.6;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    /* Prevent wrapping if possible on large screens */
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 150px;
    /* Allow shrinking slightly to fit 6 cols */
}

.brand-col {
    flex: 1.5;
    /* Wider for logo */
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #fff;
}

.motto-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    max-width: 200px;
}

.quote-icon {
    font-size: 12px;
    color: #ccc;
    position: absolute;
    top: 5px;
    left: 5px;
}

.quote-icon-right {
    font-size: 12px;
    color: #ccc;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 13px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact Column */
.contact-col {
    text-align: right;
    /* Align right like image */
}

.info-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align right */
    gap: 15px;
    margin-bottom: 20px;
}

.icon-lg {
    font-size: 35px;
    color: #fff;
}

.info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #ccc;
    letter-spacing: 1px;
}

.info-phone {
    display: block;
    font-size: 18px;
    /* Reduced from 20px */
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    /* Prevent breaking */
}

.social-area span {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #ccc;
}

.social-area a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .footer-row {
        flex-wrap: wrap;
    }

    .footer-col {
        min-width: 45%;
        margin-bottom: 30px;
    }

    .brand-col,
    .contact-col {
        min-width: 100%;
        text-align: center;
    }

    .contact-col,
    .info-line {
        justify-content: center;
    }

    .motto-box {
        margin: 0 auto;
    }
}

/* --- Contact Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    /* Flex to center */
    opacity: 1;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    /* Prevent overflow on small screens */
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 5px;
    color: #000;
    font-size: 22px;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.popup-form input:focus,
.popup-form select:focus {
    border-color: var(--primary);
}

.btn-popup-submit {
    width: 100%;
    background: var(--primary);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: 0.3s;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 13px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact Column */
.contact-col {
    text-align: right;
    /* Align right like image */
}

.info-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align right */
    gap: 15px;
    margin-bottom: 20px;
}

.icon-lg {
    font-size: 35px;
    color: #fff;
}

.info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #ccc;
    letter-spacing: 1px;
}

.info-phone {
    display: block;
    font-size: 18px;
    /* Reduced from 20px */
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    /* Prevent breaking */
}

.social-area span {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #ccc;
}

.social-area a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .footer-row {
        flex-wrap: wrap;
    }

    .footer-col {
        min-width: 45%;
        margin-bottom: 30px;
    }

    .brand-col,
    .contact-col {
        min-width: 100%;
        text-align: center;
    }

    .contact-col,
    .info-line {
        justify-content: center;
    }

    .motto-box {
        margin: 0 auto;
    }
}

/* --- Contact Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    /* Flex to center */
    opacity: 1;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    /* Prevent overflow on small screens */
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 5px;
    color: #000;
    font-size: 22px;
}

.popup-form .form-group {
    margin-bottom: 15px;
}

.popup-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.popup-form input:focus,
.popup-form select:focus {
    border-color: var(--primary);
}

.btn-popup-submit {
    width: 100%;
    background: var(--primary);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-popup-submit:hover {
    background: #e6b800;
    /* Darker yellow */
}

/* CSS Update for Brand Strip Spacing */
#brand-strip-full {
    width: 100%;
    margin-top: 0;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1500px !important;
    /* Override standard container */
    margin: 0 auto;
    /* Center the container */
    padding: 0 30px;
    /* Add breathing room since it's full width */
    flex-wrap: nowrap;
    /* Prevent stacking */
}

/* Push Left Side More Left */
.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
    padding-left: 0;
}

@media (max-width: 991px) {
    .strip-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-proof {
        flex-direction: column;
        margin-right: 0;
        gap: 10px;
    }

    .mini-partners {
        margin-left: 0 !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .mini-partners span {
        font-size: 16px !important;
        /* Smaller text for partners */
    }
}

/* Push Right Side More Right */
.mini-partners {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

/* --- Floating Action Buttons (New) --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse;
    /* Scroll Top at bottom */
    gap: 15px;
    z-index: 9999;
    opacity: 1;
    /* Visible by default */
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Scroll Top */
.float-top {
    background: #000;
    border: 2px solid #fff;
}

/* Quote */
.float-quote {
    background: var(--primary);
    color: #000;
}

.float-quote::after {
    content: 'Teklif Al';
    position: absolute;
    right: 60px;
    background: #fff;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    white-space: nowrap;
}

.float-quote:hover::after {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* WhatsApp */
.float-whatsapp {
    background: #25D366;
}

/* Phone */
.float-phone {
    background: #007bff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* --- Content Styling (Modern Text) --- */
.content-body {
    max-width: 1000px;
    /* Increased from 800px to avoid squeezed look */
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Hide manual BRs to prevent double spacing */
.content-body>br {
    display: none;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.content-body h2 {
    font-size: 28px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.content-body h3 {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.content-body p {
    margin-bottom: 10px;
}

.content-body ul,
.content-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-body li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 10px;
}

/* Custom Bullet/Number Styling */
.content-body ul {
    list-style: none;
    /* Hide default bullets */
}

/* CSS Shape for Bullet - Encoding Safe */
.content-body ul li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
    margin-left: -20px;
    position: relative;
    top: -2px;
}

.content-body ol {
    list-style: none;
    /* Hide default numbers */
    counter-reset: my-counter;
}

.content-body ol li {
    counter-increment: my-counter;
    position: relative;
    padding-left: 35px;
    /* Space for the number */
}

.content-body ol li::before {
    content: counter(my-counter) ".";
    color: #000;
    background: var(--primary);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.content-body a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 3px;
    font-weight: 600;
    transition: 0.3s;
}

.content-body a:hover {
    background: var(--primary);
    text-decoration: none;
}

/* --- Rich Text / Content Area Styles --- */
.rich-text {
    font-family: var(--font-body);
    color: #444;
}

/* Base heading styles for rich-text */
.rich-text h1,
.rich-text h2,
.rich-text h3,
.rich-text h4 {
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

/* The yellow underline accent */
.rich-text h1::after,
.rich-text h2::after,
.rich-text h3::after,
.rich-text h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    /* Specific width for accent look */
    height: 5px;
    background-color: var(--primary);
}

/* Ensure headings stay block-level relative to siblings */
.rich-text h1,
.rich-text h2,
.rich-text h3,
.rich-text h4 {
    display: block;
    width: fit-content;
}

/* PROTECTION: Revert styles for headings inside structured components */
.feature-box h4,
.faq-item h4,
.story-info h3 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
    font-size: inherit !important;
    width: auto !important;
}

.feature-box h4::after,
.faq-item h4::after,
.story-info h3::after {
    display: none !important;
}

.rich-text h1 {
    font-size: 2.5rem;
}

.rich-text h2 {
    font-size: 2rem;
}

.rich-text h3 {
    font-size: 1.6rem;
}

.rich-text h4 {
    font-size: 1.3rem;
}

.rich-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    color: #555;
}

.rich-text ul,
.rich-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.rich-text li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.rich-text strong {
    color: #111;
    font-weight: 700;
}

@media (max-width: 768px) {
    .rich-text h1 {
        font-size: 2.1rem;
    }

    .rich-text h2 {
        font-size: 1.8rem;
    }

    .rich-text h3 {
        font-size: 1.5rem;
    }
}