/* ===================================
   BENNETT FAMILY OF COMPANIES
   Combined CSS Stylesheet - MOBILE OPTIMIZED
   =================================== */

/* ===================================
   BASE STYLES
   =================================== */

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

:root {
    --bennett-dark-blue: #003366;
    --bennett-blue: #0066cc;
    --bennett-light-blue: #00a3e0;
    --soft-gray: #e8e8e8;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.bennett-bluea {
    color: #003b71;
}

.bennett-blueb {
    color: #0071ce;
}

.bennett-bluec {
    color: #00aeef;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    z-index: 1001;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bennett-blue);
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Navigation */
nav {
    position: relative;
}

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

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: var(--bennett-blue);
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
    display: block;
}

nav a:hover {
    background: var(--soft-gray);
    border-radius: 5px;
}

/* Active Navigation Link Style */
nav a.active {
    background: var(--bennett-blue);
    color: white;
    border-radius: 5px;
}

/* Dropdown Styles */
.dropdown > a::after {
    content: " ▼";
    font-size: 0.8em;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 350px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
    top: 100%;
    left: 0;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover > a {
    background-color: #f1f1f1;
}

/* ===================================
   HERO SECTIONS - FIXED POSITIONING ISSUE
   =================================== */

.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 102, 204, 0.7)),
                url('/img/hero-bg.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding: 80px 20px;
}

.hero-bme {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 102, 204, 0.7)),
                url('/img/bme-hero.jpg') center/cover;
    padding: 120px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.hero-bmehh {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 102, 204, 0.7)), 
                url('/img/bmehh-hero.jpg') center/cover; 
    padding: 120px 20px; 
    color: white; 
    text-align: center;
    position: relative;
}

.hero-bdado {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 102, 204, 0.7)), 
                url('/img/bdaRV-hero.jpg') center/cover; 
    padding: 120px 20px; 
    color: white; 
    text-align: center;
    position: relative;
}

.hero-bdapu {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 102, 204, 0.7)), 
                url('/img/bdapickup-hero.jpg') center/cover; 
    padding: 120px 20px; 
    color: white; 
    text-align: center;
    position: relative;
}

.hero-bhs {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 102, 204, 0.7)), 
                url('/img/bhs-hero.jpg') center/cover;
    padding: 120px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.hero-boss {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 102, 204, 0.7)), 
                url('/img/boss-hero.jpg') center/cover;
    padding: 120px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.hero-goose {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(0, 102, 204, 0.7)), 
                url('/img/gallery/Goose4.jpg') center/cover;
    padding: 120px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero .subheadline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Highlight Box in Hero */
.highlight {
    background: #0071ce;
    padding: 30px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* ===================================
   BUTTONS
   =================================== */

.cta-button {
    background: #35a6dc;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
}

.cta-button:hover {
    background: #003b71;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: 80px 20px;
}

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #020024;
    background: linear-gradient(177deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

.section h2 {
    font-size: 2.5rem;
    color: var(--bennett-blue);
    margin-bottom: 30px;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--bennett-blue);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* ===================================
   GRIDS & CARDS
   =================================== */

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--bennett-blue);
    margin-bottom: 15px;
}

.benefit-card img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Beliefs Grid */
.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.belief-card {
    background: white;
    padding: 5px 5px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-5px);
}

/* FIXED: Desktop/Base belief-card img - fully responsive */
.belief-card img {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.belief-card h3 {
    font-size: 1.8rem;
    color: var(--bennett-blue);
    margin-bottom: 15px;
}

.belief-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item::before {
    content: "✓";
    color: var(--bennett-blue);
    font-size: 2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.value-item h3 {
    color: var(--bennett-blue);
    margin-bottom: 10px;
}

/* ===================================
   BENEFITS SECTION SPECIFIC
   =================================== */

.benefits {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-list li::before {
    content: "✓";
    position: relative;
    left: 0;
    color: var(--bennett-blue);
    font-weight: bold;
    font-size: 1.5rem;
}

.benefits-image {
    background: url('/img/truck-benefits.jpg') center/cover;
    min-height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ===================================
   WHY BENNETT SECTION
   =================================== */

.why-bennett {
    padding: 80px 20px;
    background: white;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

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

.testimonial {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial blockquote::before {
    content: """;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(255,255,255,0.3);
}

.testimonial cite {
    display: block;
    text-align: right;
    font-weight: bold;
    color: #00aeef;
}

/* ===================================
   TRUST SECTION
   =================================== */

.trust {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    font-weight: 600;
    color: var(--bennett-blue);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item::before {
    content: "✓";
    display: block;
    font-size: 2.5rem;
    color: var(--bennett-blue);
    margin-bottom: 15px;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process {
    padding: 80px 20px;
    background: white;
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
}

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

.process-step h3 {
    color: var(--bennett-blue);
    margin-bottom: 15px;
}

/* ===================================
   REQUIREMENTS SECTION
   =================================== */

.requirements {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.requirements-list {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 40px auto 0;
}

.requirements-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.requirements-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--bennett-blue);
    font-weight: bold;
    font-size: 1.5rem;
}

/* ===================================
   VETERAN SECTION
   =================================== */

.veteran-section {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    padding: 60px 20px;
    color: white;
    text-align: center;
    margin: 60px 0;
}

.veteran-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    color: var(--bennett-light-blue);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 8px 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-badge {
    background: var(--bennett-blue);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

/* ===================================
   STATISTICS SECTION
   =================================== */

.stats {
    padding: 80px 20px;
    background: var(--bennett-blue);
    color: white;
}

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #00aeef;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
}

/* ===================================
   COMPARISON SECTION
   =================================== */

.comparison {
    padding: 80px 20px;
    background: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.comparison-item {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.comparison-item.bennett {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
}

.comparison-item.others {
    background: #f8f9fa;
    color: #666;
}

.comparison-item h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.comparison-item ul {
    list-style: none;
    text-align: left;
}

.comparison-item ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.comparison-item.bennett ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00aeef;
    font-weight: bold;
}

.comparison-item.others ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* ===================================
   ELIGIBILITY SECTION
   =================================== */

.eligibility {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.eligibility-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.eligibility-item h3 {
    color: var(--bennett-blue);
    margin-bottom: 15px;
}

/* ===================================
   TRUST BADGES
   =================================== */

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

.trust-badge {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-weight: 600;
    color: var(--bennett-blue);
}

/* ===================================
   REQUIREMENTS GRID
   =================================== */

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

.requirement-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirement-card h3 {
    color: var(--bennett-blue);
    margin-bottom: 15px;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.requirement-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--bennett-blue);
}

/* ===================================
   CULTURE SECTION
   =================================== */

.culture {
    padding: 80px 20px;
    background: white;
}

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

.culture-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--bennett-blue);
}

.culture-item h3 {
    color: var(--bennett-blue);
    margin-bottom: 10px;
}

/* ===================================
   FORM CONTAINER - RESPONSIVE WIDTH FIX
   =================================== */

.form-container {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 10px;
    box-sizing: border-box;
}

.form-container h3 {
    color: var(--bennett-blue);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* Form Element Styles */
#leadForm input[type="text"],
#leadForm input[type="email"],
#leadForm input[type="tel"],
#leadForm select {
    display: block;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Input Focus States */
#leadForm input[type="text"]:focus,
#leadForm input[type="email"]:focus,
#leadForm input[type="tel"]:focus,
#leadForm select:focus {
    outline: none;
    border-color: var(--bennett-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Select Dropdown */
#leadForm select {
    cursor: pointer;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

/* Placeholder Styling */
#leadForm input::placeholder {
    color: #999;
    opacity: 1;
}

/* Hidden Fields */
#leadForm input[type="hidden"] {
    display: none;
}

/* Submit Button */
#leadForm button[type="submit"] {
    display: block;
    width: 100%;
    padding: 16px 30px;
    margin-top: 10px;
    background-color: #35a6dc;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Button Hover State */
#leadForm button[type="submit"]:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* Button Active State */
#leadForm button[type="submit"]:active {
    background-color: #35a6dc;
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

/* Button Disabled State */
#leadForm button[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form Validation Error States */
#leadForm input.error,
#leadForm select.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

#leadForm .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: -12px;
    margin-bottom: 12px;
    display: block;
}

/* Trust Badge Styling */
.trust-badge-form {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.trust-badge-form::before {
    content: "🔒 ";
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

@media (max-width: 768px) {
    /* FIXED: Mobile menu drawer - doesn't occupy space when closed */
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 380px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    nav a {
        padding: 15px 10px;
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        min-width: auto;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    /* FIXED: Hero content - single column on mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* FIXED: Hero padding optimization for mobile */
    .hero {
        padding: 60px 15px;
        min-height: auto;
    }
    
    .hero-bme,
    .hero-bmehh,
    .hero-bdado,
    .hero-bdapu,
    .hero-bhs,
    .hero-boss,
    .hero-goose {
        padding: 80px 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p,
    .hero .subheadline {
        font-size: 1.1rem;
    }
    
    /* FIXED: Section padding optimization */
    .section {
        padding: 60px 15px;
    }
    
    .benefits,
    .why-bennett,
    .testimonials,
    .trust,
    .process,
    .requirements,
    .stats,
    .comparison,
    .eligibility,
    .culture {
        padding: 60px 15px;
    }
    
    .veteran-section {
        padding: 40px 15px;
        margin: 40px 0;
    }
    
    footer {
        padding: 40px 15px 20px;
    }
    
    /* FIXED: Form container - fully responsive width */
    .form-container {
        width: 100%;
        padding: 30px 20px;
        margin: 20px 0;
        max-width: none;
    }
    
    .form-container h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    #leadForm input[type="text"],
    #leadForm input[type="email"],
    #leadForm input[type="tel"],
    #leadForm select {
        padding: 12px 14px;
        margin-bottom: 14px;
        font-size: 16px;
    }
    
    #leadForm button[type="submit"] {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .section h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-image {
        min-height: 300px;
    }
    
    .beliefs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* FIXED: Tablet belief-card img - responsive and proportional */
    .belief-card {
        padding: 30px 25px;
    }
    
    .belief-card h3 {
        font-size: 1.5rem;
    }
    
    .belief-card img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        margin-bottom: 15px;
    }
    
    .belief-card p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .comparison-item {
        padding: 15px;
        font-size: 1rem;
    }
    
    .eligibility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .eligibility-item {
        padding: 25px 20px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-badge {
        padding: 15px 10px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .requirement-card {
        padding: 25px 20px;
    }
    
    .culture-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .culture-item {
        padding: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .benefits-list li {
        padding: 8px 0;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Small mobile optimizations */
    .logo {
        height: 50px;
    }
    
    .header-container {
        padding: 10px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .highlight h2 {
        font-size: 1.5rem;
    }
    
    .highlight p {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .form-container h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    #leadForm input[type="text"],
    #leadForm input[type="email"],
    #leadForm input[type="tel"],
    #leadForm select {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    #leadForm button[type="submit"] {
        padding: 13px 20px;
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 5px;
    }
    
    .section h2,
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .belief-card {
        padding: 20px 15px;
    }
    
    .belief-card h3 {
        font-size: 1.3rem;
    }
    
    /* FIXED: Mobile belief-card img - full width and proportional */
    .belief-card img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        margin-bottom: 12px;
    }
    
    .belief-card p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .process-step {
        padding: 10px;
    }
    
    .process-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .requirements-list {
        padding: 20px 15px;
    }
    
    .requirements-list li {
        padding: 6px 0;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .veteran-section {
        padding: 30px 15px;
    }
    
    .veteran-section h2 {
        font-size: 1.3rem;
    }
    
    .testimonial {
        padding: 25px 15px;
    }
    
    .value-item {
        padding: 20px 15px;
    }
    
    .value-item h3 {
        font-size: 1.2rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .requirement-card {
        padding: 20px 15px;
    }
    
    .requirement-card h3 {
        font-size: 1.2rem;
    }
    
    .culture-item {
        padding: 10px;
    }
    
    .culture-item h3 {
        font-size: 1.1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-badges {
        gap: 10px;
    }
    
    .footer-badge {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* ========================================
   GALLERY STYLES FOR BENNETT-THE-GOOSE.PHP
   Add this to your bennett-styles.css file
   ======================================== */

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1200px;
}

/* Gallery Item Container */
.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #000;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Gallery Images */
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    opacity: 0.8;
}

/* Gallery Captions */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

/* Lightbox Content Container */
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Lightbox Image */
.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 50px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    transition: transform 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: #ff4444;
}

/* Lightbox Caption */
.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    max-width: 600px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 15px 0;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-caption {
        font-size: 12px;
        padding: 8px;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 40px;
    }
    
    .lightbox-caption {
        font-size: 16px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
}

/* Dark Background Section Styles (if needed) */
.bg-dark {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.bg-dark h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.bg-dark p {
    color: #ffffff;
    text-align: center;
}

/* Animation for lightbox appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox.active {
    animation: fadeIn 0.3s ease;
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* Loading state for images */
.gallery-item img {
    background: #f0f0f0;
}

/* Focus styles for accessibility */
.gallery-item:focus,
.lightbox-close:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .lightbox {
        display: none !important;
    }
}

/* ========================================
   END GALLERY STYLES
   ======================================== */

/* ===================================
   END OF STYLESHEET
   =================================== */