/* --- Global Styles & Variables --- */
:root {
    --primary-color: #005A5B;    /* Deep Teal */
    --secondary-color: #007A7C; /* Bright Teal */
    --accent-color: #D4A056;     /* Golden Ochre */
    --text-color: #333;
    --light-gray: #FDFBF7;      /* Creamy Off-White */
    --white-color: #ffffff;
    --font-family-body: 'Lato', 'Segoe UI', 'Roboto', Arial, sans-serif;
    --font-family-heading: 'Lora', Georgia, serif;
    --card-spacing: 20px;
    --preview-ratio: 0.15;
    --border-radius-main: 8px; /* Added for consistency */
    --border-radius-lg: 12px; /* Added for chat messages consistency */
    --shadow-light: 0 4px 15px rgba(0,0,0,0.07);
    --shadow-medium: 0 8px 25px rgba(0,0,0,0.1);
    --white: #ffffff; /* Added alias for clarity */
    --text-color-dark: #333333; /* Added for chat text */
}

/* --- Accessibility Focus --- */
:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px; /* Optional: adds rounded corners to outline */
}
/* Ensure focus is visible on dark backgrounds */
footer a:focus-visible, footer button:focus-visible {
    outline: 3px solid var(--white-color);
}


/* --- Base & Typography --- */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
    font-family: var(--font-family-body);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased; /* Smoother fonts */
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

section {
    padding: 80px 0;
}
/* Alternate section background for visual rhythm */
section:nth-of-type(even):not(.hero):not(.partners-section):not(#faq) { /* Exclude hero, partners, faq */
    background-color: var(--light-gray);
}


h1, h2, h3, h4 {
    font-family: var(--font-family-heading);
    color: var(--primary-color);
    line-height: 1.3;
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 0.75em;
}

h1 { font-size: clamp(2.2rem, 5vw, 2.8rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); text-align: center; margin-bottom: 1.5em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.2rem); color: var(--secondary-color); font-weight: 700; margin-bottom: 0.5em; }

p {
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 1em;
    max-width: 70ch; /* Optimal line length */
}
section p:last-child {
    margin-bottom: 0;
}


/* --- Buttons & Links --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--white-color) !important;
    text-decoration: none;
    border-radius: var(--border-radius-main);
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background-color: #C0904D;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-pulse {
    animation: pulse 2.5s infinite ease-in-out; /* Smoother pulse */
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 160, 86, 0.6); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(212, 160, 86, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 160, 86, 0); }
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Learn More button style (like links) */
.btn-learn-more {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    padding: 5px 0; /* Add slight padding */
    margin-top: 15px; /* Space above */
    display: inline-block;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.btn-learn-more:hover {
    color: var(--accent-color);
}


/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    text-align: center;
    max-width: 650px;
    margin: -1.5em auto 2.5em auto;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #555;
    line-height: 1.6;
}

/* --- Header --- */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Ensure container width */
    margin: 0 auto;    /* Center container */
    padding: 0 25px;   /* Add side padding */
}

.logo {
    font-size: clamp(1.8rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    font-family: var(--font-family-heading);
    margin-right: 20px;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.logo span {
    display: block;
    font-size: 0.8em;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 2px;
}

#main-nav-links {
    flex-grow: 1; /* Allow nav to take available space */
    display: flex; /* Use flex to center the ul */
    justify-content: center; /* Center the ul horizontally */
}

#main-nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* Added for smaller screens before full collapse */
    justify-content: center; /* Center items within the ul if they wrap */
}

#main-nav-links ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
}
#main-nav-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

#main-nav-links ul li a:hover {
    color: var(--accent-color);
}
#main-nav-links ul li a:hover::after {
    width: 100%;
}

/* --- Mobile Menu --- */
/*
REMOVED:
#menu-toggle { display: none; }
This rule was redundant. The element is targeted by .menu-icon
which already has the correct display: none property.
*/
.menu-icon {
    display: none; /* Hide hamburger by default */
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav links */
    background: none; /* Ensure no background */
    border: none; /* Ensure no border */
    flex-shrink: 0; /* Prevent hamburger from shrinking */
}
.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) { /* Widen breakpoint for new nav items */
    #main-nav-links ul {
        gap: 20px; /* Reduce gap */
    }
}

@media (max-width: 900px) {
    .nav-container { flex-wrap: wrap; }
    .menu-icon {
        display: block; /* Show hamburger */
        order: 2;
        margin-left: 15px; /* Add some space from nav */
    }
    .logo { order: 1; margin-right: auto; /* Push nav and icon to right */ }

    #main-nav-links {
        order: 4; /* Below everything */
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background-color: var(--white-color); /* Add background for overlay effect */
        box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Add shadow when open */
        justify-content: flex-start; /* Revert centering for mobile dropdown */
    }
     #main-nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 0; /* Remove gap, use padding */
        padding: 10px 0;
        justify-content: flex-start; /* Revert centering */
    }
    #main-nav-links ul li {
         width: 100%;
         text-align: center;
    }
    #main-nav-links ul li a {
         display: block; /* Make links full width */
         padding: 15px 0; /* Increase tap area */
    }
     /* Style for when menu is open */
    #main-nav-links.open {
        max-height: 400px; /* Adjust as needed */
    }

      /* Hamburger animation */
      .menu-icon.open div:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
      .menu-icon.open div:nth-child(2) { opacity: 0; }
      .menu-icon.open div:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}


/* --- Hero Section --- */
.hero {
    background-color: var(--light-gray);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-flex-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px; /* Limit width */
    margin: 0 auto;    /* Center */
    padding: 0 25px;   /* Add padding */
}

.hero-content {
    flex: 1.2;
}

.hero-content h2 { /* Added subtitle style */
    text-align: left;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: -0.5em; /* Pull up closer to H1 */
    margin-bottom: 1em;
}


.hero-image-container {
    flex: 1;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

/*
REMOVED:
.hero-image-container iframe
This was unused. Your Index.html uses an <img> tag.
*/

.hero h1 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    margin-bottom: 35px;
    color: var(--text-color);
    max-width: 550px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .hero { text-align: center; }
    .hero-flex-container { flex-direction: column; padding: 0 15px; } /* Adjust padding */
    .hero-image-container {
        order: -1;
        margin-bottom: 40px;
        width: 80%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
     .hero h1 { font-size: clamp(2rem, 6vw, 2.5rem); }
     .hero-content h2 { text-align: center; margin-top: -0.2em;}
     .hero p {
         margin-left: auto;
         margin-right: auto;
         font-size: clamp(1rem, 2.2vw, 1.1rem);
    }
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: var(--white-color);
    padding: 35px;
    border-radius: var(--border-radius-main);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex; /* Added flex for alignment */
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon svg {
    width: 52px;
    height: 52px;
    color: var(--secondary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    flex-grow: 1; /* Allow paragraph to push button down */
}

/* --- Roadmap Section --- */
#roadmap {
    background-color: var(--white-color);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}
.timeline::after { /* The vertical line */
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    opacity: 0.15; /* Slightly less opaque */
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    opacity: 0; /* For animation */
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: calc(0.1s * var(--order, 0)); /* Stagger animation */
}
.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Positioning items left/right */
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 30px; /* Add space between text and center line */
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 30px; /* Add space between text and center line */
    text-align: left;
}

/* The circle on the timeline */
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white-color);
    border: 5px solid var(--secondary-color); /* Thicker border */
    top: 25px; /* Align better with text */
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.3s ease; /* Add transition for scale */
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px; /* Position dot on the right for odd items */
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px; /* Position dot on the left for even items */
}
.timeline-item.active .timeline-dot {
    transform: scale(1.2); /* Slightly larger when active */
}


/* The content box */
.timeline-content {
    padding: 25px 30px; /* Increased padding */
    background-color: var(--light-gray);
    position: relative;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-light);
    border: 1px solid #eee;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
/* Active/Hover state */
.timeline-item.active .timeline-content,
.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(0,90,91,0.12);
    transform: scale(1.03); /* Slightly larger scale */
    border-color: var(--secondary-color); /* Highlight border */
}

.timeline-content h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
}
.timeline-content h4 {
    margin: -5px 0 10px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-family-body);
}

/* Expandable details */
.timeline-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-top 0.4s ease-out, opacity 0.4s ease-out; /* Smoother transition */
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444; /* Slightly darker */
    opacity: 0;
}
.timeline-item.active .timeline-details {
    max-height: 250px; /* Generous max height */
    margin-top: 15px;
    opacity: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .timeline::after { left: 20px; transform: translateX(0); } /* Move line to left */
    .timeline-item { width: 100%; padding-left: 60px; padding-right: 15px; text-align: left !important; } /* All items on right */
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; }
    .timeline-dot { left: 11px; } /* Align dot with the line */
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot { left: 11px; }
}

/* --- Partnership Section --- */
.partners-section {
    background-color: var(--light-gray); /* Match About section */
}
.partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}
.benefit-item {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius-main);
    box-shadow: var(--shadow-light);
}
.benefit-item svg {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    stroke-width: 1.5; /* Adjust icon thickness */
}
.benefit-item h4 {
    font-family: var(--font-family-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.benefit-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
.partners-section .btn {
    display: block; /* Make button full width (or keep inline-block for centered) */
    width: fit-content;
    margin: 0 auto; /* Center button */
}


/* --- About Section --- */
#about {
    background-color: var(--white-color); /* Swapped with partnership */
}
.about-flex {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-flex img {
    flex: 0 0 40%;
    max-width: 400px;
    border-radius: var(--border-radius-main);
    height: auto;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}
.about-flex div {
    flex: 1;
}

.stats-grid-condensed {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}
.stats-grid-condensed .stat-item { text-align: left; }
.stats-grid-condensed .stat-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}
.stats-grid-condensed .stat-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.carriers-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
    text-align: center;
}
.carriers-section h4 {
    color: var(--primary-color);
    font-family: var(--font-family-body);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.carriers-grid-condensed {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px 35px;
}
.carriers-grid-condensed .carrier-logo {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    padding: 8px 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    /* Consider replacing text with actual grayscale logos */
}

@media (max-width: 768px) {
    .about-flex { flex-direction: column; align-items: center; text-align: center; }
    .about-flex img { max-width: 80%; margin-bottom: 30px; }
    .stats-grid-condensed { justify-content: center; }
}

/* --- Testimonials Section --- */
#testimonials {
    background-color: var(--light-gray); /* Match other light sections */
}
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}
.testimonials-grid {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-card-new {
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    background: var(--white-color); /* Contrast background */
    padding: 40px;
    border-radius: var(--border-radius-main);
    border-left: 6px solid var(--secondary-color);
    box-shadow: var(--shadow-light);
}
.testimonial-card-new blockquote {
    margin: 0 0 15px 0;
    font-style: italic;
    color: #444;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    position: relative;
    padding-left: 25px;
}
.testimonial-card-new blockquote::before {
    content: '“';
    position: absolute;
    left: -5px;
    top: -10px;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: var(--font-family-heading);
}

.testimonial-card-new footer {
    margin-top: 15px;
    font-style: normal;
    font-weight: bold;
    text-align: right;
    color: var(--primary-color);
    background: none;
    padding: 0;
    font-size: 0.95rem;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 28px;
    color: var(--primary-color);
    z-index: 10;
    transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
#testimonial-prev { left: 5px; }
#testimonial-next { right: 5px; }

.testimonial-dots {
    text-align: center;
    margin-top: 30px;
}
.testimonial-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.testimonial-dots .dot.active {
    background-color: var(--secondary-color);
}

/* --- Contact Section --- */
#contact {
    background-color: var(--white-color); /* Match default background */
}
.contact-form {
    background: var(--light-gray); /* Form background contrast */
    padding: 50px;
    border-radius: var(--border-radius-main);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    border: 1px solid #eee;
}
.contact-form p:first-of-type {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

.form-group { margin-bottom: 25px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}
.form-group label .required-star { /* Style required indicator */
    color: #c62828; /* Red */
    margin-left: 2px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-main);
    box-sizing: border-box;
    font-family: var(--font-family-body);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 90, 91, 0.2);
    outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px 12px; padding-right: 40px; cursor: pointer; }

.required-note { /* Style required note */
    font-size: 0.8rem;
    text-align: right;
    margin-top: -15px; /* Pull up closer */
    margin-bottom: 20px;
    color: #555;
}
.required-note .required-star { color: #c62828; }


.btn-submit {
    width: 100%;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 10px;
}
.btn-submit:disabled { /* Style for disabled button */
    background-color: #ccc;
    cursor: not-allowed;
}


.form-status {
    padding: 15px;
    border-radius: var(--border-radius-main);
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
    display: none;
}
.status-success { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.status-error { background-color: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* --- FAQ Section --- */
#faq {
    background-color: var(--light-gray); /* Alternate background */
}
.faq-container {
    max-width: 900px; /* Wider for columns */
    margin: 0 auto;
}
.faq-item {
    background-color: var(--white-color);
    margin-bottom: 15px;
    border-radius: var(--border-radius-main);
    border: 1px solid #e0e0e0;
    box-shadow: var(--shadow-light);
    transition: box-shadow 0.3s ease;
    /* Necessary for column break avoidance */
    break-inside: avoid-column;
    page-break-inside: avoid;
}
.faq-item[open] {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    position: relative;
    list-style: none; /* Remove default marker */
    color: var(--primary-color);
    font-family: var(--font-family-heading);
}

.faq-question::-webkit-details-marker { display: none; } /* Hide default arrow */
.faq-question::after { /* Custom arrow */
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
    content: '−';
    /* Rotate transform removed - can conflict with details animation */
}

.faq-answer {
    padding: 0 25px 25px 25px;
    color: #444;
    line-height: 1.7;
    animation: fadeIn 0.4s ease-out; /* Add fade-in animation */
}
.faq-answer p, .faq-answer ul {
    margin-bottom: 1em;
}
.faq-answer ul {
    padding-left: 25px; /* Indent list */
}
.faq-answer li {
    margin-bottom: 0.5em;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- FAQ Two-Column Layout --- */
@media (min-width: 768px) {
    .faq-container {
        column-count: 2;
        column-gap: 30px; /* Adjust spacing between columns */
    }
    .faq-item {
        /* Prevent items from breaking awkwardly across columns */
        display: inline-block; /* Needed for break-inside */
        width: 100%; /* Ensure items take full column width */
    }
    /* Optional: Ensure subtitle stays above columns */
    #faq .section-subtitle {
        column-span: all;
    }
     #faq h2 {
        column-span: all; /* Keep h2 spanning full width */
     }
}

/* --- Downloads Section --- */
#downloads {
    background-color: var(--light-gray); /* Continue alternating pattern */
}
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.download-card {
    background: var(--white-color);
    padding: 35px;
    border-radius: var(--border-radius-main);
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.download-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}
.download-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    stroke-width: 1.5;
}
.download-icon svg {
    width: 100%;
    height: 100%;
}
.download-card h4 {
    font-family: var(--font-family-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.download-card p {
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
    margin-bottom: 25px;
    max-width: 100%; /* Ensure p tag doesn't overflow */
}
.btn-download {
    background-color: var(--secondary-color); /* Use secondary for download */
    padding: 10px 25px;
    font-size: 0.95rem;
}
.btn-download:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px); /* Add slight hover to button */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


/* --- Modals --- */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s linear;
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0s 0s linear;
}

.modal-content {
    background: var(--white-color);
    padding: 35px 40px;
    border-radius: var(--border-radius-main);
    max-width: 650px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.open .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.2rem;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
    color: var(--text-color);
    transform: rotate(90deg);
}

.modal-content h3 { margin-top: 0; margin-bottom: 25px; }
.modal-content p { margin-bottom: 1em; line-height: 1.7; }

/*
REMOVED:
All styles for .calendar-modal, .agent-buttons, etc.
They were not used in your Index.html file.
*/

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 50px 20px 30px 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to top */
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    max-width: 1200px; /* Apply container width */
    margin-left: auto;
    margin-right: auto;
}

.footer-contact { flex: 1; min-width: 250px; }
.footer-contact p { margin: 8px 0; opacity: 0.9; font-size: 0.95rem; }

/* Footer Social Styles */
.footer-social {
    flex: 1;
    min-width: 200px;
    text-align: center; /* Center align within its column */
}
.footer-social p { /* Style "Follow Us:" label */
    margin-bottom: 10px;
    font-weight: bold;
    opacity: 0.9;
    font-size: 1rem;
}
.footer-social .social-icons {
    display: flex;
    justify-content: center; /* Center icons horizontally */
    gap: 20px; /* Space between icons */
}
.footer-social .social-icons a {
    color: rgba(255, 255, 255, 0.8); /* Lighter white for icons */
    margin-left: 0; /* Remove specific margin */
}
.footer-social .social-icons a:hover {
    color: var(--white-color); /* Bright white on hover */
    transform: scale(1.15);
}


.qr-code-container { text-align: center; flex-shrink: 0; /* Prevent QR code from shrinking too much */ }
.qr-code-container img { background-color: white; padding: 6px; border-radius: var(--border-radius-main); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.qr-code-container p { font-size: 0.9rem; margin-top: 8px; opacity: 0.8; }

.disclaimer {
    font-size: 0.8rem;
    max-width: 800px;
    margin: 30px auto 0 auto;
    opacity: 0.7;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
    line-height: 1.5;
}

/*
REMOVED:
All .chatbot-container, #chat-bubble, #chat-window, etc. styles
have been moved to chatbot.css
*/

/* --- Responsive Adjustments --- */
@media (max-width: 900px) { /* Tablet and smaller */
     /* Note: #back-to-top styles are now in chatbot.css */
     .footer-social { text-align: left; } /* Align left on smaller screens */
     .footer-social .social-icons { justify-content: flex-start; }
}

@media (max-width: 768px) { /* Mobile */
    section { padding: 60px 0; }
    h1 { font-size: clamp(2rem, 6vw, 2.4rem); }
    h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
    .container { padding: 0 15px; }

    /* Header adjustments already handled */

    .hero { padding: 60px 0; }
    .hero-flex-container { gap: 30px; }
    .hero-image-container { max-width: 300px; }

    .services-grid { gap: 25px; }
    .service-card { padding: 25px; }

    .timeline { padding: 20px 0; }
    .timeline::after { left: 15px; }
    .timeline-item { padding-left: 50px; padding-right: 10px; }
    .timeline-dot { left: 6px; width: 18px; height: 18px; border-width: 4px; top: 28px; }

    .about-flex { gap: 30px; }
    .about-flex img { max-width: 90%; }

    .testimonial-carousel-wrapper { padding: 0 40px; }
    .testimonial-nav-btn { width: 35px; height: 35px; font-size: 20px; }
    #testimonial-prev { left: 3px; }
    #testimonial-next { right: 3px; }

    .contact-form { padding: 30px; }

     /* FAQ columns revert to single column */
    .faq-container {
        column-count: 1;
    }

    /* Downloads grid reverts to single column on small screens if needed */
    .downloads-grid {
         /* grid-template-columns: 1fr; /* Uncomment if you prefer single column on mobile */
    }
}

@media (max-width: 480px) { /* Small mobile */
     .logo span { display: none; }
     /* REMOVED .social-icons specific rules for mobile header */
     .btn { padding: 10px 20px; font-size: 0.95rem; }
     .form-row { gap: 15px; }
     .contact-form { padding: 25px; }
     /* Note: #back-to-top styles are now in chatbot.css */

     .footer-grid > * { /* Stack footer items */
         min-width: 100%;
         text-align: center;
     }
     .footer-social { margin-top: 20px; }
     .qr-code-container { margin-top: 20px; }
}

/*
REMOVED:
All styles for Vertex AI Search (e.g., #vertex-search-overlay)
were removed as they are not used in your Index.html file.
*/