/* ========================================
   DELTA FLOW COMPANY - MAIN STYLESHEET
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #355B6D;
    --primary-dark: #284857;
    --primary-light: #4A7285;
    --secondary-color: #355B6D;
    --accent-color: #F5F1E8;
    --cream: #F5F1E8;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: var(--primary-color);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 60px;
    width: auto;
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu > li {
    position: relative;
}

.nav-menu li a {
    color: var(--cream);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: block;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: white;
    opacity: 0.8;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Menu Styles */
.nav-dropdown {
    position: relative;
}

.mega-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 2rem;
    z-index: 1001;
    min-width: 500px;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.nav-dropdown:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.mega-menu-small {
    min-width: 320px;
    padding: 1.5rem;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mega-menu-content-single {
    display: block;
}

.mega-menu-content-single h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream);
}

.mega-menu-content-single ul {
    list-style: none;
}

.mega-menu-content-single ul li {
    margin-bottom: 0.5rem;
}

.mega-menu-content-single ul li a {
    color: var(--text-dark);
    padding: 0.5rem 0.75rem;
    display: block;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.mega-menu-content-single ul li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1rem;
}

.mega-menu-column h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cream);
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 0.5rem;
}

.mega-menu-column ul li a {
    color: var(--text-dark);
    padding: 0.5rem 0.75rem;
    display: block;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.mega-menu-column ul li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1rem;
}

.area-details {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.2rem;
    padding-left: 1.5rem;
}

.btn-nav {
    background: var(--cream);
    color: var(--primary-color) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 6px;
    font-weight: 600;
}

.btn-nav:hover {
    background: white;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    margin: 3px 0;
    transition: var(--transition);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn-light:hover {
    background: var(--cream);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   HERO SECTION WITH VIDEO
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #355B6D 0%, #284857 100%);
    color: white;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero.hero-video {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* For YouTube iframe specifically */
.hero-video-wrapper iframe.hero-video-bg {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23ffffff" opacity="0.03"/></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.video-control-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 241, 232, 0.95);
    border: 2px solid rgba(53, 91, 109, 0.3);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-control-btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

.video-control-btn svg {
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-logo {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.5));
}

.hero-veteran-text {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: var(--cream);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Tagline Section */
.tagline-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a5a 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tagline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.03) 2px,
            rgba(255,255,255,0.03) 4px
        );
}

.tagline-content {
    position: relative;
    z-index: 1;
}

.tagline-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline-main .highlight {
    color: #F5F1E8;
    display: inline-block;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.veteran-badge-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge-icon {
    font-size: 2rem;
    color: #F5F1E8;
    text-shadow: 0 0 10px rgba(245,241,232,0.5);
}

.veteran-badge {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(245,241,232,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, #355B6D 0%, #284857 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   INFO BAR
   ======================================== */
.info-bar {
    background: var(--bg-white);
    padding: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

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

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   SERVICES
   ======================================== */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.8rem;
}

/* Service Detail Cards */
.services-detail {
    background: var(--bg-light);
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-text h2 {
    margin-bottom: 1rem;
}

.service-detail-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-includes {
    list-style: none;
    margin: 1rem 0;
}

.service-includes li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-medium);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.feature-badge {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.service-detail-image {
    position: relative;
}

.service-stock-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.placeholder-image {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.before-after-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.before-after-image {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.placeholder-image-small {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    gap: 1rem;
}

.placeholder-image-small span {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.placeholder-image-small .coming-soon {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.placeholder-image-small .placeholder-caption {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.before-after-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    flex: 1;
    object-fit: cover;
}

/* Service Methods */
.service-methods {
    background: var(--bg-white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.method-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.method-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose-us {
    background: var(--bg-white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-medium);
    margin: 0;
}

.why-choose-image {
    position: relative;
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.service-areas-preview {
    background: var(--bg-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.area-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Service Areas Detail */
.coverage-intro {
    background: var(--bg-white);
    padding: 5rem 0;
}

.coverage-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.coverage-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.coverage-content .lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.coverage-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    background: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.service-areas-detail {
    background: var(--bg-light);
}

.area-detail-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.area-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.area-header h2 {
    margin-bottom: 0.5rem;
}

.area-region {
    color: var(--text-light);
    font-style: italic;
}

.area-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.city-list,
.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.city-list li,
.service-list li {
    padding: 0.4rem 0;
    color: var(--text-medium);
}

.city-list li::before {
    content: '- ';
    margin-right: 0.5rem;
}

.service-list li::before {
    content: '• ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.location-inquiry {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

.inquiry-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.inquiry-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.inquiry-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}

.why-local {
    background: var(--bg-light);
    padding: 5rem 0;
}

.why-local h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.local-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-story {
    background: var(--bg-white);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.what-sets-apart {
    background: var(--bg-light);
}

.apart-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.apart-grid .apart-card {
    grid-column: span 2;
}

.apart-grid .apart-card:nth-child(4) {
    grid-column: 2 / 4;
}

.apart-grid .apart-card:nth-child(5) {
    grid-column: 4 / 6;
}

.apart-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.apart-card h3 {
    color: var(--primary-color);
}

.apart-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.apart-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.mission-section {
    background: var(--bg-white);
    text-align: center;
}

.mission-statement {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto 3rem;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.commercial-focus {
    background: var(--bg-light);
}

.focus-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.focus-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.focus-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credentials-section {
    background: var(--bg-white);
    text-align: center;
}

.credentials-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.credentials-grid.credentials-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
}

.credential-item {
    text-align: center;
}

.credential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.credential-item h3 {
    margin-bottom: 0.5rem;
}

.credential-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.contact-info-box h2 {
    margin-bottom: 1rem;
}

.contact-info-box > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.method-details a {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.method-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.service-area-note,
.hours-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.service-area-note h3,
.hours-note h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.service-area-note p,
.hours-note p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form-box h2 {
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

.form-success {
    background: var(--secondary-color);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: white;
    margin-bottom: 1rem;
}

.form-success p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.form-success a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* Expectations */
.expectations-section {
    background: var(--bg-white);
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expectation-card {
    text-align: center;
    padding: 2rem;
}

.expectation-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.expectation-card h3 {
    margin-bottom: 1rem;
}

/* FAQ */
.faq-section {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-medium);
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--primary-light);
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

.contact-info li {
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

/* ========================================
   MOBILE FLOATING CTA BUTTON
   ======================================== */

/* Hide on desktop */
.mobile-cta-floating {
    display: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    /* Hide YouTube video completely on mobile to prevent loading */
    .hero-video-wrapper,
    .video-control-btn {
        display: none !important;
    }

    /* Show floating CTA button on mobile */
    .mobile-cta-floating {
        display: block !important;
        position: fixed;
        top: 20px; /* Vertically centered in navbar */
        left: 50%;
        transform: translateX(-50%); /* Center horizontally */
        z-index: 1001; /* Above navbar (1000) but below modals */
        background: var(--cream);
        color: var(--primary-color);
        padding: 0.5rem 1rem;
        border-radius: 6px;
        box-shadow: var(--shadow-md);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.8rem;
        transition: var(--transition);
        white-space: nowrap;
        pointer-events: auto; /* Ensure button is clickable */
    }

    .mobile-cta-floating:hover {
        background: var(--primary-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.2);
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }

    .logo-image {
        height: 45px;
    }

    .tagline-main {
        font-size: 2rem;
    }

    .veteran-badge {
        font-size: 1.1rem;
        padding: 0.5rem 1.5rem;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    .veteran-badge-container {
        gap: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu > li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        color: var(--primary-color);
        width: 100%;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: var(--primary-color);
        opacity: 0.7;
    }

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

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

    .mega-menu {
        position: static;
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        padding: 0;
        margin-left: 1rem;
        background: transparent;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    }

    .nav-dropdown.active .mega-menu {
        visibility: visible;
        opacity: 1;
        max-height: 500px;
        padding: 0.5rem 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mega-menu-column h4,
    .mega-menu-content-single h4 {
        font-size: 0.75rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.25rem;
    }

    .mega-menu-column ul li a,
    .mega-menu-content-single ul li a {
        padding: 0.4rem 0.5rem;
        font-size: 0.9rem;
        color: var(--text-dark);
    }

    .mega-menu-column ul li a:hover,
    .mega-menu-content-single ul li a:hover {
        background: transparent;
        color: var(--primary-color);
        padding-left: 0.5rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .service-detail-content,
    .why-choose-content,
    .story-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content.reverse {
        direction: ltr;
    }
    
    .area-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        position: static;
    }

    .local-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-highlights {
        grid-template-columns: 1fr;
    }

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

    .apart-grid .apart-card {
        grid-column: auto;
    }

    .apart-grid .apart-card:nth-child(4),
    .apart-grid .apart-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-logo {
        max-width: 350px;
    }

    .hero-veteran-text {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card,
    .area-detail-card {
        padding: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .city-list,
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .local-benefits {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }
