/* Basic Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* comment */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #ffffff; /* White background */
}






body.contact-page-background {
    background-image: url('../images/sunrise.jpg'); /* Path relative to css folder */
    background-size: cover; /* Cover the entire viewport */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Prevent tiling */
    background-attachment: fixed; /* Image stays fixed during scroll */
    /* Add a semi-transparent overlay to ensure text readability */
    /* This can be done with a pseudo-element or by adjusting main content background */
}

/* Option A: Overlay using a pseudo-element on the body */
body.contact-page-background::before {
    content: "";
    position: fixed; /* Or absolute if body isn't scrolling oddly */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75); /* White overlay, 75% opacity */
    /* Or try your brand blue with opacity: rgba(27, 54, 100, 0.6); Blue overlay */
    z-index: -1; /* Place it behind the content */
}



/* Ensure your main content containers have a solid background if needed,
   or that text has enough contrast.
   The .contact-form already has a background: #f9f9f9; which helps.
   You might need to adjust the opacity of the overlay or the
   background of .contact-form for best readability. */

.contact-form-container {
    /* You might want to ensure this container itself doesn't have a conflicting
       background if you want the body background to show through, or give it
       a semi-transparent background itself. */
    /* For example, if it had a white background:
       background-color: rgba(255, 255, 255, 0.9); to make it slightly transparent
    */
}

/* Adjust text colors if needed for contrast against the new background/overlay */
.contact-form-container h2, 
.contact-form-container p {
    /* Example: color: #333; or a darker shade if needed */
}


/* Utility Classes */
.container {
 /*   max-width: 1200px; */
    margin: 0 auto;
}

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

.bg-light {
    background-color: #f4f7f6; /* A very light, slightly cool gray/greenish */
}

/* Typography */
h1, h2 {
    margin-bottom: 15px;
    line-height: 1.3;
    color: #003366; /* Primary Blue */
}
h2 { font-size: 2.2em; text-align: center; margin-bottom: 30px; }
p { margin-bottom: 15px; color: #555; }
a { color: #003366; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #FDD700; /* Primary Yellow */
    color: #003366; /* Primary Blue */
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* cursor: not-allowed; */
    border: 2px solid #FDD700;
}
.cta-button:hover {
    background-color: #e6c300; /* Darker yellow */
    color: #003366;
    text-decoration: none;
}

.cta-button-hero {
    display: inline-block;
    background-color: #FDD700; /* Primary Yellow */
    color: #003366; /* Primary Blue */
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* cursor: not-allowed; */
    border: 2px solid #FDD700;
}
.cta-button-hero:hover {
    background-color: #e6c300; /* Darker yellow */
    color: #003366;
    text-decoration: none;
}
.cta-button-hero.secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta-button-hero.secondary:hover {
    background-color: #003366;
    color: #FDD700;
}

.cta-button.secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}
.cta-button.secondary:hover {
    background-color: #003366;
    color: #FDD700;
}

/* Page Wrapper - for Overlay Context AND Fixed Header Offset */
.page-wrapper {
    position: relative;
    overflow-x: hidden;
    /* Desktop header height estimate: Adjust this value based on your actual desktop header height */
    /* Example: If header has 15px top/bottom padding + logo is 50px high = 15+15+50 = 80px */
    padding-top: 80px; /* <<< ADJUST FOR YOUR DESKTOP HEADER HEIGHT */
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
    pointer-events: none; z-index: 1000; overflow: hidden;
}
.coming-soon-overlay span {
    display: block; transform: rotate(-45deg);
    font-size: clamp(2.5rem, 10vw, 8rem); font-weight: 900;
    color: rgba(0, 0, 0, 0.15); /* Opacity at 0.15 */
    border: none; padding: 10px 30px; white-space: nowrap;
    pointer-events: auto; user-select: none;
    letter-spacing: 5px; text-transform: uppercase;
}

/* Header - Mobile-First Responsive Design */
.site-header {
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Ensure header stays on top during scroll */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.header-container {
 /*   max-width: 1260px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    max-width: 160px;
    padding-left: 16px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    padding-right: 40px;
    z-index: 1003;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #003366;
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Navigation Menu - Mobile First */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding: 8px 19px 0px 8px;
/*    font-size: 1.1em !important; */
    list-style: none;
    margin: 0;
    z-index: 1001;
    overflow-y: auto;
}

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

.nav-menu li {
    margin-bottom: 0px;
}


.nav-menu a {
    font-weight: 600;
    color: #003366;
    text-decoration: none;
    display: inline-block; /* Remove the conflicting display: block */
    padding: 4px; /* Remove the conflicting 12px 0 padding */
    transition: color 0.3s ease, transform 0.2s ease;
    background-color: transparent;
}

.nav-menu a:hover {
    color: #FDD700;
    text-decoration: none;
    transform: translateX(5px);
}

/* Special styling for client login button in mobile */
.nav-menu a img {
    height: 100px !important;
    width: auto !important;
    transition: transform 0.3s ease, filter 0.3s ease !important;
    background-color: #ffffff !important; /* Add white background */
    border-radius: 4px !important; /* Optional: round corners slightly */
    padding-right: 10px !important; /* Optional: slight padding */
    transform: scale(1.0);
    filter: brightness(1.1);
}
.nav-menu a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .site-header {
        padding: 15px 0;
    }

    .logo {
        max-width: 200px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        display: flex;
        align-items: center;
        overflow: visible;
    }

    .nav-menu li {
        margin-bottom: 0;
        margin-left: 0px;
    }

    .main-nav li {
        margin-bottom: 0;
        margin-left: 0px;
        margin-top: 0;
        margin-right: 0;
        padding: 0;
    }

    .nav-menu a {
        font-size: 1em;
        padding: 8px 18px 0px 8px;
    }

    .nav-menu a:hover {
        transform: translateY(-1px);
    }

    .mobile-menu-overlay {
        display: none;
    }
}

/* Hero Section */
.hero { display: flex; min-height: calc(80vh - 70px); background-color: #003366; }
.hero-content { flex: 1; padding: 50px 5%; display: flex; flex-direction: column; justify-content: center; color: #ffffff; }
.hero-content h1 {
    color: #ffffff;
    font-size: 2.6em; /* Default desktop size. Adjust for tagline symmetry or use <br> in HTML */
    text-wrap: balance;
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.3;
}
.hero-content .subtitle { font-size: 1.4em; color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; }
.hero-image {
    flex: 1;
    background-image: url('../images/input_file_0.jpeg'); /* Ensure this path is correct */
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

/* About Section */
.about .container { max-width: 800px; text-align: center; }
.about h2 { color: #003366; }

/* Services Section */
.services ul { list-style: none; padding-left: 0; max-width: 700px; margin: 0 auto 30px auto; text-align: left; }
.services li { font-size: 1.1em; margin-bottom: 10px; color: #333; }
.services .cta-button { display: block; width: fit-content; margin: 0 auto; }

/* Stay Tuned Section */
.stay-tuned { text-align: center; background-color: #003366; color: #ffffff; }
.stay-tuned h2 { color: #FDD700; }
.stay-tuned p { color: rgba(255, 255, 255, 0.9); }
.form-placeholder { margin-top: 20px; padding: 20px; border: 2px dashed rgba(255, 255, 255, 0.5); border-radius: 5px; color: rgba(255, 255, 255, 0.7); font-style: italic; max-width: 500px; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer { background-color: #eef2f7; padding: 20px 0; text-align: center; font-size: 0.9em; color: #555; }

/* Page Wrapper - Updated for new mobile header height */
.page-wrapper {
    position: relative;
    overflow-x: hidden;
    /* Mobile header height: 12px padding top + 12px padding bottom + ~40px logo = ~64px */
    padding-top: 64px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero { flex-direction: column; min-height: auto; }
    .hero-content { padding: 40px 20px; text-align: center; }
    .hero-content h1 { font-size: 2.0em; text-align: center; }
    .hero-image { min-height: 250px; flex-basis: 250px; }
    .section-padding { padding: 40px 0; }
    h2 { font-size: 1.8em; }

    .section-padding { background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32)), url('../images/valley-couple-mobile.jpg') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    }
}

@media (min-width: 769px) {
    /* Desktop header height: 15px padding top + 15px padding bottom + ~50px logo = ~80px */
    .page-wrapper {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.7em; }
    .hero-content .subtitle { font-size: 1.1em; }
    .cta-button { padding: 10px 20px; font-size: 0.9em;}
    h2 { font-size: 1.6em; }
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #262626; /* Dark background */
    color: #14BDF6;            /* Light text */
    padding: 15px 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1001; /* Higher than watermark, header, etc. */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* When the banner is hidden, make sure it doesn't interfere */
.cookie-consent-banner[style*="display: none"] {
    pointer-events: none !important;
    visibility: hidden !important;
}

.cookie-consent-banner p {
    margin: 0 20px 0 0; /* Space to the right of the text */
    line-height: 1.5;
    flex-grow: 1; /* Allow text to take available space */
    margin-bottom: 10px; /* Space below text on small screens when buttons wrap */
    color: #14BDF6;            /* Light text */
}

.cookie-consent-banner a {
    color: #FDD700; /* Your brand yellow for link */
    text-decoration: underline;
}

.cookie-consent-banner a:hover {
    color: #fff;
}

.cookie-consent-buttons {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent buttons from shrinking too much */
}

.cookie-consent-banner .cookie-btn {
    padding: 8px 15px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cookie-consent-banner .cookie-btn.accept {
    background-color: #FDD700; /* Your brand yellow */
    color: #003366;       /* Your brand blue */
}

.cookie-consent-banner .cookie-btn.accept:hover {
    background-color: #e6c300; /* Darker yellow */
}

.cookie-consent-banner .cookie-btn.decline {
    background-color: #555;
    color: #fff;
}

.cookie-consent-banner .cookie-btn.decline:hover {
    background-color: #444;
}

/* Responsive adjustments for the banner */
@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent-banner p {
        margin-right: 0;
        margin-bottom: 15px; /* More space when stacked */
    }
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-consent-banner .cookie-btn {
        margin: 5px;
        flex-grow: 1; /* Allow buttons to take more space if needed */
        max-width: 150px;
    }
}

/* Enhanced styles specifically for signup pages */
.signup-page .site-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Smooth scroll behavior for better UX */
html {
    scroll-behavior: smooth;
}

/* Additional enhancement for header visibility on signup pages */
body.signup-page {
    padding-top: 0; /* Remove default padding since we're using .page-wrapper */
}

.signup-page .page-wrapper {
    padding-top: 85px; /* Slightly more padding for signup pages */
}

@media (max-width: 768px) {
    .signup-page .page-wrapper {
        padding-top: 125px; /* Adjusted for mobile signup pages */
    }
}
/* ========================================
   ABOUT US PAGE SPECIFIC STYLES
   Add this to the end of your style.css file
   ======================================== */

/* About Hero Section */
.about-hero-image {
    background-image: url('../images/bull.jpg'); /* Updated to correct filename */
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #FDD700;
    font-weight: 700;
}

/* Our Story Section */
.our-story {
    background-color: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.lead-text {
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
    color: #003366;
    margin-bottom: 25px;
}

.highlight-text {
    background: linear-gradient(135deg, #FDD700 0%, #e6c300 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #003366;
    margin: 25px 0;
    font-size: 1.1em;
}

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .founders-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.founder-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.1);
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
}

.founder-info h3 {
    color: #003366;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.founder-title {
    color: #FDD700;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.founder-summary {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.credentials {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.credentials h4 {
    color: #003366;
    font-size: 1.2em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentials-list li {
    padding: 5px 0;
    color: #555;
    border-bottom: 1px solid #e5e5e5;
}

.credentials-list li:last-child {
    border-bottom: none;
}

.founder-quote {
    font-style: italic;
    color: #003366;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 15px;
    border-left: 3px solid #FDD700;
    border-radius: 5px;
    margin-top: 20px;
}

/* Why We're Different Section */
.differences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px;
}

@media (min-width: 768px) {
    .differences-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .differences-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.difference-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 51, 102, 0.08);
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.12);
}

.difference-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.difference-icon-img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

/* Mission Pillar Icons */
.pillar-icon {
    width: 80px;
    height: 80px;
    margin-right: 16px;
    vertical-align: middle;
}

.difference-card h3 {
    color: #003366;
    font-size: 1.3em;
    margin-bottom: 15px;
    line-height: 1.4;
}

.difference-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1.05em;
}

/* Mission Section */
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-statement {
    font-size: 1.4em;
    line-height: 1.6;
    color: #003366;
    font-weight: 500;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.mission-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-left: 20px;
    margin-right:20px;
}

@media (min-width: 768px) {
    .mission-pillars {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
}

.pillar {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 51, 102, 0.08);
    border: 1px solid #e5e5e5;
}

.pillar h4 {
    color: #003366;
    font-size: 1.2em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pillar p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Fun Facts Section */
.fun-facts-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.fun-facts-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.texas-pride {
    background: linear-gradient(135deg, #FDD700 0%, #e6c300 100%);
    color: #003366;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.2em !important;
    margin-top: 30px !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    color: #FDD700;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Secondary Gold Button Style */
.cta-button.secondary-gold {
    background-color: transparent;
    color: #FDD700;
    border: 2px solid #FDD700;
}

.cta-button.secondary-gold:hover {
    background-color: #FDD700;
    color: #003366;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .founders-grid {
        gap: 30px;
    }

    .founder-card {
        padding: 25px 20px;
        margin: 0px 20px;
    }

    .founder-info h3 {
        font-size: 1.5em;
    }

    .differences-grid {
        gap: 25px;
    }

    .difference-card {
        padding: 25px 20px;
    }

    .difference-icon {
        font-size: 2.5em;
        margin-bottom: 15px;
    }

    .difference-icon-img {
        width: 80px;
        height: 80px;
    }

    .pillar-icon {
        width: 56px;
        height: 56px;
        margin-right: 14px;
    }

    .mission-statement {
        font-size: 1.2em;
        padding: 25px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .highlight-text {
        padding: 15px;
        margin: 20px 0;
        font-size: 1em;
    }

    .credentials {
        padding: 15px;
    }

    .difference-card {
        padding: 20px 15px;
    }

    .pillar {
        padding: 20px 15px;
    }

    .texas-pride {
        padding: 15px;
        font-size: 1.1em !important;
    }
}

/* Services Page Specific Styles - Add to end of style.css */

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.9)), url('../images/journey-begins.jpg');
    text-align: center;
    background-size: cover;
    background-position: center;
}

.services-hero-image {
    background-image: url('../images/journey-begins.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 28px;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #FDD700;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-highlight {
    background: #f8f9fa;
    color: #003366;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
}

/* Journey Section */
.journey-section {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.3), rgba(0, 51, 102, 0.2)), url('../images/summit.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed !important;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.journey-section h2 {
    font-size: 3rem; /* Or whatever size you want - default was probably 2.2em */
}

.journey-section h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 2rem;
}

.journey-text {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    opacity: 0.95;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #003366;
    color: #FDD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-card {
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.comparison-card.traditional {
    background: #f8f8f8;
    border: 2px solid #ddd;
}

.comparison-card.rise-above {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid #FDD700;
}

.comparison-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #003366;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 0.5rem 0;
    font-size: 1.05em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .journey-section {
        background-attachment: scroll;
        padding: 3rem 3rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

/* Desktop specific positioning */
@media (min-width: 769px) {
    .services-page-header {
        background-position: center 30%; /* Different positioning for desktop */
        background-attachment: fixed;
    }
}

/* Services Page Header - Add to end of style.css */
.services-page-header {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.6), rgba(0, 51, 102, 0.4)), url('../images/journey-begins.jpg');
    background-size: cover;
    background-position: center 30%;
    background-position-y: top !important;
    color: white;
    background-attachment: fixed;
    padding: 4rem 0;
}

.services-page-header h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.services-page-header .lead-text {
    color: white;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 1.3em;
}

.services-page-header .highlight-text {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Desktop specific positioning */
@media (min-width: 769px) {
    .services-page-header {
        background-position: center 60%; /* Different positioning for desktop */
    }
}

/* Mobile keeps the original positioning */
@media (max-width: 768px) {
    .services-page-header {
        background: linear-gradient(135deg, rgba(0, 51, 102, 0.57), rgba(0, 51, 102, 0.47)), url('../images/journey-begins.jpg');
        background-size: cover;
        background-position: center 30%;  /* Keep mobile positioning */
        padding: 2rem 1rem;
    }

    .journey-section {
        background: linear-gradient(135deg, rgba(0, 51, 102, 0.52), rgba(0, 51, 102, 0.42)), url('../images/summit.jpg');
        background-size: 600px 300px;
        color: white;
        text-align: center;
        padding: 5rem 1rem;
    }

}

/* Make process grid 2x2 */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* ========================================
   HOMEPAGE SPECIFIC ADDITIONS
   Add this to the end of your style.css file
   ======================================== */

/* Reuse existing hero structure but add button container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

/* Trust strip - clean and minimal */
.trust-strip {
    padding: 1.5rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.trust-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-label {
    font-size: 0.9em;
    font-weight: 600;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section intro - reusable for any section */
.section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Different section - reuse existing card patterns */
.why-different {
    background-color: #ffffff;
}

/* Services grid - 2x2 layout with proper spacing */
.services-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-item:hover {
    border-color: #003366;
    transform: translateY(-2px);
}

.service-item h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.3em;
}

/* Expertise teaser - clean stats layout */
.expertise-teaser {
    background-color: #f8f9fa;
    text-align: center;
}

.expertise-preview {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.expertise-stat {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 3em;
    font-weight: 700;
    color: #003366;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expertise-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Final CTA section styles */
.cta-description {
    font-size: 1.2em;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reassurance {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 2rem;
}

/* Text alignment utility */
.text-center {
    text-align: center;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .trust-row {
        justify-content: center;
        gap: 2rem;
    }

    .trust-item {
        min-width: 120px;
    }

    .trust-label {
        font-size: 0.8em;
    }

    .services-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .services-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .expertise-preview {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .section-intro {
        font-size: 1.1em;
        margin-bottom: 2rem;
    }
    .cta-button.secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    }
}