/* ===== CSS VARIABLES - CORPORATE RED & WHITE THEME ===== */
:root {
    --primary: #E61A27;
    --primary-dark: #B3121D;
    --primary-light: #FF4D5A;
    --primary-gradient: linear-gradient(180deg, #E61A27 0%, #B3121D 100%);
    --bg-main: #FFFFFF;
    --bg-alt: #F3F4F6;
    --bg-card: #FFFFFF;
    --text-heading: #111827;
    --text-body: #4B5563;
    --text-muted: #6B7280;
    --text-light: #FFFFFF;
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-red: 0 10px 20px -5px rgba(230, 26, 39, 0.3);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
    --section-padding: 56px 0;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== UTILITY ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-badge::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    color: var(--text-body);
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.7;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--text-light);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: var(--shadow-red);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-heading);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-medium);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(230, 26, 39, 0.05);
}

/* ===== SCROLL PROGRESS ===== */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-dark);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background: var(--primary-gradient);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.navbar.scrolled {
    padding: 8px 0;
    background: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--text-light) !important;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo span {
    color: var(--text-light);
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

/* ===== SERVICES (BELT) ===== */
.services {
    padding: 12px 0;
    margin-top: 52px;
    background: var(--bg-main);
    box-sizing: border-box;
    width: 100%;
}

.services-slider-container {
    position: relative;
    padding: 0 42px;
}

.services-slider {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 6px 0;
}

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

.service-belt-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: auto;
    padding: 5px 13px;
    background: var(--bg-alt);
    border-radius: 50px;
    border: 1px solid transparent;
    color: var(--text-body);
    transition: var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
}

.service-belt-item .icon {
    font-size: 11.5px;
    color: var(--primary);
}

.service-belt-item h3 {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none !important;
    border-bottom: none !important;
    white-space: nowrap;
}

.service-belt-item:hover,
.service-belt-item.active {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: var(--shadow-red);
}

.service-belt-item:hover .icon,
.service-belt-item.active .icon {
    color: var(--text-light);
}

.services-belt-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    font-size: 0.75rem;
    color: var(--text-body);
}

.services-belt-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.services-belt-btn.prev {
    left: 0;
}

.services-belt-btn.next {
    right: 0;
}

/* ===== HERO ===== */
.hero {
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
    padding: 48px 0 24px;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto 28px;
}

.hero-content h1 {
    color: var(--text-heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.hero-content p {
    color: var(--text-body);
    font-size: 1.15rem;
    margin: 0 auto 24px;
    line-height: 1.6;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-trust .trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===== CAMPAIGN SHOWCASE ===== */
.portfolio-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.portfolio-slider {
    display: flex;
    gap: 20px;
    padding: 8px 0 16px;
    width: max-content;
    animation: portfolio-marquee 40s linear infinite;
}

.portfolio-slider:hover {
    animation-play-state: paused;
}

@keyframes portfolio-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

.portfolio-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.portfolio-card .card-img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--bg-alt);
}

.portfolio-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.portfolio-card .card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.portfolio-card .card-details {
    padding: 20px;
    border-top: 3px solid var(--primary);
}

.portfolio-card .card-details h4 {
    color: var(--text-heading);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.portfolio-card .card-details .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-card .card-details .price {
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.95rem;
}

.portfolio-card .card-details .action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    transition: var(--transition);
}

.portfolio-card .card-details .action-btn:hover {
    background: #16a34a;
    color: white;
}

/* ===== CLIENTS MARQUEE ===== */
.clients {
    padding: 12px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.clients-marquee {
    display: flex;
    gap: 48px;
    animation: marquee 35s linear infinite;
    width: max-content;
}

.clients-marquee .client-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.clients-marquee .client-item i {
    font-size: 1.2rem;
    color: var(--border-medium);
    transition: var(--transition);
}

.clients-marquee .client-item:hover {
    color: var(--text-heading);
}

.clients-marquee .client-item:hover i {
    color: var(--primary);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== ABOUT US ===== */
.about {
    padding: var(--section-padding);
    background: var(--bg-main);
    overflow: hidden;
}

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

.about-visual {
    position: relative;
    padding: 20px;
}

.about-visual .image-placeholder {
    width: 90%;
    aspect-ratio: 4/3;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-visual .accent-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border-radius: var(--radius-lg);
    z-index: 1;
    transform: translate(20px, 20px);
    border: 2px dashed var(--primary);
    opacity: 0.3;
}

.about-content h2 {
    margin-bottom: 14px;
}

.about-content p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-heading);
}

.about-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: var(--section-padding);
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    box-sizing: border-box;
    width: 100%;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.industry-item {
    background: var(--bg-card);
    padding: 18px 14px;
    border-radius: var(--radius-sm);
    border-top: 4px solid var(--border-medium);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    box-sizing: border-box;
}

.industry-item:hover {
    border-top-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-item i {
    font-size: 1.8rem;
    color: var(--text-heading);
    margin-bottom: 8px;
    display: block;
    transition: var(--transition);
}

.industry-item:hover i {
    color: var(--primary);
}

.industry-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-body);
}

/* ===== STATISTICS ===== */
.statistics {
    padding: 50px 0;
    background: var(--primary-gradient);
    color: var(--text-light);
}

.statistics .section-title,
.statistics .section-subtitle,
.statistics .section-badge {
    color: var(--text-light);
}

.statistics .section-badge::before {
    background: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.stats-grid .stat-item {
    text-align: center;
}

.stats-grid .stat-item .number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-grid .stat-item .label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ===== PROCESS ===== */
.process {
    padding: var(--section-padding);
    background: var(--bg-main);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 36px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    width: 22%;
    text-align: center;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 3px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .step-number {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-red);
}

.process-step h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* ===== WHY CHOOSE US ===== */
.why {
    padding: var(--section-padding);
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    box-sizing: border-box;
    width: 100%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 32px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-item .icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.why-item h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-main);
}

.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonials-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 6px 4px 12px;
    flex: 1;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--bg-alt);
    padding: 26px 24px;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 14px);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonials-slider-wrapper {
        gap: 8px;
    }
}

.testimonial-card:hover {
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-card .fa-quote-left {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 3rem;
    color: rgba(230, 26, 39, 0.15);
    transition: var(--transition);
}

.testimonial-card .stars {
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-card .quote {
    font-size: 1.05rem;
    color: var(--text-heading);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card .author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    font-size: 1rem;
}

.testimonial-card .author .info .name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-heading);
}

.testimonial-card .author .info .company {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
    padding: var(--section-padding);
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    box-sizing: border-box;
    width: 100%;
}

.faq-list {
    max-width: 760px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-color: var(--border-medium);
}

.faq-item.active {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-sm);
    border-color: var(--border-medium);
}

.faq-item .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-heading);
}

.faq-item .question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .question i {
    transform: rotate(180deg);
}

.faq-item .answer {
    max-height: 0;
    padding: 0 24px;
    color: var(--text-body);
    transition: all 0.3s ease;
    opacity: 0;
    line-height: 1.6;
}

.faq-item.active .answer {
    max-height: 300px;
    padding: 0 20px 14px;
    opacity: 1;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 32px;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    background: var(--bg-card);
}

.contact-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 26, 39, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.contact-card .role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-card .contact-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card .contact-links a,
.contact-card .contact-links p {
    font-size: 0.95rem;
    color: var(--text-heading);
    font-weight: 500;
    transition: var(--transition);
}

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

.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-form-header {
    background: var(--primary-gradient);
    padding: 16px 24px;
    color: var(--text-light);
}

.contact-form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-form {
    padding: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-alt);
    color: var(--text-heading);
    transition: var(--transition);
    margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(230, 26, 39, 0.1);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
    margin-bottom: 16px;
    margin-top: 0;
    width: 100%;
}

.contact-map {
    margin-top: 48px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 400px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: #111827;
    color: #9CA3AF;
    padding: 50px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-brand .logo {
    color: #FFFFFF !important;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand .logo span {
    color: var(--primary);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 350px;
}

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

.footer-brand .socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition);
}

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

.footer h4 {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: #9CA3AF;
    font-weight: 400;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer ul a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-family: var(--font-body);
}

.newsletter-form button {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
}

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

.footer-bottom .links a {
    color: #9CA3AF;
    transition: var(--transition);
}

.footer-bottom .links a:hover {
    color: #FFFFFF;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 50px;
    height: 50px;
    background: var(--text-heading);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* ===== GALLERY LIGHTBOX STYLES (ADDED) ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: fixed;
    top: 25px;
    right: 35px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

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

.lightbox-caption {
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    max-width: 80%;
    font-family: 'Inter', sans-serif;
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* Navigation Buttons for Lightbox */
.nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10000;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.nav-btn.prev-btn {
    left: 20px;
}

.nav-btn.next-btn {
    right: 20px;
}

@media (max-width: 768px) {
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .nav-btn.prev-btn {
        left: 10px;
    }

    .nav-btn.next-btn {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 40px;
        height: 40px;
    }

    .lightbox-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 5px 14px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-visual .accent-box {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding-left: 30px;
    }

    .process-timeline::before {
        left: 30px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .process-step {
        width: 100%;
        text-align: left;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .process-step .step-number {
        position: absolute;
        left: -60px;
        top: 0;
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        border-width: 2px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    :root {
        --section-padding: 40px 0;
    }

    .nav-links {
        position: fixed;
        top: 52px;
        right: -100%;
        width: 240px;
        height: calc(100vh - 52px);
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        padding: 30px 24px;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #ffffff;
        font-size: 1rem;
    }

    /* ===== NAVBAR HOVER EFFECTS ===== */
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #ffffff !important;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }

    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width: 768px) {
        .menu-toggle {
            display: flex !important;
        }

        .nav-links {
            position: fixed;
            top: 52px;
            right: -100%;
            width: 240px;
            height: calc(100vh - 52px);
            background: var(--primary-dark);
            flex-direction: column;
            justify-content: flex-start;
            gap: 20px !important;
            padding: 30px 24px !important;
            box-shadow: -8px 0 24px rgba(0, 0, 0, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            color: #ffffff !important;
            font-size: 1rem !important;
        }

        .logo span {
            font-size: 1.2rem !important;
        }

        .logo img {
            height: 32px !important;
        }
    }

    @media (max-width: 992px) and (min-width: 769px) {
        .nav-links {
            gap: 20px !important;
        }

        .nav-links a {
            font-size: 0.85rem !important;
        }
    }

    .menu-toggle {
        display: flex;
    }

    #services {
        margin-top: 52px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   PREMIUM EDITORIAL REDESIGN OVERRIDES
   ========================================================= */

/* Typography & Colors */
body {
    background-color: #F8F9FB;
    /* Very light subtle background */
    color: #1a202c;
    /* Deep charcoal */
}

p {
    color: #4a5568;
    /* Slate gray */
    font-weight: 400;
}

/* Headings */
.section-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e11d48;
    /* Brand red */
    background: transparent;
    padding: 0;
    border: none;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.section-badge::before {
    display: none;
}

.section-title {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 24px;
}

.section-title .highlight {
    color: #e11d48;
}

/* Buttons */
.btn-primary {
    height: 48px;
    padding: 0 32px;
    border-radius: 12px;
    background: #e11d48;
    color: #fff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.btn-outline {
    height: 48px;
    padding: 0 32px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #1a202c;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Compact Navbar */
.navbar {
    padding: 10px 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: none;
}

.navbar.scrolled {
    padding: 8px 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-links a {
    color: #1a202c !important;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e11d48 !important;
}

/* Logo Size Increase */
.logo img {
    height: 55px !important;
}

@media (max-width: 768px) {
    .logo img {
        height: 42px !important;
    }
}

/* Service Belt (Horizontal Selector) */
.services {
    margin-top: 60px;
    /* Offset for compact navbar */
    padding: 12px 0;
    background: #eb4444;
    border-bottom: 1px solid #edf2f7;
}

.service-belt-item {
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: #eeeff2;
    font-weight: 500;
    font-size: 14px;
    box-shadow: none !important;
}

.service-belt-item .icon {
    display: none;
}

.service-belt-item h3 {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

.service-belt-item:hover {
    color: #161617;
    background: transparent;
    border-bottom-color: #09090a;
}

.service-belt-item.active {
    background: transparent;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

.service-belt-item:hover h3,
.service-belt-item.active h3 {
    color: inherit;
}

/* MEDIA HERO SECTION */
.media-hero {
    padding: 80px 0 60px;
    background: #ffffff;
}

.media-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 992px) {
    .media-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.media-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a202c;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .media-hero-content h1 {
        font-size: 40px;
    }
}

.media-hero-content p {
    font-size: 18px;
    max-width: 550px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 16px;
}

@media (max-width: 992px) {
    .cta-group {
        justify-content: center;
    }
}

.media-hero-visual {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.badge-float {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
    bottom: -15px;
    left: -15px;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* PINTEREST GALLERY */
.gallery-section {
    padding: 80px 0;
    background: #F8F9FB;
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
    padding: 20px 0;
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-grid .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #000;
    /* For overlay effect */
}

.gallery-grid .gallery-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.03);
    opacity: 0.85;
}

.gallery-grid .gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-weight: 500;
}

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

/* KEY FEATURES */
.features-block {
    padding: 80px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    background: #fff;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.feature-card .icon {
    width: 44px;
    height: 44px;
    margin: 0 0 20px 0;
    font-size: 18px;
    background: #fff1f2;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card:hover .icon {
    background: #e11d48;
    color: #fff;
}

.feature-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1a202c;
}

.feature-card p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* HOW IT WORKS (PROCESS) */
.how-it-works {
    padding: 80px 0;
    background: #F8F9FB;
}

.process-timeline {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    position: relative;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
}

.process-step {
    flex: 1;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    position: relative;
}

.process-step:hover {
    transform: none;
}

.process-step::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 48px;
    right: -16px;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    position: relative;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    font-size: 14px;
    box-shadow: none;
    z-index: 1;
    margin-bottom: 20px;
    background: #e11d48;
}

.step-content {
    margin-top: 0;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a202c;
}

.step-content p {
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

/* FOOTER COMPACT */
.footer {
    padding: 60px 0 20px;
    background: #1a202c;
    color: #a0aec0;
}

.footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer a {
    color: #cbd5e1;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* ===== MOBILE RESPONSIVENESS FIXES (ADDED) ===== */
@media (max-width: 768px) {

    /* 1. Service Belt Fixes */
    .services-slider-container {
        padding: 0 5px;
        /* Reduce padding to give more room for items */
    }

    .services-belt-btn {
        display: none !important;
        /* Hide navigation buttons on mobile, rely on swipe */
    }

    .services-slider {
        gap: 8px;
        /* Slightly reduce gap to fit more */
        padding: 10px 5px;
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
    }

    .service-belt-item {
        padding: 6px 12px;
        /* Smaller padding */
        font-size: 13px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .service-belt-item h3 {
        font-size: 13px;
    }

    /* 2. Buttons Inside Opened Services (.cta-group) */
    .cta-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        /* Comfortable vertical spacing */
    }

    .cta-group .btn-primary,
    .cta-group .btn-outline {
        width: 100%;
        justify-content: center;
        /* Center the text inside the button */
        text-align: center;
        box-sizing: border-box;
    }
}