/* * INDIE ABROAD - Main Stylesheet
 * Version: 2.0 (Premium Consultancy Theme)
 */

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Color Palette */
    --primary-color: #0f2a4a;      /* Deep Navy (Trust) */
    --secondary-color: #0ea5e9;    /* Bright Blue (Action) */
    --accent-color: #f59e0b;       /* Amber (Highlights) */
    --text-dark: #1e293b;          /* Dark Grey (Readability) */
    --text-light: #64748b;         /* Muted Grey */
    --bg-light: #f8fafc;           /* Very Light Blue/Grey Background */
    --white: #ffffff;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0f2a4a 0%, #1e40af 100%);
    --grad-orange: linear-gradient(135deg, #f97316, #ea580c);
    --grad-teal: linear-gradient(135deg, #0d9488, #0ea5e9);
    --grad-purple: linear-gradient(135deg, #7c3aed, #4f46e5);

    /* Fonts */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* =========================================
   2. BUTTONS & INTERACTIVE ELEMENTS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    /* background: var(--secondary-color); */
    background: #d6d7d8;
    color: var(--white);
}

.btn-primary-insurance{
    background:  #d6d7d8;
    color: black;
}

.btn-button-background{
    background:#64748b;
    color: white;
}

.btn-primary:hover {
    background: #c0c5ce;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

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

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: #f1f5f9;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
    margin-right: 20px;
}

.top-bar a:hover {
    color: var(--white);
}

/* Main Navbar */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    /* height: 45px;
    width: auto; */
    height: 40px; /* Increased from 45px */
    width: auto;
    /* Adding a max-width ensures it doesn't break mobile layouts if the image is very wide */
    max-width: 250px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.dropdown-menu i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Hamburger Menu (Mobile) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

/* =========================================
   4. HERO SECTIONS
   ========================================= */
/* Home Hero */
/* .hero-section {
    position: relative;
    height: 85vh;
    background: url('../assets/9e65949b-b66c-4c7e-b103-10ae32a23ad9.png') center/cover no-repeat; 
    background-color: #333; 
    display: flex;
    align-items: center;
    color: var(--white);
} */

/* .hero-section {
position: relative;
width: 100%;
min-height: calc(100vh - var(--header-height));
background-image: url('../assets/9e65949b-b66c-4c7e-b103-10ae32a23ad9.png'); 
background-size: cover;
background-position: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #c84b4b;
overflow: hidden;
} */


/* =========================================
   4. HERO SECTIONS (UPDATED)
   ========================================= */

/* .hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height)); 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark);
    overflow: hidden;
} */

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height)); 
    min-height: 500px;
    
    /* We put the image here. Ensure the file extension is correct (.jpg or .png) */
    background-image: url('../assets/new_background_image.png');
    
    /* THESE 3 LINES GUARANTEE IT WILL NEVER SQUISH */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    
    overflow: hidden;
}
/* Make the normal image act like a background */
.hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures it fills the space without stretching */
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: inear-gradient(rgb(123 144 170 / 0%), rgb(18 25 25 / 60%));
    z-index: 2;
}
/* .hero-buttons-container {
    position: absolute;
    bottom: 12%;
    z-index: 3;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
} */

.hero-buttons-container {
    position: absolute;
    bottom: 12%;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
}

/* Wrapper to stack logo and buttons vertically */
/* .hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px; 
    padding: 0 20px;
    width: 100%;
} */
 /* Wrapper to stack logo and buttons vertically */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    /* Push content to the bottom instead of the center */
    justify-content: flex-end; 
    align-items: center;
    /* Add padding to the bottom so the buttons don't touch the very edge */
    padding: 0 20px 80px 20px; 
    width: 100%;
    /* Ensure the wrapper takes up the full height of the hero section */
    height: 100%; 
}

.hero-logo-large {
    max-width: 500px; /* Make it bigger if needed */
    width: 80%; /* Responsive sizing */
    height: auto;
    /* Optional: Add a subtle drop shadow to make the logo pop against the background */
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5));
}

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

.hero-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    /* margin-bottom is handled by the padding in hero-section now */
}

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



/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15, 42, 74, 0.75),
        rgba(15, 42, 74, 0.55)
    );
} */


.hero-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;              /* keeps logo vertically centered */
}

.hero-logo {
    max-width: 360px;     /* adjust to taste */
    width: 60vw;
}

.hero-bottom {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(123 135 150 / 0%), rgba(35 58 58 / 60%));
}



/* Page Headers (About, Contact, Legal) */
.page-header {
    position: relative;
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
    /* background-image: url('../assets/9e65949b-b66c-4c7e-b103-10ae32a23ad9.png');  */
    background-size: cover;
    background-position: center;
}



.page-header.small-header {
    padding: 60px 0;
    background-image: none;
    background-color: var(--primary-color);
}

.page-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 42, 74, 0.8);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* =========================================
   5. SECTIONS & COMPONENTS
   ========================================= */

/* Section Headers */
.section-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pre-heading {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Intro Section (Home) */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image-wrapper {
    position: relative;
}

.intro-img {
    border-radius: var(--border-radius);
    width: 100%;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.floating-card i {
    color: #10b981; /* Success Green */
    font-size: 1.5rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Specialized Card Colors on Hover */
.card-orange:hover .icon-box { background: var(--grad-orange); color: white; }
.card-teal:hover .icon-box { background: var(--grad-teal); color: white; }
.card-purple:hover .icon-box { background: var(--grad-purple); color: white; }

.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.service-card p { color: var(--text-light); flex-grow: 1; margin-bottom: 20px; }
.service-feature-list {
    list-style: none;
    margin-top: 15px;
    font-size: 0.9rem;
    padding-left: 0;
}
.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.service-feature-list li i {
    color: var(--secondary-color);
    margin-top: 4px;
}
.link-text { 
    font-weight: 600; 
    color: var(--secondary-color); 
    display: flex; 
    align-items: center; 
    gap: 5px; 
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    font-style: italic;
}

.author {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.author strong { color: var(--primary-color); }
.author span { font-size: 0.85rem; color: var(--text-light); }

/* Values Grid (About Page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.member-img-placeholder {
    width: 150px;
    height: 150px;
    background: #e2e8f0;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #94a3b8;
}

.role {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Split Layout (About/Contact) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rounded-shadow {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   6. CONTACT PAGE
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.contact-card-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-box.small {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
}

.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border 0.3s ease;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.full-width { width: 100%; }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-left: 4px solid var(--secondary-color);
}

/* =========================================
   7. LEGAL PAGES
   ========================================= */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-meta {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.legal-content h3 {
    margin-top: 30px;
    color: var(--primary-color);
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* =========================================
   8. CTA & FOOTER
   ========================================= */
.cta-banner, .cta-strip {
    background: var(--grad-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-strip.theme-bg {
    background: var(--primary-color);
    padding: 50px 0;
}

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

.cta-banner h2, .cta-text h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.main-footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.main-footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer a:hover {
    color: var(--white);
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    font-size: 1.2rem;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 0.85rem;
}



/* === NEW INTRO SECTION DESIGN === */

/* 1. The "Why Indie Abroad" pill */
.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background-color: #EFF6FF;
    color: var(--action-color);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2. Text Typography */
.lead-text {
    font-size: 1.15rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* 3. The Visual Checklist */
.benefits-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-main);
}

.benefits-list i {
    color: #10b981; /* Success Green */
    font-size: 1.2rem;
}

/* 4. Stats Divider */
.stat-divider {
    width: 1px;
    height: 50px;
    background-color: #E2E8F0;
}

/* 5. Image Styling (The "Frame") */
.intro-image-wrapper {
    position: relative;
    padding: 20px; /* Space for the decorative border */
}

.intro-img {
    border-radius: 20px;
    /* If you don't have a photo yet, this gradient makes the box look better */
    background: linear-gradient(135deg, #f6f8fc 0%, #e1e7f0 100%); 
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

/* 6. The Dots Pattern (Adds texture behind the image) */
.pattern-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#3F72AF 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

/* 7. The Floating Badge */
.floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px; /* Overlap the image slightly */
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    border-left: 4px solid var(--action-color);
    animation: float 3s ease-in-out infinite;
}

.icon-circle-sm {
    width: 40px; height: 40px;
    background: #F0F9FF;
    color: var(--action-color);
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.font-bold { font-weight: 700; color: var(--primary-blue); }
.d-block { display: block; }

/* Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

/* Mobile adjustment */
@media (max-width: 992px) {
    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 80%;
    }
    @keyframes float { 
        0% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-5px); }
        100% { transform: translateX(-50%) translateY(0); }
    }
}




/* === ABOUT GERMANY PAGE SPECIFIC STYLES === */

/* Taller Hero for Subpage */
.page-hero.medium-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Stats Grid */
.stats-grid-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    gap: 20px;
    text-align: center;
}

.stat-box-item {
    padding: 10px;
    border-right: 1px solid #eee;
}

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

.stat-box-item i {
    font-size: 2rem;
    color: var(--action-color);
    margin-bottom: 10px;
    display: block;
}

.stat-box-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.stat-box-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Fix for Stats */
@media (max-width: 768px) {
    .stats-grid-box {
        grid-template-columns: 1fr 1fr;
    }
    .stat-box-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }
}

/* Quote Box */
.quote-box {
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid var(--action-color);
    background: #F8FAFC;
    font-style: italic;
    color: var(--text-main);
    font-size: 1.1rem;
    border-radius: 0 8px 8px 0;
}









/* =========================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    /* Navigation */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #eee;
        gap: 0;
        /* Hidden by default */
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    /* Javascript will toggle this class */
    .nav-links.nav-active {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }
    
    .nav-btn-item {
        margin-top: 15px;
        border: none !important;
    }

    /* Dropdown on Mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f8fafc;
        width: 100%;
        display: none; /* Hidden until clicked - simple JS needed or just show all */
    }

    /* Hero Text */
    .hero-content h1 { font-size: 2.5rem; }
    .intro-grid, .split-layout, .contact-wrapper, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image-wrapper { order: -1; } /* Image on top on mobile */
    .split-image { order: -1; }
    
    .flex-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .top-bar-flex {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-content h1 { font-size: 2rem; }
}

@media (max-width: 600px) {
    .hero-buttons-container {
        bottom: 8%; /* Give a little more room on small phones */
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons-container .btn {
        width: 100%;
        max-width: 300px;
    }
}


/* =========================================
   MOBILE HERO FIXES (ANTI-SQUISH)
   ========================================= */
/* @media (max-width: 768px) {
    
    .hero-section {
        min-height: 70vh !important; 
        height: 70vh !important;
    }
    

    .hero-background-img {
        object-fit: cover !important;
        object-position: center center !important;
        width: 100% !important;
        height: 100% !important;
    }


    .hero-buttons-container {
        bottom: 10% !important; 
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 0 20px;
    }

    
    .hero-buttons-container .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 14px 20px !important;
    }
    
    
    .logo-img {
        height: 45px !important; 
    }
} */

/* .page-hero, .hero-section, .home-hero {
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
} */




/* =========================================
   ULTIMATE RESPONSIVE HERO FIX
   (Handles Desktop, Tablet, and Mobile)
   ========================================= */

/* 1. Base Desktop (Wide Screens) */
.page-hero, .home-hero {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
}

.hero-section {
    background-repeat: no-repeat !important;
    background-size: cover !important; 
    background-position: center center !important;
    background-color: #121518 !important; 
}

/* 2. Tablets (iPad, Surface, Small Laptops: 769px to 1100px) */
@media (max-width: 1100px) {
    .hero-section {
        /* Forces image to fit screen width so logo never cuts off */
        background-size: 100% auto !important; 
        background-position: center 35% !important; 
        height: 70vh !important;
        min-height: 500px !important;
    }
    
    .hero-overlay {
        /* Smooth fade to blend the image into the dark background */
        background: linear-gradient(
            to bottom, 
            rgba(18,21,24,0) 0%, 
            rgba(18,21,24,0) 35%, 
            rgba(18,21,24,0.9) 65%, 
            rgba(18,21,24,1) 100%
        ) !important;
    }
    
    .hero-buttons-container {
        bottom: 12% !important;
        /* Keeps buttons side-by-side on tablets */
        flex-direction: row !important; 
    }
}

/* 3. Mobile Phones (<= 768px) */
@media (max-width: 768px) {
    .hero-section {
        background-size: 100% auto !important; 
        background-position: center 25% !important; 
        height: 80vh !important;
        min-height: 450px !important;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom, 
            rgba(18,21,24,0) 0%, 
            rgba(18,21,24,0) 25%, 
            rgba(18,21,24,0.9) 45%, 
            rgba(18,21,24,1) 100%
        ) !important;
    }
    
    .hero-buttons-container {
        bottom: 10% !important;
        /* Stacks buttons vertically on narrow phone screens */
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 0 20px !important;
    }
    
    /* .hero-buttons-container .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
     */

     .hero-buttons-container .btn {
        width: 240px !important; /* Forces both to be exactly this shorter length */
        max-width: 85% !important; /* Keeps them safe on super tiny phones */
        padding: 12px 20px !important; /* Slightly refines the height */
    }
    /* Shrinks navbar logo for phones */
    .logo-img {
        height: 40px !important; 
    }
}
