/* 
   BIZBOX CENTER - WordPress Astra + Elementor UI Replica Stylesheet
   100% Matching Layout, Font type, size, spaces, colors, and styling
*/

/* ----------------------------------------------------
   1. Brand Colors & Global Tokens (Astra Palette)
---------------------------------------------------- */
:root {
    --ast-global-color-0: #2FC1FF;  /* Light Blue */
    --ast-global-color-1: #08ACF2;  /* Primary Sky Blue */
    --ast-global-color-2: #101218;  /* Title Dark */
    --ast-global-color-3: #4C5253;  /* Body Grey */
    --ast-global-color-4: #F3F6F6;  /* Background Slate */
    --ast-global-color-5: #FFFFFF;  /* White */
    --ast-global-color-6: #000000;  /* Black */
    --ast-global-color-7: #4B4F58;  /* Muted Grey */
    --ast-global-color-8: #ffdc4a;  /* Theme Yellow */
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    --font-btn: 'Poppins', sans-serif;
    
    --ast-normal-container-width: 1140px;
    --transition-smooth: all 0.25s linear;
}

/* ----------------------------------------------------
   2. Base & Typography Reset (Astra Default)
---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px */
}

body {
    font-family: var(--font-body);
    font-weight: 500; /* Increased from 400 to make all body texts more readable and robust */
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.65em;
    background-color: var(--ast-global-color-4);
    color: var(--ast-global-color-3);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--ast-global-color-2);
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 75px;
    font-size: 4.6875rem;
    font-weight: 600;
    line-height: 1.25em;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 57px;
    font-size: 3.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
}

h3 {
    font-size: 38px;
    font-size: 2.375rem;
    font-weight: 500;
    text-transform: uppercase;
}

h4 {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

h5 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 34px;
    font-weight: 500;
}

h6 {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 1.25em;
    font-weight: 500;
}

p {
    margin-bottom: 20px;
    color: var(--ast-global-color-3);
}

a {
    color: var(--ast-global-color-1);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: rgba(15, 17, 23, 0.43);
}

/* ----------------------------------------------------
   3. Container & Layout Classes
---------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--ast-normal-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

/* Elementor Grid Mimics */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Divider Line (Wordpress style) */
.ast-divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.ast-divider-short {
    width: 60px;
    height: 2px;
    background-color: var(--ast-global-color-1);
    margin: 15px 0;
}

/* Buttons (WordPress Elementor Spec) */
.btn {
    display: inline-block;
    font-family: var(--font-btn);
    font-weight: 700;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 60px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background-color: var(--ast-global-color-8);
    color: var(--ast-global-color-3);
    text-align: center;
    transition: var(--transition-smooth);
}

.btn:hover, .btn:focus {
    color: var(--ast-global-color-6);
    background-color: rgba(255, 219, 74, 0.78);
    transform: none;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--ast-global-color-3);
    color: var(--ast-global-color-3);
}

.btn-secondary:hover {
    background-color: var(--ast-global-color-3);
    color: var(--ast-global-color-5);
}

.btn-full {
    width: 100%;
}

/* Sub-headings */
.sub-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    font-size: 1.0625rem;
    text-transform: uppercase;
    color: var(--ast-global-color-3);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

/* ----------------------------------------------------
   4. Header Styles (Astra Transparent Header)
---------------------------------------------------- */
.site-header {
    background-color: transparent;
    border-bottom: none;
    padding: 25px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    max-width: 35px;
    width: 35px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    font-size: 1.5rem;
    color: var(--ast-global-color-5); /* White Text */
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-item a {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ast-global-color-5); /* White Text for Transparent Header */
    font-size: 16px;
    transition: var(--transition-smooth);
}

.nav-item a:hover {
    color: var(--ast-global-color-8); /* Yellow hover */
}

/* Custom Header Launch App Button */
.btn-outline-nav {
    background-color: transparent !important;
    border: 2px solid #00B4D8 !important; /* Premium sky blue outline */
    color: #00B4D8 !important;
    padding: 10px 22px !important;
    border-radius: 8px !important; /* 8px rounded corners as requested */
    font-family: var(--font-btn);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease-in-out !important;
    display: inline-block;
}

.btn-outline-nav:hover {
    background-color: #00B4D8 !important;
    color: #FFFFFF !important; /* Transitions text to white */
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4); /* Glow effect on hover */
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--ast-global-color-5);
}

/* ----------------------------------------------------
   5. Hero Sections (Elementor Lounge Background Replica)
---------------------------------------------------- */
.hero-sec {
    position: relative;
    background-color: #FFFFFF; /* Ensures transparent parts of the image blend into white next sections */
    background-image: linear-gradient(to bottom, rgba(16, 18, 24, 0.75) 0%, rgba(16, 18, 24, 0.3) 50%, rgba(255, 255, 255, 0) 100%), url('../images/LandingBG1-Lounge.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 160px 0 100px 0;
    min-height: 750px;
    display: flex;
    align-items: center;
    color: var(--ast-global-color-5);
}

.hero-columns {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-left {
    padding-right: 30px;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 75px;
    font-size: 4.6875rem;
    font-weight: 600;
    line-height: 1.15em;
    color: var(--ast-global-color-5);
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.45); /* High-contrast shadow for premium readability */
}

.hero-yellow-line {
    height: 5px;
    background-color: var(--ast-global-color-8);
    width: 280px;
    margin: 25px 0;
    border: none;
}

.hero-sub-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-size: 2rem;
    font-weight: 600;
    color: var(--ast-global-color-5);
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.25em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.45); /* High-contrast shadow for premium readability */
}

.hero-desc {
    font-size: 16px;
    font-weight: 600; /* Bold update for premium readability */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65em;
    margin-bottom: 35px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35); /* Subtle shadow for readability on overlay image */
}

.hero-right img {
    width: 100%;
    max-width: 346px; /* Reduced by 25% from 462px for better visual balance */
    display: block;
    margin: 0 auto;
    transform: translateY(60px); /* Pushes the mockup slightly down for a modern unbalanced layout */
}

/* Hero Section 2 (Mails section) */
.hero-sec-2 {
    background-color: #FFFFFF; /* Pure White Background as requested */
    padding: 100px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.hero-sec-2 .hero-columns {
    grid-template-columns: 1fr 1fr;
}

.hero-2-subtitle {
    color: #E53E3E; /* Vivid Red sub-title */
    font-family: var(--font-heading);
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.hero-2-title {
    font-family: var(--font-heading);
    font-size: 57px;
    font-size: 3.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ast-global-color-2);
    line-height: 1.1em;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.hero-2-desc {
    font-family: var(--font-body);
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600; /* Bold update for premium readability */
    color: var(--ast-global-color-3);
    line-height: 1.65em;
    margin-bottom: 25px;
}

.hero-sec-2 .hero-right img {
    max-width: 440px;
}

/* ----------------------------------------------------
   6. Key Features Grid (Elementor Section)
---------------------------------------------------- */
.features-sec {
    background-color: var(--ast-global-color-4); /* Soft Slate Grey Background as requested */
    padding: 100px 0;
}

.sec-header-left {
    text-align: left;
    max-width: 1000px;
    margin-bottom: 60px;
}

.features-sub-title {
    color: #E53E3E; /* Vivid Red sub-title */
    font-family: var(--font-heading);
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.features-main-title {
    font-family: var(--font-heading);
    font-size: 57px;
    font-size: 3.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ast-global-color-2);
    line-height: 1.1em;
    letter-spacing: -0.5px;
}

.features-layout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.features-row-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 45px 0;
    border: none;
}

.feat-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align items as requested */
    padding: 15px 0;
}

.feat-icon-img {
    width: 125px;
    height: 125px;
    object-fit: contain;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto; /* Center the icons within left-aligned cards */
}

.feat-title {
    font-family: var(--font-heading); /* Oswald font to match replica */
    font-weight: 600;
    font-size: 28px;
    font-size: 1.75rem;
    text-transform: none; /* Keep original Title Case as requested */
    color: var(--ast-global-color-2);
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.25em;
    letter-spacing: -0.5px;
}

.feat-desc {
    font-size: 16px;
    font-weight: 600; /* Bold update for premium readability */
    line-height: 1.65em;
    color: var(--ast-global-color-3);
    text-align: left;
}

/* ----------------------------------------------------
   7. Business Solutions Grid
---------------------------------------------------- */
.solutions-sec {
    background-color: var(--ast-global-color-5); /* Restored to Pure White Background as requested */
    padding: 100px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.solutions-main-title {
    font-family: var(--font-heading);
    font-size: 57px;
    font-size: 3.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ast-global-color-2);
    line-height: 1.1em;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.solutions-sub-title {
    color: #E53E3E; /* Vivid Red sub-title */
    font-family: var(--font-heading);
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    line-height: 1.35em;
    letter-spacing: 0.5px;
}

.solutions-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.sol-item {
    background-color: transparent; /* Seamless blend over grey section */
    display: flex;
    flex-direction: column;
}

.sol-cover-img {
    width: 100%;
    height: 480px; /* Restored to original Portrait (vertical) proportions matching capture */
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.cmra-banner-card-new {
    background-color: var(--ast-global-color-5); /* Pure White background to blend seamlessly */
    display: grid;
    grid-template-columns: 0.75fr 1.25fr; /* 37.5% text, 62.5% image to match replica wide proportion */
    gap: 40px;
    align-items: center;
    margin-top: 60px;
    padding: 30px 0 0 0; /* Keep it flat, alignment with left card borders */
}

.cmra-left-new {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cmra-right-new img {
    width: 100%;
    display: block;
    border-radius: 4px;
    object-fit: contain;
}

.sol-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ast-global-color-2);
    margin-bottom: 15px;
}

.sol-desc {
    font-size: 16px;
    font-weight: 600; /* Bold update for premium readability */
    color: var(--ast-global-color-3);
    line-height: 1.6em;
}

/* ----------------------------------------------------
   8. Plans & Pricing (Elementor Section)
---------------------------------------------------- */
.pricing-sec {
    background-color: var(--ast-global-color-5);
    padding: 100px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.pricing-sub-title {
    color: #E53E3E; /* Vivid Red sub-title */
    font-family: var(--font-heading);
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-align: left;
}

.pricing-main-title {
    font-family: var(--font-heading);
    font-size: 57px;
    font-size: 3.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ast-global-color-2);
    line-height: 1.1em;
    margin-bottom: 50px;
    text-align: left;
    letter-spacing: -0.5px;
}

.pricing-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    align-items: stretch;
}

.price-card {
    background-color: var(--ast-global-color-5);
    border: 6px solid #8CE2F8; /* Soft bold baby blue border replica */
    border-radius: 20px; /* Rounded corners replica */
    padding: 50px 35px 40px 35px; /* Optimizing bottom padding without buttons */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Flow naturally as button is removed */
    box-shadow: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
    border-color: #55D4F5; /* Subtle interaction hover glow */
}

.price-card-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 15px;
    text-align: left;
}

.price-card-header h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--ast-global-color-2);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.price-card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600; /* Bold update for premium readability */
    line-height: 1.6em;
    color: var(--ast-global-color-3);
    margin-bottom: 30px;
    min-height: 100px; /* Aligns description box heights */
    text-align: left;
}

/* Plan Features Flat List & Accordion */
.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.plan-features-list li {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ast-global-color-2);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Divider line underneath replica */
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
}

.plan-features-list li.plan-accordion-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0; /* Padding handled inside trigger */
}

.accordion-trigger {
    width: 100%;
    padding: 15px 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ast-global-color-2); /* Black by default when closed (default status) */
    display: flex;
    align-items: center;
    transition: color 0.25s ease;
}

.plan-accordion-item.active .accordion-trigger {
    color: #00B4D8; /* Main Blue Color when open (active status) */
}

.plan-accordion-item .feat-bullet {
    color: #00B4D8; /* Bullet constantly matches active blue */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    width: 100%;
    transition: max-height 0.25s ease-out;
}

.accordion-content-inner {
    padding: 0 0 20px 25px; /* Clean text indentation without dotted border */
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75em;
    color: var(--ast-global-color-3);
    text-align: left;
}

.italic-text {
    font-style: italic;
    font-weight: 500;
    color: var(--ast-global-color-3);
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 5px;
}

.plan-features-list li:last-child {
    border-bottom: none; /* No bottom divider for last item */
}

.feat-bullet {
    color: var(--ast-global-color-2);
    font-size: 11px;
    margin-right: 12px;
    display: inline-block;
    vertical-align: middle;
}

/* CTA Buttons styling */
.pricing-sec .plan-cta-btn {
    width: 100%;
    display: block;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    padding: 15px 0;
    text-transform: uppercase;
    background-color: var(--ast-global-color-1); /* Yellow */
    color: #000000;
    border: none;
    transition: all 0.25s ease;
}

.pricing-sec .plan-cta-btn:hover {
    background-color: #F6D046;
    color: #000000;
}

.pricing-sec .premium-btn {
    background-color: transparent !important;
    color: var(--ast-global-color-2) !important;
    border: 2px solid var(--ast-global-color-2) !important;
}

.pricing-sec .premium-btn:hover {
    background-color: var(--ast-global-color-2) !important;
    color: var(--ast-global-color-5) !important;
}

/* ----------------------------------------------------
   9. Contact Form & Footer
---------------------------------------------------- */
.contact-sec {
    background-color: var(--ast-global-color-5);
    padding: 100px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-left h2 {
    font-size: 57px;
    font-size: 3.5625rem;
    margin-bottom: 25px;
}

.contact-left p {
    font-size: 16px;
    font-weight: 600; /* Bold update for premium readability */
    margin-bottom: 30px;
}

.contact-bullets {
    margin-top: 25px;
    list-style: none;
}

.contact-bullets li {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--ast-global-color-2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-bullets li::before {
    content: "•";
    color: var(--ast-global-color-8);
    font-size: 24px;
    line-height: 1;
}

/* Form Styles */
.contact-right-form-wrap {
    background-color: var(--ast-global-color-4);
    padding: 50px;
    border-radius: 6px;
}

.wp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wp-contact-form label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--ast-global-color-2);
    display: block;
    margin-bottom: 8px;
}

.wp-contact-form input, .wp-contact-form select, .wp-contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    background-color: var(--ast-global-color-5);
    outline: none;
    transition: var(--transition-smooth);
}

.wp-contact-form input:focus, .wp-contact-form select:focus, .wp-contact-form textarea:focus {
    border-color: var(--ast-global-color-1);
}

/* Footer (Original Replica) */
.site-footer {
    background-color: #000000; /* Sleek black footer background as requested */
    padding: 70px 0 35px 0;
    font-family: 'Quicksand', sans-serif;
    color: #FFFFFF;
}

.footer-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    text-align: left;
}

.footer-col h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
    margin-top: 0;
}

.footer-col h5 {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    margin-top: 0;
}

.footer-col h5 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col h5 a:hover {
    color: #00B4D8;
}

.footer-col p {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #E2E8F0;
    margin: 0;
}

.footer-links, .footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a, .footer-nav-links a {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover, .footer-nav-links a:hover {
    color: #00B4D8;
}

.footer-col-nav {
    display: flex;
    justify-content: flex-end;
}

.footer-col-nav .footer-nav-links {
    text-align: right;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 50px 0 25px 0;
}

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

.footer-bottom p {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #CBD5E0;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-layout-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-col-nav {
        justify-content: flex-start;
    }
    .footer-col-nav .footer-nav-links {
        text-align: left;
    }
}

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s linear;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--ast-global-color-5);
    padding: 40px;
    border-radius: 6px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-20px);
    transition: transform 0.25s ease-out;
}

.modal-overlay.show .modal-card {
    transform: translateY(0);
}

.modal-check {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E6F8FC;
    color: var(--ast-global-color-1);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-desc {
    font-size: 15px;
    color: var(--ast-global-color-3);
    margin-bottom: 25px;
}

/* ----------------------------------------------------
   10. Responsive Breakpoints
---------------------------------------------------- */
@media (max-width: 1024px) {
    h1 { font-size: 55px; }
    h2 { font-size: 40px; }
    .features-layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solutions-layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start; /* Aligns menu items to the left, matching the logo alignment */
        width: 100%;
        position: absolute;
        top: 66px;
        left: 0;
        background-color: var(--ast-global-color-5);
        border-bottom: 1px solid rgba(0,0,0,0.06);
        padding: 20px 25px;
        gap: 15px;
    }

    .nav-menu .nav-item a {
        color: var(--ast-global-color-2) !important; /* Forces black text color on white mobile background */
        font-weight: 600;
        display: block;
        padding: 8px 0;
        text-align: left;
    }

    .nav-menu .nav-item a:hover {
        color: var(--ast-global-color-1) !important;
    }

    .nav-menu .nav-item a.btn-outline-nav {
        color: #00B4D8 !important; /* Preserves the blue branding color on mobile */
        border: 2px solid #00B4D8 !important;
        border-radius: 8px !important;
        padding: 10px 22px !important;
        display: inline-block !important;
        text-align: center !important;
        margin-top: 10px;
    }

    .nav-menu .nav-item a.btn-outline-nav:hover {
        background-color: #00B4D8 !important;
        color: #FFFFFF !important;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-columns {
        grid-template-columns: 1fr;
        text-align: left; /* Changed to left-align matching desktop replica */
    }
    
    .hero-yellow-line {
        width: 90%;
        max-width: 320px; /* Aligns yellow line length with text width on mobile screen */
        margin: 20px 0;
    }
    
    .hero-left {
        padding-right: 0;
    }

    .hero-right img {
        transform: translateY(0); /* Reset unbalanced offset on mobile devices */
        margin-top: 30px;
    }
    
    .hero-sec-2 .hero-columns {
        grid-template-columns: 1fr;
    }
    
    .feat-item {
        padding: 10px 0;
    }
    
    .solutions-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .cmra-banner-card-new {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px 0;
    }
    
    .cmra-right-new {
        grid-row: 1; /* Pushes image above the text on mobile */
    }
    
    .cmra-left-new {
        grid-row: 2; /* Places text below the image on mobile */
        text-align: left;
    }
    
    .cmra-right-new img {
        width: 100%;
        height: auto;
        max-height: 260px; /* Portrait height restriction for balance */
        object-fit: cover;
    }
    
    .pricing-layout-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
    
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-right-form-wrap {
        padding: 30px 20px;
    }
    
    .footer-bottom p {
        text-align: center !important;
        font-size: 11.5px !important; /* Forces copy band into one neat single line on mobile screen */
        letter-spacing: -0.1px;
        line-height: 1.4;
    }
}
