/* assets/css/style.css */

:root {

    --primary-color: #ec302a;
    --primary-hover: #f5b716;
    --dark-bg: #023a51;
    --dark-surface: #e0ecf0;
    --text-primary: #ffffff;
    --text-secondary: #a0a5b1;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(16px);
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Bold setting for editorial weight using Plus Jakarta Sans */
    letter-spacing: -0.02em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
}

/* --- HEADER STYLING (MATCHING IMAGE) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 4%;
    background: linear-gradient(to bottom, rgba(17, 20, 26, 0.8) 0%, rgba(17, 20, 26, 0) 100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area .main-logo {
    height: 48px;
    width: auto;
    display: block;
}

/* Glassmorphic Floating Nav Box */
.navigation-pill {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 17px 35px;
    border-radius: 17px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

/* Phone Pill Button */
.phone-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 24px;
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.phone-pill-btn:hover {
    background: #f4b616;
    color: #ffffff;
    border-color: #f4b616;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

.mobile-nav-toggle {
    display: none;
}

/* --- STRUCTURE SECTIONS --- */
section {
    padding: 100px 4%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section {
    padding-top: 180px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* --- PRICING SECTION --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.pricing-card.popular {
    border-color: var(--primary-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-add-cart {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: var(--transition-smooth);
}

.pricing-card.popular .btn-add-cart,
.btn-add-cart:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.site-footer {
    background-color: #eef4f7;
    /* Very light slate-grey background matching image */
    padding: 70px 0 0 0;
    font-family: var(--font-body);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 52px;
    width: auto;
    align-self: flex-start;
    margin-bottom: 25px;
}

.brand-desc {
    color: #023a51;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.85;
}

/* Rounded Accent Social Circles */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f5b716;
    /* Clean signature brand gold circles */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Headings & Link Text Rules */
.footer-heading {
    color: var(--primary-color);
    /* Signature Red headings */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 16px;
}

.footer-menu li a {
    color: #023a51;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-menu li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Right-side Contact Layout info Blocks */
.contact-item {
    margin-bottom: 25px;
}

.contact-label {
    display: block;
    color: #023a51;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-value {
    color: #023a51;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-value:hover {
    color: var(--primary-color);
}

/* Bottom Strip Elements */
.footer-bottom {
    background-color: var(--primary-color);
    /* Matching primary red solid base */
    margin-top: 60px;
    padding: 20px 0;
}

.bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text,
.developer-credit {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Inline Icon Layout Settings */
.contact-item.with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Space between the icon and the text */
    margin-bottom: 20px;
}

.contact-icon {
    color: var(--primary-color);
    /* Matches your brand red color scheme */
    font-size: 1.1rem;
    width: 20px;
    /* Fixed width keeps alignment perfectly straight */
    text-align: center;
}

.contact-item span.contact-value {
    color: #023a51;
    /* Keeps address text matching the style guides */
    font-weight: 500;
    font-size: 1.05rem;
}

.developer-credit a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.developer-credit a:hover {
    color: #f5b716;
    /* Subtle shift to brand gold on hover */
    border-bottom-color: #f5b716;
}

.copyright-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.copyright-text a:hover {
    color: #f5b716;
    /* Subtle shift to brand gold on hover */
    border-bottom-color: #f5b716;
}

/* --- HERO SECTION STYLING --- */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    /* Extra top padding prevents navigation overlap */
    min-height: 90vh;
    background-image: url('/assets/images/a-professional-business-company-restoration.webp');
    /* Relative path maps cleanly into your files */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Linear Scrim overlay keeps your content perfectly crisp and readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #023a5140;
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    position: relative;
    z-index: 2;
    /* Forces text content explicitly to sit in front of the image overlay */
}

/* Trustpilot Floating Badge Element */
.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.trustpilot-badge:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.tp-stars {
    color: #00b67a;
    /* Official Trustpilot Green Accent Tint */
    font-weight: 700;
    font-size: 0.9rem;
}

.tp-rating {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.tp-light {
    font-weight: 300;
    opacity: 0.8;
}

/* Typography Scales */
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-highlight {
    color: #f5b716;
    /* Clean brand gold for major emphasize actions */
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin-bottom: 35px;
}

/* Dual Button CTA Groupings */
.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(236, 48, 42, 0.3);
}

.btn-hero-primary:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 183, 22, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background-color: #f5b716;
    color: #ffffff;
    border-color: #f5b716;
    transform: translateY(-2px);
}

/* Urgency Alert Strip Box */
.hero-urgency-ribbon {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(245, 183, 22, 0.12);
    border-left: 4px solid #f5b716;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    max-width: 720px;
}

.hero-urgency-ribbon p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-icon {
    font-size: 1.3rem;
    animation: pulse 2s infinite ease-in-out;
}

/* Right-Side Corporate Metrics Cards layout styles */
.hero-stats-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 22px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(236, 48, 42, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.stat-info h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.stat-info p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- HERO FORM PANEL STYLING --- */
.hero-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-card {
    background-color: #0000002b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /*backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);*/
    padding: 35px 30px;
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    color: var(--heading-light);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.form-header p {
    color: var(--text-light);
    opacity: 0.75;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Individual Fields Stack Config */
.hero-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.required-asterisk {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 2px;
}

/* Form Input Element Blueprints */
.hero-contact-form input[type="text"],
.hero-contact-form input[type="email"],
.hero-contact-form input[type="tel"],
.hero-contact-form textarea {
    font-family: var(--font-body);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.hero-contact-form textarea {
    resize: vertical;
}

/* Dynamic State Focus Shifting */
.hero-contact-form input:focus,
.hero-contact-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-hover);
    /* Changes to gold accent on focus */
    box-shadow: 0 0 0 3px rgba(245, 183, 22, 0.15);
}

/* Placeholder adjustments */
.hero-contact-form ::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Interactive Action Submit Trigger */
.btn-form-submit {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(236, 48, 42, 0.2);
}

.btn-form-submit:hover {
    background-color: var(--primary-hover);
    color: var(--heading-dark);
    /* Changes to dark teal text on gold background */
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 183, 22, 0.3);
}

/* --- FORM SUBMISSION RESPONSE FLAGS --- */
.form-status-msg {
    display: none;
    /* Kept hidden initially until activation occurs */
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
    margin-top: 15px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success Validation Banner */
.form-status-msg.msg-success {
    background-color: rgba(37, 211, 102, 0.15);
    color: #25d366;
    /* Crisp readable accent green matching WhatsApp styling */
    border-color: rgba(37, 211, 102, 0.3);
}

/* Error/Fail Alert Banner */
.form-status-msg.msg-error {
    background-color: rgba(236, 48, 42, 0.15);
    color: #ff4d4d;
    /* Bright alerting visual red */
    border-color: rgba(236, 48, 42, 0.3);
}

/* --- PREMIUM SECTION 2 EXECUTIVE ASYMMETRIC LAYOUT --- */
.strike-off-section {
    background-color: var(--dark-bg);
    padding: 120px 0;
    border-bottom: 1px solid #edf2f7;
}

.corporate-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    /* Premium asymmetric structure split */
    gap: 80px;
}

/* Left Content Sticky Setup */
.context-sticky-column {
    position: sticky;
    top: 140px;
    /* Aligns beautifully beneath your glassmorphic header */
    height: fit-content;
}

.section-meta-tag {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-main-heading {
    font-size: 2.8rem;
    color: var(--heading-dark);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.section-sub-heading {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Impact Informational callout pane */
.impact-alert-box {
    position: relative;
    background-color: var(--light-surface);
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
}

.alert-accent-line {
    width: 4px;
    background-color: var(--primary-color);
    flex-shrink: 0;
    border-radius: 4px;
}

.impact-alert-box p {
    font-size: 0.95rem;
    color: var(--heading-dark);
    line-height: 1.6;
    font-weight: 500;
}

/* Right Column Matrix Engine */
.strike-reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stacked look blocks look much cleaner here */
    gap: 20px;
}

.reason-premium-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.reason-premium-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(2, 58, 81, 0.06);
    transform: translateY(-2px);
}

/* Sleek Numerical Index Indicators instead of simple raw generic icons */
.card-count-indicator {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 2px;
    transition: var(--transition-smooth);
}

.reason-premium-card:hover .card-count-indicator {
    color: var(--primary-color);
    opacity: 1;
}

.reason-text-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.reason-premium-card:hover .reason-text-content h3 {
    color: var(--primary-color);
}

.reason-text-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- PREMIUM CARD WHATSAPP TRIGGER LINK --- */
.card-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    /* Signature Red */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 15px;
    transition: var(--transition-smooth);
}

.card-whatsapp-link i {
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

/* Elegant Micro-Interaction on Card Hover */
.reason-premium-card:hover .card-whatsapp-link {
    color: var(--primary-hover);
    /* Shifts to brand gold */
}

.reason-premium-card:hover .card-whatsapp-link i {
    transform: translateX(4px);
    /* Arrow glides slightly to the right */
}

/* --- PREMIUM GLOBAL SITE PRELOADER --- */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #023a51;
    /* Your signature deep corporate background */
    z-index: 100000;
    /* Maximized index to sit safely over all UI structures */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    opacity: 1;
    visibility: visible;
}

/* Fades the overlay clean away once assets load completely */
.preloader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Double-pulse luxury spinner framework */
.premium-spinner {
    width: 60px;
    height: 60px;
    position: relative;
}


@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
    }
}

/* --- PREMIUM WHATSAPP FLOATING WIDGET --- */
.wa-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    /* Ensure it stays above everything except the preloader */
    font-family: var(--font-body);
}

/* Main Circular Trigger Floating Button Blueprint */
.wa-trigger-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* Official WhatsApp Green */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    position: relative;
    transition: var(--transition-smooth);
}

.wa-trigger-btn:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* Decorative Organic Breathing Wave Ring Accent */
.wa-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #25d366;
    border-radius: 50%;
    animation: wa-pulsate 2s infinite ease-out;
    pointer-events: none;
}

@keyframes wa-pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Chat Window Box Framework Layout */
.wa-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(2, 58, 81, 0.15);
    border: 1px solid #edf2f7;
    overflow: hidden;
    display: none;
    /* Controlled dynamically by JS */
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.wa-chat-window.show-pane {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

/* Header Strip Styles */
.wa-header {
    background-color: #023a51;
    /* Custom corporate teal alignment */
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.wa-avatar-box {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.wa-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.status-dot.active {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 11px;
    height: 11px;
    background-color: #25d366;
    border: 2px solid #023a51;
    border-radius: 50%;
}

.wa-header-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.wa-header-info p {
    font-size: 0.75rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-header-info p i {
    font-size: 0.5rem;
    color: #25d366;
}

/* WhatsApp Pattern Chat Area Arena */
.wa-chat-body {
    background-color: #efeae2;
    /* WhatsApp chat wallpaper tone */
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: contain;
    padding: 25px 20px;
    max-height: 250px;
    overflow-y: auto;
}

.wa-message-bubble {
    background-color: #ffffff;
    padding: 12px 14px;
    border-radius: 0 12px 12px 12px;
    max-width: 90%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
}

.sender-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.message-text {
    font-size: 0.9rem;
    color: #2d3748;
    line-height: 1.4;
}

.message-time {
    display: block;
    font-size: 0.65rem;
    color: #a0aec0;
    text-align: right;
    margin-top: 5px;
}

/* Bottom Action Footer Control */
.wa-footer {
    padding: 15px 20px;
    background-color: #ffffff;
}

.wa-submit-action-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.wa-submit-action-link:hover {
    background-color: #20ba5a;
    transform: translateY(-1px);
}

/* --- PREMIUM BACK TO TOP WITH PROGRESS INDICATOR --- */
.back-to-top-btn {
    position: fixed;
    bottom: 110px;
    /* Sits perfectly right above your WhatsApp widget trigger */
    right: 35px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    /* Contrast white body surface */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(2, 58, 81, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    padding: 0px;
}

/* Activated Visible Class state handled by JS */
.back-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.upward-arrow {
    font-size: 1.1rem;
    color: var(--heading-dark);
    /* Signature Corporate Teal-Blue */
    position: absolute;
    transition: var(--transition-smooth);
}

/* SVG Circular Path Metrics Mapping */
.progress-circle {
    width: 100%;
    height: 100%;
}

.progress-circle path {
    fill: none;
    stroke: var(--primary-color);
    /* Interactive Red tracks scroll percentage */
    stroke-width: 4;
    box-sizing: border-box;
    transition: stroke-dashoffset 10ms linear;
}

/* Micro-Interaction Hover Shifts */
.back-to-top-btn:hover {
    background-color: var(--heading-dark);
    box-shadow: 0 12px 30px rgba(2, 58, 81, 0.25);
}

.back-to-top-btn:hover .upward-arrow {
    color: var(--primary-hover);
    transform: translateY(-3px);
    /* Arrow rises up slightly on hover */
}

.back-to-top-btn:hover .progress-circle path {
    stroke: var(--primary-hover);
    /* Path line turns gold on hover */
}

/* --- PREMIUM SERVICES SPLIT LAYOUT --- */
.services-split-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.split-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Creates asymmetrical split weight */
    gap: 80px;
}

/* Left Panel Sticky Engine */
.split-left-panel {
    position: relative;
}

.sticky-content-wrapper {
    position: sticky;
    top: 120px;
    /* Aligns smoothly with sticky main navigation bars */
    height: auto;
}

.section-badge {
    display: inline-block;
    color: var(--primary-color);
    /* Red Brand Accent */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sticky-content-wrapper h2 {
    font-family: var(--font-heading);
    color: #023a51;
    /* Midnight Navy Core */
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.sticky-content-wrapper p {
    color: #5a6a85;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Luxury Call-To-Action Panel Link Elements */
.premium-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(2, 58, 81, 0.15);
    transition: var(--transition-smooth);
}

.premium-panel-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 12px 30px rgba(2, 58, 81, 0.25);
    transform: translateY(-2px);
}

/* Right Panel Cards Arena Layout */
.split-right-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-split-card {
    background-color: #f8fafc;
    border: 1px solid #edf2f7;
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.service-split-card:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(2, 58, 81, 0.06);
    transform: translateY(-4px);
}

.card-header-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.service-icon-box {
    width: 55px;
    height: 55px;
    background-color: rgba(2, 58, 81, 0.05);
    color: #023a51;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-smooth);
}

.service-split-card:hover .service-icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
}

.service-index {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.service-split-card h3 {
    font-family: var(--font-heading);
    color: #023a51;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-split-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Structural Feature Bullet Alignments */
.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.service-feature-list li {
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature-list li i {
    color: var(--primary-color);
    /* Clean active indicator green checks */
    font-size: 0.85rem;
}

/* --- TIMELINE & CONVERSION SPLIT STYLES --- */
.timeline-cta-section {
    padding: 120px 0;
    background-color: #f8fafc;
    /* Crisp off-white background to break up the deep blue section */
}

.timeline-container {
    max-width: 900px;
    /* Kept focused and readable for sequential scanning */
    margin: 0 auto;
    padding: 0 30px;
}

.timeline-header {
    text-align: center;
    margin-bottom: 70px;
}

.timeline-header h2 {
    font-family: var(--font-heading);
    color: #023a51;
    font-size: 2.6rem;
    font-weight: 700;
    margin-top: 10px;
}

.timeline-subtitle {
    color: #64748b;
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Vertical Core Track Bar */
.procedural-timeline {
    position: relative;
    padding-left: 45px;
    margin-bottom: 60px;
}

.procedural-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e2e8f0;
    /* Soft track rail line */
}

/* Single Segment Row Content */
.timeline-node {
    position: relative;
    margin-bottom: 45px;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

.node-marker-box {
    position: absolute;
    left: -45px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 30px;
}

.node-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid var(--primary-color);
    /* Interactive Accent Ring */
    z-index: 2;
}

.node-time-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    background: #ffebee;
    padding: 4px 12px;
    border-radius: 20px;
}

.node-content-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(2, 58, 81, 0.02);
    transition: var(--transition-smooth);
}

.node-content-card:hover {
    box-shadow: 0 10px 30px rgba(2, 58, 81, 0.05);
    border-color: #e2e8f0;
}

.node-content-card h3 {
    font-family: var(--font-heading);
    color: #023a51;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.node-content-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Custom Bullet Details Settings */
.node-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.node-details-list li {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.node-details-list li strong {
    color: #023a51;
}

/* Conversion Call Card Box Layout */
.timeline-action-card {
    background-color: #023a51;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(2, 58, 81, 0.15);
    text-align: center;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-banner i {
    color: #ffcc00;
    /* Electrical warning bolt color spark */
    font-size: 1.3rem;
}

/* Flex Trigger Interface Buttons */
.action-buttons-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.btn-primary-action {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 45px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-primary-action:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-main-txt {
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-sub-price {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.btn-secondary-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    padding: 20px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-secondary-action:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* --- PREMIUM NATIVE BULLETS INTEGRATION --- */
.node-details-list.premium-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.node-details-list.premium-bullets li {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
    /* Leaves perfect breathing room for the custom dot */
    display: block;
}

/* This replaces the Font Awesome icon entirely with a clean CSS dot */
.node-details-list.premium-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    /* Perfectly aligns dot vertically with the first line of text */
    width: 6px;
    height: 6px;
    background-color: var(--primary-color, #e11d48);
    /* Uses your red accent, falls back to slate red */
    border-radius: 50%;
    display: inline-block;
}

/* --- PRICING GRID STYLE DESIGNS --- */
.pricing-matrix-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-header h2 {
    font-family: var(--font-heading);
    color: #023a51;
    font-size: 2.6rem;
    font-weight: 700;
}

.pricing-subtitle {
    color: #64748b;
    max-width: 550px;
    margin: 15px auto 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Core Multi-Card Flex Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Base Pricing Card System */
.pricing-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 40px 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 25px rgba(2, 58, 81, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 58, 81, 0.06);
    border-color: #e2e8f0;
}

/* Top Meta Elements Block */
.card-meta-top h3 {
    font-family: var(--font-heading);
    color: #023a51;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tier-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 42px;
    /* Holds alignment height structure across columns */
    margin-bottom: 30px;
}

/* Price Engine Readout */
.price-block {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.price-block .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #023a51;
    align-self: flex-start;
    margin-top: 4px;
}

.price-block .amount {
    font-size: 3.25rem;
    font-weight: 800;
    color: #023a51;
    letter-spacing: -1px;
}

.payment-frequency {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 35px;
}

/* Custom Native CSS Bullets System (Zero Dependency) */
.card-features-body {
    flex-grow: 1;
    margin-bottom: 40px;
}

.premium-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-bullets-list li {
    font-size: 0.95rem;
    color: #334155;
    position: relative;
    padding-left: 22px;
    line-height: 1.4;
}

.premium-bullets-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color, #e11d48);
    /* Your brand color fallback */
    border-radius: 50%;
}

/* Interactive Footer Trigger Actions */
.btn-tier-action {
    display: block;
    text-align: center;
    background-color: #f1f5f9;
    color: #023a51;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-tier-action:hover {
    background-color: #023a51;
    color: #ffffff;
}

/* --- ANCHORED FEATURED CARD ADJUSTMENTS --- */
.premium-featured-card {
    border: 2px solid #023a51;
    box-shadow: 0 15px 35px rgba(2, 58, 81, 0.08);
}

.popular-ribbon-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #023a51;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.old-price {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}

.featured-price .currency,
.featured-price .amount {
    color: var(--primary-color, #e11d48);
    /* Highlights the discounted figure point */
}

.featured-bullets li strong {
    color: #023a51;
}

.featured-btn {
    background-color: var(--primary-color, #e11d48);
    color: #ffffff;
}

.featured-btn:hover {
    background-color: var(--primary-hover, #be123c);
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- REGULATORY DISCLOSURE NOTICE MATRIX --- */
.statutory-notice-box {
    margin-top: 50px;
    background-color: #f8fafc;
    /* Professional muted slate background */
    border: 1px solid #e2e8f0;
    border-left: 4px solid #023a51;
    /* Locked corporate accent bar line */
    border-radius: 12px;
    padding: 35px;
    margin-left: 56px;
    margin-right: 56px;
}

.notice-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* Hard-coded bullet replacement ensures layout consistency */
.notice-icon {
    color: #023a51;
    font-size: 1.2rem;
    display: inline-block;
}

.notice-header-bar h4 {
    font-family: var(--font-heading);
    color: #023a51;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notice-intro-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Flat Grid Row Alignment */
.disbursement-grid-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}

.disbursement-item {
    display: flex;
    flex-direction: column;
}

.fee-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}

.fee-cost {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #023a51;
    margin-bottom: 4px;
}

.fee-recipient {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.3;
}

.corporate-faq-section {
    padding: 100px 0;
    background-color: #f8fafc;
    font-family: sans-serif;
    /* Fallback syntax */
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    color: #e11d48;
    /* Premium Red Brand Color */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-header h2 {
    color: #023a51;
    /* Dark Corporate Blue Tone */
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.faq-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0;
}

/* Accordion Component Framework */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background-color: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(2, 58, 81, 0.03);
}

/* Interactive Trigger Panel Bar */
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 30px;
    cursor: pointer;
    outline: none;
}

.faq-question {
    color: #023a51;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 20px;
    transition: color 0.3s ease;
}

/* Pure CSS Indicator Cross Toggles (No Font-Awesome dependency to fail) */
.faq-icon-indicator {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
    content: '';
    position: absolute;
    background-color: #023a51;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal Line segment */
.faq-icon-indicator::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

/* Vertical Line segment */
.faq-icon-indicator::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

/* --- ACTIVE TRANSFORMATION LOOKUPS --- */
.faq-accordion-item.is-expanded {
    border-color: #023a51;
    box-shadow: 0 12px 30px rgba(2, 58, 81, 0.05);
}

.faq-accordion-item.is-expanded .faq-question {
    color: var(--primary-color);
    ;
}

/* Rotate and hide the vertical line to leave a clean minus sign */
.faq-accordion-item.is-expanded .faq-icon-indicator::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-accordion-item.is-expanded .faq-icon-indicator::before {
    background-color: var(--primary-color);
}

/* Dynamic Panel Animation Elements */
.faq-panel {
    max-height: 0;
    /* Handled programmatically via JS */
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel-inner {
    padding: 0 30px 24px 30px;
}

.faq-panel-inner p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

.corporate-testimonials-section {
    padding: 120px 0;
    background-color: #023a51;
    /* Matches your core premium Midnight Navy palette */
    color: #ffffff;
    overflow: hidden;
}

.testimonials-container {
    max-width: 900px;
    /* Kept focused to keep long lines of readable paragraph length */
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-header .section-badge {
    display: inline-block;
    color: var(--primary-color);
    /* Accent Brand Red */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.testimonials-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.testimonials-subtitle {
    color: #94a3b8;
    font-size: 1.05rem;
    margin: 0;
}

/* Structural Viewport Slider Framework */
.slider-viewport-frame {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    /* Luxury hardware accelerated slide sweep */
}

.testimonial-slide {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    position: relative;
}

.quote-icon-quote {
    font-family: serif;
    font-size: 7rem;
    /*line-height: 1;*/
    color: var(--dark-surface);
    /* Light red tint watermark */
    position: absolute;
    top: -26px;
    user-select: none;
}

.testimonial-feedback {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #f1f5f9;
    font-weight: 500;
    margin: 30px 0 35px 0;
    position: relative;
    z-index: 2;
}

/* Client Identity Presentation Badge Card */
.client-meta-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.client-avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.client-bio-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
}

.client-role {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* Control Navigation Engine Styles */
.slider-navigation-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.slider-arrow-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow-btn:hover {
    background-color: #ffffff;
    color: var(--dark-bg);
    border-color: #ffffff;
    transform: scale(1.05);
}

.slider-dots-indicator-track {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot.is-active {
    background-color: var(--primary-color);
    /* Brand accent highlights focus index */
    width: 24px;
    /* Pill stretch effect */
    border-radius: 4px;
}

/* --- PREMIUM SPLIT CONTACT SECTION STYLES --- */
.corporate-contact-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.contact-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
}

/* Info Left-Panel Components */
.contact-info-panel h2 {
    font-family: var(--font-heading);
    color: #023a51;
    font-size: 2.6rem;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.2;
}

.panel-narrative {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 20px 0 40px;
}

.communications-matrix {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comms-node {
    display: flex;
    align-items: center;
    gap: 20px;
}

.comms-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-surface);
    /* Safe Success Green Tone Accent */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comms-text {
    display: flex;
    flex-direction: column;
}

.comms-text span {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comms-text strong {
    font-size: 1.15rem;
    color: #023a51;
    margin-top: 3px;
}

/* Contact Transaction Form Panel Design mapping */
.contact-form-panel {
    background: #ffffff;
    border: 1px solid #edf2f7;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(2, 58, 81, 0.04);
}

.premium-form-engine {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.split-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.input-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-field-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.input-field-group label span {
    color: var(--primary-color);
}

.input-field-group input,
.input-field-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--dark-bg);
    background-color: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
}

.input-field-group input:focus,
.input-field-group textarea:focus {
    border-color: var(--dark-bg);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(2, 58, 81, 0.05);
}

/* Master Response Status Messages Hooks */
.form-status-msg {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.form-status-msg.msg-success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
}

.form-status-msg.msg-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: var(--primary-color);
}

/* Primary Trigger Button Configuration */
.btn-submit-engagement {
    background-color: var(--primary-color);
    /* Your Brand Red Line */
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: 44%;
}

.btn-submit-engagement:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-submit-engagement:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* --- FAQ ASSISTANCE BANNER NOTICE --- */
.faq-assistance-callout {
    margin-top: 50px;
    background-color: var(--dark-bg);
    /* Dark Premium Corporate Blue */
    border-radius: 16px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(2, 58, 81, 0.06);
}

.callout-content-block h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.callout-content-block p {
    color: #94a3b8;
    /* Crisp readability slate */
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
}

/* Actions Hub Row Grid */
.callout-actions-matrix {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-callout-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Premium Crimson Target CTA */
.btn-callout-action.primary-booking {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.btn-callout-action.primary-booking:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Minimalist Clean Secondary Outline Frame */
.btn-callout-action.secondary-phone {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-callout-action.secondary-phone:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}


/* --- CORE LAYOUT SETTINGS --- */
.legal-document-viewport {
    background-color: #fafbfd;
    color: #334155;
    font-family: sans-serif;
    line-height: 1.6;
}

/* Hero Title Presentation Box */
.legal-hero-banner {
    background-image: url(/assets/images/businessman-in-group.webp);
    /*background-color: var(--dark-bg); /* Core Dark Corporate Blue Palette */
    padding: 80px 0 70px 0;
    text-align: center;
    color: #ffffff;
    border-bottom: 4px solid var(--primary-color);
    /* Your Brand Accent Crimson Line */
    background-position: center;
    background-size: cover;
}

.legal-hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
    padding-top: 20px;
}

.legal-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.legal-hero-banner h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

/* Dual Timeline Metadata presentation nodes */
.legal-meta-timeline {
    display: inline-flex;
    align-items: center;
    background: rgb(174 174 174 / 22%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    gap: 20px;
}

.meta-node {
    font-size: 0.9rem;
}

.meta-label {
    color: #94a3b8;
}

.meta-value {
    color: #ffffff;
    margin-left: 5px;
    font-weight: 600;
}

.meta-divider {
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- STRUCTURAL DATA RECOGNITION CONTENT SPLIT GRID --- */
.legal-content-grid-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 30px 120px 30px;
}

.legal-layout-split-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Navigation Sidebar Styles */
.legal-sidebar-nav-wrapper {
    position: sticky;
    top: 40px;
    /* Locks menu cleanly into view during scroll loops */
}

.legal-sticky-menu {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(2, 58, 81, 0.02);
}

.menu-title-header {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    padding: 10px 15px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 10px;
}

.menu-nav-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 11px 15px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.menu-nav-link:hover {
    color: var(--dark-bg);
    background-color: #f8fafc;
}

.menu-nav-link.active-link {
    color: var(--primary-color);
    background-color: #fef2f2;
    font-weight: 600;
}

/* Right Structural Information Panel */
.legal-text-body-panel {
    background-color: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(2, 58, 81, 0.01);
}

.legal-content-section h2 {
    color: var(--dark-bg);
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.legal-content-section p {
    font-size: 1.05rem;
    color: #475569;
    margin: 0 0 20px 0;
    line-height: 1.65;
}

/* Technical Element Insets (Data Card Grid) */
.legal-data-card-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px 30px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-entry-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}

.card-entry-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.entry-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    width: 35%;
}

.entry-value {
    font-size: 1rem;
    color: #023a51;
    width: 65%;
    font-weight: 500;
}

.entry-value.font-highlight {
    font-weight: 700;
}

/* Premium Structured Bullets */
.premium-bullet-matrix {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-bullet-matrix li {
    font-size: 1.05rem;
    color: #475569;
    position: relative;
    padding-left: 25px;
}

/* Custom Minimalist Bullet Markers */
.premium-bullet-matrix li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Rights Layout Split Matrix blocks */
.rights-interactive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.right-grid-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 20px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.right-grid-card:hover {
    border-color: var(--dark-bg);
    box-shadow: 0 10px 25px rgba(2, 58, 81, 0.03);
}

.right-grid-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.right-grid-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.rights-closing-note {
    margin-top: 25px !important;
}

/* Global Insets References Links styling */
.legal-inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.legal-inline-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section-divider {
    border: none;
    height: 1px;
    background-color: #f1f5f9;
    margin: 40px 0;
}

/* Target Header alignment scroll margins offset fix */
.scroll-margin-node {
    scroll-margin-top: 40px;
}

.portal-split-layout {
    max-width: 1140px;
    margin: 50px auto 100px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.calc-container-grid {
    max-width: 1140px;
    margin: 100px auto 100px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.calc-card {
    background-color: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(2, 58, 81, 0.01);
}

.calc-card h2 {
    color: var(--dark-bg);
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.form-group1 {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group1 label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-bg);
    margin-bottom: 10px !important;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-prefix {
    position: absolute;
    left: 16px;
    font-weight: 600;
    color: var(--slate-text);
}

.form-control {
    font-family: inherit;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #334155;
    background-color: #ffffff;
    transition: all 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}

.form-control-icon-padding {
    padding-left: 35px;
}

.form-control:focus {
    outline: none;
    border-color: var(--dark-bg);
    box-shadow: 0 0 0 3px rgba(2, 58, 81, 0.08);
}

.btn-calc-trigger {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.btn-calc-trigger:hover {
    background-color: var(--primary-hover);
}

.results-output-panel {
    background-color: #f8fafc;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
}

.result-metric-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.result-metric-row.total-row {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 10px;
}

.metric-label {
    font-weight: 600;
    color: var(--dark-bg);
}

.metric-value {
    font-weight: 700;
    color: var(--dark-bg) !important;
    font-size: 1.1rem;
}

.metric-value.highlight-total {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.calc-hero-banner h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.calc-hero-banner p {
    color: var(--dark-bg);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.resources-dropdown-wrapper {
    position: relative;
    /* CRITICAL: Prevents dropdown from flying to the right */
    list-style: none;
    display: inline-block;
    font-family: var(--font-body);
}

/* Base style for 'Resources' text link */
.resources-main-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0px 0;
    border-bottom: 2px solid var(--primary-color);
    transition: var(--transition-smooth);
}

/* Custom angled layout character wrapper from image */
.custom-arrow {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 400;
    display: inline-block;
    transition: var(--transition-smooth);
}

/* --- THE SUBMENU CARD PANEL --- */
.resources-dropdown-wrapper .resources-sub-menu {
    position: absolute;
    top: 100%;
    /* Placed cleanly directly underneath */
    left: 0;
    background-color: #ffffff;
    /* Contrast canvas for visibility */
    min-width: 220px;
    padding: 8px 0;
    margin: 4px 0 0 0;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(2, 58, 81, 0.08);
    border: 1px solid rgba(2, 58, 81, 0.05);

    /* Smooth CSS Transform Physics Engine Rules */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition-smooth);
    z-index: 9999;
}

/* Individual links layout inside dropdown grid */
.resources-sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--dark-bg);
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Light separation boundary border for items */
.resources-sub-menu li:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

/* Interactive item hover state variations */
.resources-sub-menu li a:hover {
    background-color: var(--dark-surface);
    color: var(--dark-bg);
    padding-left: 24px;
    /* Premium slight inset slide interaction */
}

/* --- THE ACTIVE HOVER TRIGGER ACTIONS --- */
.resources-dropdown-wrapper:hover .resources-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Arrow rotation feedback loop on main item hover */
.resources-dropdown-wrapper:hover .custom-arrow {
    transform: rotate(90deg);
    color: var(--primary-hover);
}

.resources-dropdown-wrapper:hover .resources-main-link {
    color: var(--primary-hover);
    border-bottom-color: var(--primary-hover);
}

/*cart file */

/* TABLE */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th, .cart-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.cart-table input {
    width: 60px;
    padding: 5px;
}

/* COUPON */
.coupon-box {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.coupon-box input {
    flex: 1;
    padding: 10px;
}

/* SUMMARY */
.cart-summary {
    margin-top: 20px;
}

.cart-summary h3 {
    margin-top: 10px;
}

/* BUTTONS */
.cart-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.checkout-btn {
    background: green;
}

/*----checkout-----*/

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

input,
button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

a.btn-card {
    color: var(--dark-surface);
    text-decoration: none;
    background-color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(236, 48, 42, 0.3);
}

a.btn-card:hover{
    background-color: var(--primary-hover);
}

.coupon-box button {
    width: 30% !important;
}

.coupon-box button {
    color: var(--dark-surface);
    text-decoration: none;
    background-color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(236, 48, 42, 0.3);
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.cart-actions button {
    cursor: pointer;
}

/*.cart-actions{
    width: 48%;
}*/


/*----order confirmation-----*/

.container {
    padding: 50px;
}

/* CHECKOUT */
.checkout-box {
    background: var(--glass-bg);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.hidden {
    display: none;
}

/* GRID */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* INPUTS */
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

/* STRIPE CARD */
#card-element {
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
}

/* ERROR STATES */
input:invalid, select:invalid, textarea:invalid {
    border: 1px solid #ff4d4f;
}

input:focus:invalid {
    outline: none;
    box-shadow: 0 0 5px rgba(255,0,0,0.3);
}

/* SUCCESS STATE */
input:valid {
    border: 1px solid #28a745;
}

/* BUTTON IMPROVE */
.checkout-btn {
    width: 50%;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
}

button.btn-card {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(236, 48, 42, 0.2);
}

/*---Popup discount---*/

#coupon-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 260px;
    background: #111;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    display: none;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: slideUp 0.5s ease;
}

#coupon-popup h4 {
    margin: 0 0 8px;
}

#coupon-popup button {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

#coupon-popup button:hover {
    background: #218838;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}