/* --- LUXURY DESIGN TOKENS --- */
:root {
    --primary-dark: #050810;
    --primary-light: #0d121f;
    --accent-gold: rgba(197, 160, 89, 1);
    --accent-gold-soft: rgba(197, 160, 89, 0.1);
    --text-main: #1a1a1a;
    --text-muted: #5a5a5a;
    --bg-light: #ffffff;
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-luxury: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- REVEAL ANIMATIONS --- */
@keyframes fadeInUpLuxury {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.reveal-item {
    opacity: 0;
    animation: fadeInUpLuxury 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

/* --- ARCHITECTURAL TYPOGRAPHY --- */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}

.section-padding {
    padding: 80px 0;
}

.bg-dark-section {
    background-color: var(--primary-dark);
    color: var(--white);
}

.bg-light-section {
    background-color: var(--bg-light);
}

/* --- NAVIGATION --- */
.navbar-premium {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-premium.scrolled {
    background: var(--primary-dark) !important;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand-premium {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-dark) !important;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-premium.scrolled .navbar-brand-premium {
    color: var(--white) !important;
}

.navbar-brand-premium span {
    color: var(--accent-gold);
}

.nav-link-premium {
    color: var(--primary-dark) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 15px;
    transition: var(--transition);
    opacity: 0.8;
    text-decoration: none;
}

.navbar-premium.scrolled .nav-link-premium {
    color: var(--white) !important;
    opacity: 0.9;
}

.nav-link-premium:hover {
    color: var(--accent-gold) !important;
    opacity: 1;
}

.dropdown-menu {
    border: none;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 0;
    /* Removed 10px gap */
}

.dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    color: var(--primary-dark) !important;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--accent-gold) !important;
    padding-left: 30px;
}

.navbar-toggler-premium {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--primary-dark);
}

.navbar-premium.scrolled .navbar-toggler-premium {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* --- HERO SECTION --- */
.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: var(--white);
}

.hero-content-premium {
    position: relative;
    z-index: 2;
    color: var(--primary-dark);
    max-width: 800px;
}

.hero-premium h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.hero-premium h1 span {
    color: var(--accent-gold);
}

.hero-premium p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
}

/* --- BUTTONS --- */
.btn-premium {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-premium:hover {
    background-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-outline-premium {
    background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    padding: 15px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline-premium:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.bg-dark-section .btn-outline-premium {
    color: var(--white);
    border-color: var(--white);
}

.bg-dark-section .btn-outline-premium:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

/* --- TRUST BAR --- */
.trust-bar {
    background-color: var(--primary-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0;
    color: var(--white);
}

.trust-stat {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stat:last-child {
    border-right: none;
}

.trust-stat h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.trust-stat p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.8;
    font-family: 'Montserrat', sans-serif;
}

/* --- SECTION TYPOGRAPHY --- */
.section-title-premium {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
    font-weight: 700;
}

.bg-dark-section .section-title-premium {
    color: var(--white);
}

/* --- PREMIUM LIST --- */
.premium-list-v2 {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.premium-list-v2 li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.premium-list-v2 li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.bg-dark-section .premium-list-v2 li {
    color: rgba(255, 255, 255, 0.8);
}

/* --- IMAGE OVERLAP --- */
.img-overlap-premium {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.img-overlap-premium::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--accent-gold);
    z-index: -1;
}

.img-overlap-premium img {
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

/* --- SERVICE CARDS (DARK) --- */
.service-card-premium {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    height: 100%;
    transition: var(--transition);
    border-radius: 4px;
}

.service-card-premium:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent-gold);
    transform: translateY(-8px);
}

.service-card-premium .icon {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    display: block;
}

.service-card-premium h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card-premium p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* --- PROCESS TIMELINE --- */
.process-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.process-step-premium {
    position: relative;
}

.process-number-premium {
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
    position: absolute;
    top: -25px;
    left: -15px;
    z-index: -1;
    opacity: 0.8;
}

.process-step-premium h4 {
    font-size: 1.3rem;
    margin-top: 30px;
    color: var(--primary-dark);
    font-weight: 600;
}

.process-step-premium p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* --- FOOTER --- */
.footer-premium-v2 {
    background-color: #050A18;
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-logo-premium {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo-premium span {
    color: var(--accent-gold);
}

.footer-premium-v2 h5 {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-links-premium {
    list-style: none;
    padding: 0;
}

.footer-links-premium li {
    margin-bottom: 15px;
}

.footer-links-premium a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links-premium a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

.footer-bottom-premium {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* --- ATMOSPHERIC CONTAINMENT & SURFACES --- */
.content-section {
    padding: 40px 0;
    background: radial-gradient(circle at 100% 0%, rgba(197, 160, 89, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(13, 18, 31, 0.01) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.section-marker {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    margin-bottom: 20px;
}

.content-header {
    max-width: 1000px;
    margin-bottom: 40px;
}

.section-title {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 35px;
    line-height: 1.05;
    text-transform: uppercase;
}

.section-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #444;
    font-weight: 300;
    max-width: 800px;
}

.luxury-surface {
    padding: 40px 0;
    position: relative;
}

.benefit-card,
.formats-table-card {
    background: transparent;
    padding: 0;
    margin-bottom: 50px;
    position: relative;
}

/* Premium Luxury Lists */
.premium-list,
.benefit-list,
.check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.premium-list li,
.benefit-list li,
.check-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.premium-list li::before,
.benefit-list li::before,
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-gold);
}

/* --- PREMIUM SECTIONAL LAYOUTS --- */

/* Feature Split Rows */
.feature-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-split:last-child {
    border-bottom: none;
}

.feature-content {
    flex: 1;
    min-width: 300px;
}

.feature-visual {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    border-radius: 20px;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.02);
}

.feature-visual.visual-abstract::before {
    content: attr(data-number);
    position: absolute;
    font-size: 15rem;
    font-weight: 800;
    color: rgba(197, 160, 89, 0.08);
    /* Big subtle gold number */
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.split-reverse {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .feature-split {
        flex-direction: column-reverse;
        /* Text usually below on mobile, or visual first depending on preference. Visual first is better: */
    }

    .split-reverse {
        flex-direction: column-reverse;
    }

    .feature-visual {
        width: 100%;
        min-height: 250px;
    }
}

/* Info Grids */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-luxury);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(197, 160, 89, 0.2);
}

.info-card h4 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p,
.info-card td {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.grid-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

/* Base Typographic Resets for New Sections */
.feature-content h3 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.feature-content h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    margin-top: 20px;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}


.process-row::-webkit-scrollbar {
    display: none;
}

.process-step-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Extremely soft shadow for definition against bg */
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.step-indicator {
    width: 45px;
    height: 45px;
    background: #e6f7e8;
    /* Soft green from user reference */
    color: #3b8e45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.process-step-card h4 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.benefit-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.benefit-list li strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 4px;
}

.cta-sidebar {
    padding: 10px;
}

.cta-sidebar p {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.btn-primary-custom {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-align: center;
}

.btn-primary-custom:hover {
    background-color: var(--accent-gold);
    filter: brightness(1.1);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
}

/* Responsive Adjustments */
@media (min-width: 992px) {

    /* Aggressive hover trigger */
    .navbar-premium .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    /* Hover bridge on the parent LI to prevent losing hover state during transition */
    .navbar-premium .navbar-nav .nav-item.dropdown:hover::after {
        content: "";
        position: absolute;
        top: 80%;
        left: -20px;
        right: -20px;
        height: 30px;
        background: transparent;
        z-index: 1;
    }

    /* Ensure dropdown itself has higher z-index */
    .dropdown-menu {
        z-index: 1100 !important;
    }
}

.feature-split {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.feature-split:last-child {
    margin-bottom: 0;
}

.feature-split.reverse {
    flex-direction: row-reverse;
}

.feature-split .image-col,
.feature-split .content-col {
    flex: 1;
}

.feature-split .image-col img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- HORIZONTAL CONNECTED TIMELINE --- */
.horizontal-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 0 20px;
}

/* Connecting Line */
.horizontal-timeline::before {
    content: '';
    position: absolute;
    top: 105px;
    /* Center of the rings below icons */
    left: 12%;
    right: 12%;
    height: 1px;
    background: transparent;
    border-top: 2px dashed rgba(231, 132, 94, 0.5);
    /* Orange/coral dashed line */
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.timeline-icon-wrapper {
    width: auto;
    margin: 0 auto 50px;
    /* Space between icon and text */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The Icon itself */
.timeline-icon-wrapper i,
.timeline-icon-wrapper img {
    font-size: 3rem;
    color: #2c3e50;
    /* Dark slate blue */
    margin-bottom: 30px;
    /* Space between icon and ring */
    height: 50px;
}

/* The inner circle / ring */
.timeline-icon-ring {
    width: 24px;
    height: 24px;
    border: 3px solid #e7845e;
    /* Matching the orange/coral */
    border-radius: 50%;
    background: var(--bg-light);
    position: relative;
    z-index: 3;
}

/* Arrow indicator on the dashed line */
.timeline-step:not(:last-child) .timeline-icon-wrapper::after {
    content: '›';
    position: absolute;
    right: -50%;
    bottom: -15px;
    /* Align with the dashed line/ring */
    transform: translateX(50%);
    color: rgba(231, 132, 94, 0.8);
    font-size: 2rem;
    line-height: 1;
    z-index: 2;
}

.timeline-step h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2c3e50;
    /* Dark slate blue */
    margin-bottom: 15px;
    line-height: 1.3;
}

.timeline-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 250px;
}

@media (max-width: 991px) {
    .horizontal-timeline::before {
        display: none;
        /* Hide horizontal dashed line on mobile/tablet */
    }

    .horizontal-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .timeline-step {
        width: 100%;
        max-width: 400px;
    }

    .timeline-icon-wrapper {
        margin-bottom: 30px;
    }

    .timeline-icon-wrapper i {
        margin-bottom: 20px;
    }

    .timeline-step:not(:last-child) .timeline-icon-wrapper::after {
        content: 'ˇ';
        /* Down arrow for mobile */
        right: 50%;
        bottom: -40px;
        transform: translateX(50%);
    }
}


.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 991px) {
    .process-row {
        flex-direction: column;
        overflow-x: visible;
    }

    .process-step-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-premium h1 {
        font-size: 3.2rem;
    }

    .process-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .trust-stat {
        border-right: none;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 40px;
    }

    .trust-stat:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .navbar-premium {
        background: var(--primary-dark);
        padding: 15px 0;
    }

    .navbar-brand-premium {
        color: var(--white) !important;
    }

    .nav-link-premium {
        color: var(--white) !important;
        margin: 10px 0;
    }

    .btn-outline-premium {
        border-color: var(--white);
        color: var(--white);
    }
}

@media (max-width: 768px) {
    .hero-premium h1 {
        font-size: 2.5rem;
    }

    .process-grid-premium {
        grid-template-columns: 1fr;
    }

    .section-title-premium {
        font-size: 2.4rem;
    }
}

/* --- HORIZONTAL CTA BANNER --- */
.horizontal-cta {
    background-color: #05235f;
    /* Deep blue from user image */
    border-radius: 12px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin: 80px 0;
    box-shadow: 0 15px 35px rgba(5, 35, 95, 0.15);
    /* Soft shadow complementing the blue */
}

.horizontal-cta-content {
    flex: 1;
}

.horizontal-cta-content h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.horizontal-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 800px;
}

.horizontal-cta-btn-wrapper {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .horizontal-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
}