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

body {
    font-family: 'Zalando Sans Expanded', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #012A4A 0%, #013A63 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    outline: none;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #89C2D9;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #89C2D9;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Items */
.nav-item {
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('boat-detailing-naples-florida.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta .cta-text {
    margin-top: 10px;
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    text-align: center;
}

.hero-cta .cta-text strong {
    color: #A9D6E5;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #89C2D9, #A9D6E5);
    color: #012A4A;
    border-color: #89C2D9;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #A9D6E5, #89C2D9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(137, 194, 217, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #012A4A;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.3);
}

.btn-text {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    font-weight: bold;
}

.btn-text:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.5);
    color: white;
}

/* CTA Section Button Styling */
.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #012A4A;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.3);
}

/* Trust Signals */
.trust-signals {
    background: white;
    padding: 40px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #012A4A;
}

.trust-icon {
    background: #89C2D9;
    color: #012A4A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #012A4A;
}

.services-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: #012A4A;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.service-link {
    color: #89C2D9;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #012A4A;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #012A4A;
}

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

.feature h3 {
    color: #012A4A;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #012A4A;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}


/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #012A4A 0%, #013A63 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-text {
    margin-top: 20px;
    font-size: 1.3rem;
    color: white;
    text-align: center;
    font-weight: 500;
    line-height: 1.6;
}

.cta-text strong {
    color: #A9D6E5;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #89C2D9;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
}

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

.footer-section a:hover {
    color: #89C2D9;
}

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

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

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

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #012A4A 0%, #013A63 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #012A4A;
}

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

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #012A4A 0%, #013A63 100%);
}

.placeholder-photo .initials {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.member-info h3 {
    color: #012A4A;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.member-title {
    color: #89C2D9;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #012A4A;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: white;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #012A4A;
}

.expertise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.expertise-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 3rem;
    color: #012A4A;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #012A4A;
}

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

.value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-card h3 {
    color: #012A4A;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.certifications-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #012A4A;
}

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

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

.cert-item h3 {
    color: #012A4A;
    margin-bottom: 15px;
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-areas-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #012A4A;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.areas-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
}

.area-group {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.area-group:hover {
    transform: translateY(-5px);
}

.area-group h3 {
    color: #012A4A;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #89C2D9;
    padding-bottom: 10px;
    display: inline-block;
}

.area-group ul {
    list-style: none;
    padding: 0;
}

.area-group li {
    padding: 10px 0;
    color: #666;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.area-group li:last-child {
    border-bottom: none;
}

.service-areas-list {
    text-align: center;
    margin: 50px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.service-areas-list p {
    font-size: 1.2rem;
    color: #012A4A;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(137, 194, 217, 0.1) 0%, rgba(169, 214, 229, 0.1) 100%);
    padding: 30px 40px;
    border-radius: 15px;
    border: 2px solid rgba(137, 194, 217, 0.3);
    box-shadow: 0 8px 25px rgba(137, 194, 217, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-areas-list p:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(137, 194, 217, 0.25);
    border-color: rgba(137, 194, 217, 0.5);
    background: linear-gradient(135deg, rgba(137, 194, 217, 0.15) 0%, rgba(169, 214, 229, 0.15) 100%);
}

.service-note {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.service-note p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.service-note a {
    color: #012A4A;
    text-decoration: none;
    font-weight: 600;
}

.service-note a:hover {
    text-decoration: underline;
}

/* Gallery Styles */
.gallery-intro {
    padding: 60px 0;
    background: white;
}

.gallery-intro h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #012A4A;
}

.gallery-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.gallery-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #1e3c72;
    color: #012A4A;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.tab-btn.active,
.tab-btn:hover {
    background: #1e3c72;
    color: white;
}

.gallery-section {
    padding: 60px 0;
    background: white;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img,
.gallery-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Essential Mobile Optimizations for Readability */
@media (max-width: 768px) {
    /* Ensure content fits on mobile screens */
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Typography adjustments for mobile readability */
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Navigation - keep desktop style but make it mobile-friendly */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        padding: 0 15px;
        gap: 10px;
    }
    
    .nav-logo a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .logo-image {
        height: 45px;
        width: auto;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    /* Mobile menu button */
    .hamburger {
        display: block;
        width: 35px;
        height: 35px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        flex-shrink: 0;
    }
    
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile menu */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 90%;
        margin: 5px 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-radius: 8px;
        background: #f8f9fa;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        color: #333;
        text-decoration: none;
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        text-align: center;
    }
    
    .nav-link:hover {
        background: #e9ecef;
        color: #012A4A;
        border-color: #1e3c72;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
    }
    
    .nav-link.active {
        background: #1e3c72;
        color: white;
        border-color: #1e3c72;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 80px 0;
        text-align: center;
        height: auto;
        min-height: 70vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-cta .cta-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .cta-text strong {
        font-size: 1.2rem;
    }
    
    /* Grid layouts - keep desktop structure but adjust for mobile */
    .services-grid,
    .features-grid,
    .benefits-grid,
    .team-grid,
    .values-grid,
    .cert-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Fix benefits grid mobile layout */
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 20px !important;
    }
    
    .benefit-item {
        padding: 20px !important;
        margin-bottom: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .benefit-item h4 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    .benefit-item p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        word-wrap: break-word !important;
        overflow: visible !important;
    }
    
    /* Contact and form layouts */
    .contact-layout,
    .contact-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* CTA sections */
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Gallery optimizations */
    .gallery-image {
        height: auto !important;
        min-height: 200px;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .gallery-image img,
    .gallery-image video {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center;
        max-height: none !important;
    }
    
    /* Process steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Service areas */
    .areas-grid {
        display: flex;
        justify-content: center;
    }
    
    .area-group {
        padding: 20px;
        max-width: 100%;
    }
    
    .service-areas-list p {
        font-size: 1rem;
        padding: 25px 30px;
        margin: 0 20px;
    }
    
    /* Form adjustments */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .service-areas-list {
        columns: 1;
    }
    
    /* Fix service category mobile layout */
    .service-category {
        padding: 20px !important;
        margin: 0 10px 30px 10px !important;
        width: calc(100% - 20px) !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .service-category h3 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        word-wrap: break-word !important;
    }
    
    .service-category .category-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        text-align: center !important;
        word-wrap: break-word !important;
    }
    
    /* Fix expertise section mobile layout */
    .expertise-section {
        padding: 40px 15px !important;
        overflow-x: hidden !important;
    }
    
    .expertise-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .expertise-text h2 {
        font-size: 2rem !important;
        margin-bottom: 20px !important;
        line-height: 1.2 !important;
    }
    
    .expertise-text p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    .expertise-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
    }
    
    .stat-item {
        padding: 15px 10px !important;
        text-align: center !important;
        background: #f8f9fa !important;
        border-radius: 10px !important;
        min-height: 80px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
        font-weight: bold !important;
        color: #012A4A !important;
        line-height: 1.1 !important;
    }
    
    .stat-item p {
        font-size: 0.85rem !important;
        color: #666 !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        word-wrap: break-word !important;
    }
}

/* Small mobile adjustments for very small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .service-item,
    .benefit-item,
    .faq-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .gallery-image img,
    .gallery-image video {
        border-radius: 8px;
        object-fit: contain !important;
        object-position: center;
        height: auto !important;
        max-height: none;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .plan-card {
        padding: 20px 15px;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .category-section {
        padding: 20px 15px;
    }
    
    .expertise-section {
        padding: 30px 10px;
    }
    
    .expertise-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .expertise-text p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .expertise-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
        width: 100% !important;
    }
    
    .stat-item {
        padding: 15px 10px !important;
        text-align: center !important;
        background: #f8f9fa !important;
        border-radius: 10px !important;
        min-height: 80px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        margin-bottom: 0 !important;
    }
    
    .stat-item h3 {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
        font-weight: bold !important;
        color: #012A4A !important;
        line-height: 1.1 !important;
    }
    
    .stat-item p {
        font-size: 0.85rem !important;
        color: #666 !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        word-wrap: break-word !important;
    }
    
    .story-content {
        padding: 0 10px;
    }
    
    .story-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .story-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    /* Instant Quote Form Mobile Styles */
    .instant-quote {
        padding: 40px 0;
    }
    
    .quote-header h2 {
        font-size: 2rem;
    }
    
    .quote-header p {
        font-size: 1rem;
    }
    
    .quote-form-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quote-form .form-group input,
    .quote-form .form-group select,
    .quote-form .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .form-submit .btn {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }
    
    /* Additional mobile nav optimizations for very small screens */
    .nav-container {
        padding: 0 10px;
        gap: 5px;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hamburger {
        width: 32px;
        height: 32px;
        padding: 4px;
    }
}

.gallery-image video {
    background: #000;
    cursor: pointer;
}

/* Video-specific styles */
.video-item {
    position: relative;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-item:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    transition: transform 0.3s ease;
}

.video-item:hover .play-button {
    transform: scale(1.1);
}


/* Hide play overlay when video is playing */
.video-item.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Video loading state */
.gallery-video[poster] {
    background-size: cover;
    background-position: center;
}

/* Enhanced video controls */
.gallery-video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.gallery-video::-webkit-media-controls-play-button {
    background: rgba(30, 60, 114, 0.9);
    border-radius: 50%;
}

/* Loading state for videos */
.video-item.loading .video-play-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.video-item.loading .play-button {
    opacity: 0.5;
}

/* Video animations */
@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-item {
    animation: videoFadeIn 0.6s ease-out;
}

/* Enhanced video hover effects */
.video-item:hover .gallery-image video {
    transform: scale(1.05);
    filter: brightness(1.1);
}


/* Mobile video optimizations */
/* Video mobile styles moved to main mobile section */

.gallery-item:hover .gallery-image img,
.gallery-item:hover .gallery-image video {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #012A4A;
}

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

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #012A4A;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Process Overview */
.process-overview {
    padding: 80px 0;
    background: white;
}

.process-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #012A4A;
}

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

.process-step {
    text-align: center;
}

.process-step h3 {
    color: #012A4A;
    margin-bottom: 15px;
}

/* Instant Quote Form Styles */
.instant-quote {
    padding: 60px 0;
    background: linear-gradient(135deg, #012A4A 0%, #013A63 100%);
    color: white;
}

.quote-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.quote-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.quote-form .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #012A4A;
    font-size: 1rem;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.contact-form-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    color: #012A4A;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Form Styles */
.contact-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-method {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-method h3 {
    color: #012A4A;
    margin-bottom: 15px;
}

.contact-link {
    color: #89C2D9;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    margin: 15px 0;
}

.contact-link:hover {
    color: #012A4A;
}

.contact-hours {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.contact-address {
    font-style: normal;
    color: #666;
    line-height: 1.6;
}

.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section h2 {
    color: #012A4A;
    margin-bottom: 20px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #012A4A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.contact-info-section h2 {
    color: #012A4A;
    margin-bottom: 30px;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.info-card h3 {
    color: #012A4A;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hours-list {
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hours-note {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

.service-areas-list {
    list-style: none;
    columns: 2;
    column-gap: 20px;
}

.service-areas-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

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

.benefits-list li {
    padding: 8px 0;
    color: #012A4A;
    font-weight: 500;
}

/* Service-specific styles */
.service-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.service-category {
    margin-bottom: 80px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-category h3 {
    color: #012A4A;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #89C2D9;
    padding-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    font-style: italic;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #89C2D9;
}

.service-item h4 {
    color: #012A4A;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.estimates-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.estimates-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #012A4A;
}

.estimates-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.estimates-factors {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.estimates-factors h3 {
    color: #012A4A;
    margin-bottom: 20px;
    text-align: center;
}

.estimates-factors ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.estimates-factors li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.estimates-factors li:last-child {
    border-bottom: none;
}

.estimates-note {
    background: #1e3c72;
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #89C2D9;
    font-weight: bold;
}


.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #012A4A;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

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

.step-number {
    background: #89C2D9;
    color: #012A4A;
    width: 50px;
    height: 50px;
    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: #012A4A;
    margin-bottom: 15px;
}


/* Mobile Responsiveness - Removed to make mobile look like desktop */

/* Small mobile styles removed to maintain desktop appearance */

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

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #89C2D9;
}

.benefit-item h4 {
    color: #012A4A;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.plan-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #89C2D9;
}

.plan-card h4 {
    color: #012A4A;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.plan-frequency {
    color: #89C2D9;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.service-group {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.service-group h4 {
    color: #012A4A;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #89C2D9;
    padding-bottom: 10px;
}

.service-group ul {
    list-style: none;
    padding: 0;
}

.service-group li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 25px;
}

.service-group li:before {
    content: "•";
    color: #89C2D9;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.how-it-works {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.how-it-works .process-step {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.how-it-works .step-number {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Service Areas Section */
.service-areas {
    background: #f8f9fa;
    padding: 60px 0;
}

.service-areas h2 {
    text-align: center;
    color: #012A4A;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-areas p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.areas-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.area-group {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.area-group h3 {
    color: #012A4A;
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #89C2D9;
    padding-bottom: 10px;
}

.area-group ul {
    list-style: none;
    padding: 0;
}

.area-group li {
    padding: 8px 0;
    color: #666;
    font-size: 1rem;
}

.area-group li a {
    color: #012A4A;
    text-decoration: none;
    font-weight: 600;
}

.area-group li a:hover {
    text-decoration: underline;
}

.city-links-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #89C2D9;
}

.city-links-cta h3 {
    color: #012A4A;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.city-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.city-link {
    background: #1e3c72;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.city-link:hover {
    background: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

/* Quick FAQ Section */
.quick-faq {
    background: #fff;
    padding: 60px 0;
}

.quick-faq h2 {
    text-align: center;
    color: #012A4A;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.faq-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #89C2D9;
    margin-bottom: 30px;
}

.faq-item h3 {
    color: #012A4A;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.faq-item a {
    color: #012A4A;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.faq-cta .btn {
    margin: 0;
}

.faq-cta .btn-secondary {
    background: #1e3c72;
    color: white;
    border-color: #1e3c72;
}

.faq-cta .btn-secondary:hover {
    background: #2a5298;
    color: white;
    border-color: #2a5298;
}

/* FAQ Link Section */
.faq-link-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.faq-link-section h3 {
    color: #012A4A;
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-link-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-link-section .btn {
    margin: 0;
    background: #012A4A;
    color: white;
    border-color: #012A4A;
}

.faq-link-section .btn:hover {
    background: #013A63;
    color: white;
    border-color: #013A63;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 42, 74, 0.3);
}

/* Mobile responsive styles removed to maintain desktop appearance */

/* Clean Contact Page Design */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #012A4A;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.phone-callout {
    background: linear-gradient(135deg, #012A4A 0%, #013A63 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(30, 60, 114, 0.3);
}

.phone-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.phone-callout h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.phone-number {
    margin: 30px 0;
}

.phone-number a {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.phone-number a:hover {
    transform: scale(1.05);
}

.availability {
    font-size: 1.1rem;
    margin: 20px 0 30px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-section h4 {
    font-size: 1.5rem;
    color: #012A4A;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1e3c72;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.areas-grid span {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    color: #666;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.areas-grid span:hover {
    background: #1e3c72;
    color: white;
    border-color: #1e3c72;
}

.hours-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.days {
    font-weight: bold;
    color: #012A4A;
    font-size: 1.1rem;
}

.times {
    color: #666;
    font-size: 1.1rem;
}

.emergency-note {
    font-style: italic;
    color: #999;
    text-align: center;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    color: #333;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

/* Mobile responsive styles removed to maintain desktop appearance */

/* Comprehensive mobile responsive design removed to maintain desktop appearance */

/* Mobile styles removed to maintain desktop appearance */

/* Small mobile styles removed to maintain desktop appearance */

/* Landscape mobile styles removed to maintain desktop appearance */

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .gallery-image img,
    .gallery-image video {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .nav-container,
    .cta-section,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .service-item,
    .benefit-item,
    .faq-item {
        page-break-inside: avoid;
    }
}
