/* =====================================================
   Tactical Surface Solutions - MILITARY THEME STYLESHEET
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
    /* Primary Colors - Navy/Military Theme */
    --navy-dark: #0a1628;
    --navy-primary: #1a2f4a;
    --navy-light: #2c4a6e;
    --navy-accent: #3d5a80;
    
    /* Air Force Blue */
    --airforce-blue: #00308f;
    --airforce-light: #5d8aa8;
    
    /* Accent Colors */
    --gold: #c5a028;
    --gold-light: #d4af37;
    --gold-dark: #9a7b0a;
    
    /* Patriotic */
    --red: #bf0a30;
    --white: #ffffff;
    --cream: #f5f5f0;
    
    /* Neutrals */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ----- Reset & Base Styles ----- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- Top Bar ----- */
.top-bar {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.military-badges {
    display: flex;
    gap: 15px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.navy {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gold);
}

.badge.airforce {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--airforce-light);
}

.contact-quick {
    display: flex;
    gap: 20px;
}

.contact-quick a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-quick a:hover {
    color: var(--gold-light);
}

/* =====================================================
   CENTERED NAVIGATION - STACKED LAYOUT
   ===================================================== */

.main-nav {
 background: var(--navy-light);
 box-shadow: var(--shadow-md);
 position: sticky;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 padding: 5px 0;
 width: 100%;
}


.nav-wrapper {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 20px;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

/* LARGE CENTERED LOGO */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.logo img,
.logo-image {
    height: 150px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    display: block !important;
    transition: var(--transition);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.logo:hover img,
.logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.3));
}

/* CENTERED NAVIGATION MENU */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the menu */
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap; /* Allow wrapping if needed */
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy-dark);
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 4px;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    position: absolute;
    top: 25px;
    right: 20px;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--navy-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Responsive */
@media (max-width: 1024px) {
    .logo img,
    .logo-image {
        height: 100px !important;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 10px 0;
        position: relative;
    }

    .logo img,
    .logo-image {
        height: 80px !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 120px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }
}

@media (max-width: 480px) {
    .logo img,
    .logo-image {
        height: 70px !important;
    }
}


/* ----- Hero Section ----- */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--airforce-blue) 100%);
    overflow: hidden;
}

/* Logo Watermark Background */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 80%;
    background-image: url('../images/logo2.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 1;
}

.hero-flag {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(180deg, 
        var(--red) 0%, var(--red) 7.7%,
        var(--white) 7.7%, var(--white) 15.4%,
        var(--red) 15.4%, var(--red) 23.1%,
        var(--white) 23.1%, var(--white) 30.8%,
        var(--red) 30.8%, var(--red) 38.5%,
        var(--white) 38.5%, var(--white) 46.2%,
        var(--red) 46.2%, var(--red) 53.9%
    );
    opacity: 0.1;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Changed from 1 to 2 to be above logo */
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 60px 20px;
}

.military-insignias {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.insignia-svg {
    width: 80px;
    height: 80px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.95;
}

.location {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.location i {
    color: var(--gold);
    margin-right: 8px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-dark);
}

.btn-outline {
    background: transparent;
    color: var(--navy-primary);
    border: 2px solid var(--navy-primary);
}

.btn-outline:hover {
    background: var(--navy-primary);
    color: var(--white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ----- Trust Badges ----- */
.trust-badges {
    background: var(--cream);
    padding: 30px 0;
    border-bottom: 3px solid var(--gold);
}

.badges-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-dark);
    font-weight: 600;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

/* ----- Section Headers ----- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.left-aligned {
    text-align: left;
}

.star-divider {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 10px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ----- Services Preview ----- */
.services-preview {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 5px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.service-link {
    color: var(--navy-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.service-link:hover {
    color: var(--gold);
}

/* ----- Why Choose Us ----- */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-100), var(--cream));
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--navy-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.value-text h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.value-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.why-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 25px;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----- Testimonials Preview ----- */
.testimonials-preview {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--navy-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--navy-dark);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.testimonials-cta {
    text-align: center;
}

/* ----- CTA Section ----- */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--airforce-blue));
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path d="M40 0L50 20L40 40L30 20Z" fill="%23ffffff" opacity="0.03"/></svg>');
    background-size: 80px 80px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.military-discount {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ----- Page Header ----- */
.page-header {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* ----- Testimonials Page Styles ----- */
.overall-rating {
    padding: 60px 0;
    background: var(--cream);
    border-bottom: 3px solid var(--gold);
}

.rating-summary {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.rating-big {
    text-align: center;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 10px 0;
}

.rating-count {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    gap: 15px;
    align-items: center;
}

.rating-bar .label {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.rating-bar .bar {
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: var(--gold);
    border-radius: 6px;
}

.rating-bar .count {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: right;
}

.rating-sources {
    text-align: center;
}

.rating-sources p {
    margin-bottom: 15px;
    color: var(--gray-600);
}

.source-logos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.source-logos span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-700);
}

.source-logos i {
    font-size: 1.25rem;
}

/* Testimonials Filter */
.testimonials-full {
    padding: 60px 0;
}

.testimonials-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy-primary);
    border-color: var(--navy-primary);
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-full-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.testimonial-full-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-tag {
    background: var(--cream);
    color: var(--navy-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-full-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-details .location,
.author-details .date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.verified {
    color: var(--gold-dark);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

/* Video Testimonials */
.video-testimonials {
    padding: 60px 0;
    background: var(--cream);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--navy-primary);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background: var(--navy-dark);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.video-placeholder span {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 20px;
}

/* Leave Review CTA */
.leave-review {
    padding: 60px 0;
}

.review-cta-box {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 12px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.review-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.review-content p {
    color: rgba(255, 255, 255, 0.8);
}

.review-buttons {
    display: flex;
    gap: 15px;
}

.review-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.review-btn.google {
    background: var(--white);
    color: var(--gray-800);
}

.review-btn.facebook {
    background: #1877f2;
    color: var(--white);
}

.review-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ----- Contact Page Styles ----- */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray-600);
}

.quote-form {
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 3px rgba(26, 47, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--navy-primary);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.form-note i {
    margin-right: 5px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card,
.service-area-card,
.guarantee-card,
.social-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 30px;
}

.contact-info-card h3,
.service-area-card h3,
.guarantee-card h3,
.social-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    gap: 15px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: var(--gold);
    font-size: 1.2rem;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-details strong {
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.method-details a {
    color: var(--navy-primary);
    font-weight: 500;
}

.method-details a:hover {
    color: var(--gold);
}

.method-details span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.service-areas {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-areas li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-areas i {
    color: var(--gold);
    font-size: 0.8rem;
}

.service-area-card .note {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
}

.guarantee-card {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    color: var(--white);
}

.guarantee-card h3 {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guarantee-icon i {
    font-size: 2rem;
    color: var(--white);
}

.guarantee-card ul {
    list-style: none;
}

.guarantee-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link.facebook { background: #1877f2; color: white; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-link.google { background: #4285f4; color: white; }
.social-link.yelp { background: #d32323; color: white; }

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Map Section */
.map-section {
    background: var(--gray-200);
}

.map-placeholder {
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--navy-light);
}

.map-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.faq-item h4 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item h4 i {
    color: var(--gold);
    margin-top: 3px;
}

.faq-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    padding-left: 32px;
}

/* ----- Footer ----- */
.main-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list i {
    color: var(--gold);
    margin-top: 4px;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-list a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.license {
    font-size: 0.8rem;
}

.flag-stripe {
    display: flex;
    width: 60px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
}

.flag-stripe span {
    flex: 1;
}

.flag-stripe .red { background: var(--red); }
.flag-stripe .white { background: var(--white); }
.flag-stripe .blue { background: var(--airforce-blue); }

/* ----- Responsive Styles ----- */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-slider,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        transform: none;
    }

    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rating-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
    }

    .contact-quick {
        display: none;
    }

    .nav-menu {
        position: sticky;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .services-grid,
    .testimonials-slider,
    .testimonials-grid,
    .video-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-badges,
    .social-links {
        justify-content: center;
    }

    .review-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .review-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .badges-grid {
        flex-direction: column;
        align-items: center;
    }

    .military-badges {
        flex-direction: column;
        gap: 8px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

  /* =====================================================
   LOGO IMAGE FIX
   ===================================================== */

/* Navigation Logo - Constrained Size */
.logo-image {
    height: 50px !important;
    width: auto !important;
    max-width: 50px !important;
    object-fit: contain !important;
    display: block;
}

/* Footer Logo - Constrained Size */
.footer-logo-image {
    height: 70px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
    display: block;
    margin-bottom: 15px;
}

/* Ensure logo link doesn't expand */
.logo {
    display: inline-flex !important;
    align-items: center !important;
    max-width: 220px !important;
}

/* Mobile sizes */
@media (max-width: 768px) {
    .logo-image {
        height: 50px !important;
        max-width: 160px !important;
    }
    
    .footer-logo-image {
        height: 55px !important;
        max-width: 150px !important;
    }
}
/* =====================================================
   SERVICES PAGE - EPOXY FLOORING STYLES
   ===================================================== */

/* Epoxy Stats Section */
.epoxy-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Epoxy Types Showcase */
.epoxy-types {
    padding: 80px 0;
}

.epoxy-type-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid var(--gray-200);
}

.epoxy-type-showcase:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.epoxy-type-showcase.reverse {
    direction: rtl;
}

.epoxy-type-showcase.reverse .showcase-content {
    direction: ltr;
}

.type-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.type-badge.premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.showcase-content h3 i {
    color: var(--gold);
}

.type-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.benefit-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Color Palette */
.color-palette {
    margin: 30px 0;
}

.color-palette h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.swatch {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.swatch:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.swatch span {
    font-size: 0.7rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

/* Metallic Effects */
.metallic-effects {
    margin: 30px 0;
}

.metallic-effects h4 {
    margin-bottom: 15px;
}

.metallic-effects ul {
    list-style: none;
}

.metallic-effects li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.metallic-effects li strong {
    color: var(--navy-dark);
}

/* Flake Blends */
.flake-blends {
    margin: 30px 0;
}

.blend-samples {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.blend-card {
    text-align: center;
}

.blend-preview {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    padding: 10px;
    margin-bottom: 8px;
}

.blend-preview .flake {
    width: 12px;
    height: 12px;
    background: var(--gray-300);
    border-radius: 2px;
    opacity: 0.8;
}

.blend-preview.granite .flake {
    background: var(--gray-400);
}

.blend-preview.patriot .flake.red {
    background: var(--red);
}

.blend-preview.patriot .flake.white {
    background: var(--white);
}

.blend-preview.patriot .flake.blue {
    background: var(--airforce-blue);
}

.blend-preview.midnight .flake {
    background: #1a1a2e;
}

.blend-preview.sunset .flake:nth-child(odd) {
    background: #ff6b6b;
}

.blend-preview.sunset .flake:nth-child(even) {
    background: #feca57;
}

.blend-card span {
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* Ideal For */
.ideal-for {
    margin-top: 25px;
    padding: 15px;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    font-size: 0.95rem;
}

.ideal-for strong {
    color: var(--navy-dark);
}

/* Showcase Images (Generated Placeholders) */
.showcase-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 12px;
    font-size: 0.9rem;
    text-align: center;
}

/* Solid Color Demo */
.solid-color-demo {
    background: linear-gradient(135deg, #5a6268 0%, #6c757d 100%);
}

.demo-floor {
    width: 100%;
    height: 100%;
    position: relative;
}

.floor-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
}

.floor-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Metallic Demo */
.metallic-demo {
    background: radial-gradient(ellipse at 30% 40%, #4a5568, #1a202c);
}

.metallic-swirl {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(192, 192, 192, 0.4), transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 255, 255, 0.2), transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(169, 169, 169, 0.3), transparent 45%);
    animation: shimmer 8s infinite alternate;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Flake Demo */
.flake-demo {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.flake-texture {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(189, 195, 199, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 65% 45%, rgba(149, 165, 166, 0.5) 3px, transparent 3px),
        radial-gradient(circle at 30% 70%, rgba(127, 140, 141, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(236, 240, 241, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 45% 55%, rgba(189, 195, 199, 0.5) 3px, transparent 3px);
    background-size: 100px 100px;
}

/* Quartz Demo */
.quartz-demo {
    background: linear-gradient(135deg, #d4a574, #c19561);
}

.quartz-texture {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(245, 222, 179, 0.4) 1px, transparent 1px);
    background-size: 8px 8px;
}

/* Installation Process Timeline */
.installation-process {
    padding: 80px 0;
    background: var(--cream);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--navy-primary);
    margin: 20px 0 15px;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.step-time {
    margin-top: 15px;
    padding: 6px 12px;
    background: var(--cream);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 600;
    display: inline-block;
}

/* Common Applications */
.common-applications {
    padding: 80px 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.application-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.application-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: var(--navy-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.app-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.application-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.application-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-features span {
    font-size: 0.85rem;
    color: var(--gray-700);
}

/* Benefits Showcase */
.epoxy-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream), var(--gray-100));
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-large {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.benefit-large .benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-large .benefit-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.benefit-large h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-large p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.75rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--navy-dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy-dark);
}

.comparison-table .winner {
    background: rgba(197, 160, 40, 0.1);
    color: var(--gold-dark);
    font-weight: 700;
}

/* Maintenance Guide */
.maintenance-guide {
    padding: 80px 0;
}

.maintenance-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.maint-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.maint-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.maint-icon.daily { background: #3498db; }
.maint-icon.weekly { background: #2ecc71; }
.maint-icon.monthly { background: #f39c12; }
.maint-icon.yearly { background: #e74c3c; }

.maint-card h4 {
    margin-bottom: 15px;
}

.maint-card ul {
    list-style: none;
}

.maint-card li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Do's and Don'ts */
.dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.do-section,
.dont-section {
    padding: 40px;
    border-radius: 12px;
}

.do-section {
    background: #d4edda;
    border: 2px solid #28a745;
}

.dont-section {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.do-section h4,
.dont-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.do-section h4 i { color: #28a745; }
.dont-section h4 i { color: #dc3545; }

.do-section ul,
.dont-section ul {
    list-style: none;
}

.do-section li,
.dont-section li {
    padding: 10px 0;
    font-size: 0.95rem;
}

/* Epoxy FAQ */
.epoxy-faq {
    background: var(--cream);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .epoxy-type-showcase {
        grid-template-columns: 1fr;
    }

    .epoxy-type-showcase.reverse {
        direction: ltr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .benefits-grid,
    .blend-samples,
    .process-timeline,
    .applications-grid,
    .maintenance-cards,
    .dos-donts {
        grid-template-columns: 1fr;
    }

    .color-swatches {
        justify-content: center;
    }
}
/* =====================================================
   GALLERY PAGE STYLES
   ===================================================== */

/* Gallery Stats */
.gallery-stats {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Gallery Main Section */
.gallery-main {
    padding: 80px 0;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: var(--navy-primary);
    color: var(--navy-primary);
}

.filter-btn.active {
    background: var(--navy-primary);
    border-color: var(--navy-primary);
    color: var(--white);
}

.filter-btn i {
    font-size: 1rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

/* Image Badges */
.image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.industrial-badge { background: var(--navy-primary); }
.commercial-badge { background: #3498db; }
.garage-badge { background: #2ecc71; }
.metallic-badge { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.venetian-badge { background: #9b59b6; }

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.commercial-placeholder { background: linear-gradient(135deg, #3498db, #2980b9); }
.restaurant-placeholder { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.gym-placeholder { background: linear-gradient(135deg, #f39c12, #e67e22); }
.garage-placeholder { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.garage-dark-placeholder { background: linear-gradient(135deg, #34495e, #2c3e50); }
.metallic-garage-placeholder { background: linear-gradient(135deg, #95a5a6, #7f8c8d); }
.copper-metallic-placeholder { background: linear-gradient(135deg, #d4a574, #b8860b); }
.ocean-metallic-placeholder { background: linear-gradient(135deg, #3498db, #1abc9c); }
.gold-metallic-placeholder { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.venetian-placeholder { background: linear-gradient(135deg, #ecf0f1, #bdc3c7); }
.venetian-gold-placeholder { background: linear-gradient(135deg, #f39c12, #d4a574); }
.venetian-commercial-placeholder { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.patriot-placeholder { 
    background: linear-gradient(135deg, #bf0a30, #002868);
}
.medical-placeholder { background: linear-gradient(135deg, #1abc9c, #16a085); }
.midnight-placeholder { background: linear-gradient(135deg, #1a1a2e, #16213e); }

/* Gallery Info */
.gallery-info {
    padding: 25px;
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.gallery-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.gallery-meta i {
    color: var(--gold);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    padding: 30px 0;
}

.load-more-btn {
    margin-bottom: 15px;
}

.gallery-count {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Before & After Section */
.before-after-section {
    padding: 80px 0;
    background: var(--cream);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ba-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.ba-placeholder {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.ba-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ba-placeholder p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.ba-placeholder.before {
    background: linear-gradient(135deg, #7f8c8d, #95a5a6);
}

.ba-placeholder.after {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.ba-placeholder.after.venetian {
    background: linear-gradient(135deg, #f39c12, #d4a574);
}

.ba-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.ba-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.ba-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-filters {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }

    .ba-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .divider-icon {
        transform: rotate(90deg);
    }
/* =====================================================
   CAROUSEL GALLERY STYLES
   ===================================================== */

.gallery-carousel-section {
    padding: 80px 0;
    background: var(--white);
}

.carousel-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.carousel-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.carousel-intro p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* Carousel Container */
.image-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background: var(--gray-900);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Slide Caption */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 60px 40px 30px;
    color: var(--white);
}

.slide-caption h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.slide-caption p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.indicator:hover,
.indicator.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.control-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--navy-primary);
    color: var(--navy-primary);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: none;
}

.control-btn.active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.control-btn:hover {
    background: var(--navy-primary);
    color: var(--white);
}

/* Gallery Stats */
.gallery-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream), var(--gray-100));
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .carousel-slide img {
        height: 500px;
    }

    .slide-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 400px;
    }

    .slide-caption {
        padding: 40px 20px 20px;
    }

    .slide-caption h3 {
        font-size: 1.2rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-slide img {
        height: 300px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   ABOUT US PAGE STYLES
   ===================================================== */

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--navy-dark);
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.story-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.value-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: var(--cream);
    border-radius: 12px;
    text-align: center;
}

.value-badge i {
    font-size: 2.5rem;
    color: var(--gold);
}

.value-badge span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy-dark);
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 12px;
    color: var(--white);
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-box .stat-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-info {
    flex: 1;
}

.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Founders Section */
.founders-section {
    padding: 80px 0;
    background: var(--cream);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.founder-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.founder-image {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image.airforce-bg {
    background: linear-gradient(135deg, #00308f, #5d8aa8);
}

.founder-image.navy-bg {
    background: linear-gradient(135deg, #000080, #1e3a8a);
}

.image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
}

.military-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.military-badge.airforce {
    background: rgba(93, 138, 168, 0.9);
    color: var(--white);
}

.military-badge.navy {
    background: rgba(0, 0, 128, 0.9);
    color: var(--white);
}

.military-badge i {
    font-size: 1.2rem;
}

.founder-info {
    padding: 40px;
}

.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--navy-dark);
}

.founder-title {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.founder-rank {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.bio-section {
    margin-bottom: 25px;
}

.bio-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--navy-primary);
}

.bio-section h4 i {
    color: var(--gold);
}

.bio-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.expertise-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--cream);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--navy-dark);
    font-weight: 500;
}

.expertise-tags .tag i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Why Veteran-Owned Section */
.why-veteran-owned {
    padding: 80px 0;
    background: var(--white);
}

.veteran-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Military Discount Section */
.military-discount-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--airforce-blue));
}

.discount-card {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.discount-icon {
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discount-icon i {
    font-size: 4rem;
    color: var(--white);
}

.discount-content {
    flex: 1;
    color: var(--white);
}

.discount-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.discount-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.discount-offer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.discount-percent {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.discount-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.discount-branches {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.discount-branches span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.discount-branches i {
    color: var(--gold);
}

/* Our Commitment Section */
.our-commitment {
    padding: 80px 0;
    background: var(--cream);
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.commitment-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.commitment-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.commitment-text h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.commitment-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.image-placeholder-large {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.image-placeholder-large i {
    font-size: 6rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.image-placeholder-large span {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-content,
    .founders-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .veteran-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .veteran-benefits-grid,
    .story-values {
        grid-template-columns: 1fr;
    }

    .discount-card {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .discount-offer {
        flex-direction: column;
        gap: 10px;
    }

    .discount-branches {
        justify-content: center;
    }
}
/* =====================================================
   GALLERY SWIPER - FIXED VERSION
   ===================================================== */

.gallery-swiper-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.gallery-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--navy-dark);
}

.gallery-intro p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* Swiper Container */
.gallerySwiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Slide Styling */
.gallerySwiper .swiper-slide {
    position: relative;
    background: #000;
}

.gallery-slide-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.gallery-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide Overlay */
.gallery-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 60px 40px 30px;
    color: var(--white);
}

.project-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.project-badge.residential {
    background: #2ecc71;
    color: var(--white);
}

.project-badge.industrial {
    background: var(--navy-dark);
    color: var(--gold);
}

.project-badge.commercial {
    background: #3498db;
    color: var(--white);
}

.project-badge.venetian {
    background: #9b59b6;
    color: var(--white);
}

.gallery-slide-overlay h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
}

.gallery-slide-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Swiper Navigation Buttons */
.gallerySwiper .swiper-button-prev,
.gallerySwiper .swiper-button-next {
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallerySwiper .swiper-button-prev:hover,
.gallerySwiper .swiper-button-next:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.gallerySwiper .swiper-button-prev::after,
.gallerySwiper .swiper-button-next::after {
    font-size: 22px;
    font-weight: bold;
}

/* Swiper Pagination */
.gallerySwiper .swiper-pagination {
    bottom: 20px;
}

.gallerySwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.gallerySwiper .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    transform: scale(1.3);
}

/* Gallery Stats */
.gallery-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream), var(--gray-100));
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-slide-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gallery-slide-image {
        height: 400px;
    }

    .gallery-slide-overlay {
        padding: 40px 20px 20px;
    }

    .gallery-slide-overlay h3 {
        font-size: 1.5rem;
    }

    .gallery-slide-overlay p {
        font-size: 0.9rem;
    }

    .gallerySwiper .swiper-button-prev,
    .gallerySwiper .swiper-button-next {
        width: 45px;
        height: 45px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-slide-image {
        height: 350px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   THANK YOU PAGE STYLES
   ===================================================== */

/* Thank You Hero */
.thank-you-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary), var(--airforce-blue));
    text-align: center;
    padding: 80px 20px;
}

.thank-you-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.thank-you-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.success-icon {
    font-size: 6rem;
    color: #2ecc71;
    margin-bottom: 30px;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thank-you-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.thank-you-content h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 600;
}

.confirmation-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* What's Next Section */
.what-next-section {
    padding: 80px 0;
    background: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 50px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% + 30px);
    background: var(--gray-300);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.timeline-content p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}

.timeline-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Urgent Contact */
.urgent-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream), var(--gray-100));
}

.urgent-box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border-left: 5px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.urgent-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.urgent-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.urgent-content {
    flex: 1;
}

.urgent-content h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--navy-dark);
}

.urgent-content p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.urgent-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.hours {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* While You Wait */
.while-you-wait {
    padding: 80px 0;
    background: var(--white);
}

.waiting-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.waiting-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--cream);
    border-radius: 12px;
    transition: var(--transition);
}

.waiting-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.waiting-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.waiting-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.waiting-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.waiting-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Discount Reminder */
.discount-reminder {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
}

.discount-box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid var(--gold);
}

.discount-medal {
    font-size: 5rem;
    flex-shrink: 0;
}

.discount-text {
    color: var(--white);
}

.discount-text h3 {
    color: var(--gold);
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.discount-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Quick Links */
.thank-you-quick-links {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.thank-you-quick-links h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: var(--cream);
    border-radius: 12px;
    transition: var(--transition);
    color: var(--navy-dark);
}

.quick-link:hover {
    background: var(--navy-primary);
    color: var(--white);
    transform: translateY(-5px);
}

.quick-link i {
    font-size: 2rem;
}

.quick-link span {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .waiting-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }

    .urgent-box {
        flex-direction: column;
        text-align: center;
    }

    .urgent-actions {
        align-items: center;
    }

    .discount-box {
        flex-direction: column;
        text-align: center;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-item::after {
        display: none;
    }
}
/* Top Bar & Navigation Background */
.top-bar {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 50%, #1e40af 100%);
    color: white;
}

.main-nav {
    background: rgba(15, 23, 42, 0.95); /* Dark slate with slight transparency */
    backdrop-filter: blur(10px); /* Modern glass effect */
    border-bottom: 2px solid #3b82f6; /* Blue accent line */
}

/* Ensure nav text/links stay white & visible */
.nav-menu a,
.contact-quick a {
    color: #f8fafc !important;
}

.nav-menu a:hover,
.contact-quick a:hover {
    color: #60a5fa !important;
}

/* Military badges contrast */
.military-badges .badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid #60a5fa;
}
/* MILITARY DARK NAV BACKGROUND - ADD LAST */
:root {
    --white: #1e3a8a; /* Navy blue instead of white */
}

.main-nav {
    background: linear-gradient(135deg, #1e3a8a, #0f172a) !important;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4) !important;
}

.top-bar {
    background: #111827 !important;
    color: white !important;
}

.nav-menu a {
    color: #f8fafc !important; /* Light text on dark bg */
}

.mobile-menu-toggle span {
    background: white !important;
}

.contact-quick a {
    color: #e2e8f0 !important;
}

.contact-quick a:hover {
    color: #60a5fa !important;
}
.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px; /* Adjust as needed */
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
    backdrop-filter: blur(10px);
}

.experience-badge .number {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.95;
}
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.color-swatch {
  height: 80px;
  border-radius: 8px;
  border: 2px solid #ddd;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.color-swatch:hover {
  transform: scale(1.05);
}

.swatch-label {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 5px;
}
}