/* Knocks Recovery - Custom Styles */

/* Root Variables */
:root {
    --primary-blue: #1866c1;
    --primary-black: #000000;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure proper mobile scaling */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Main Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    color: var(--text-dark);
    position: relative;
}

.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(24, 102, 193, 0.02) 10px,
            rgba(24, 102, 193, 0.02) 20px
        );
    pointer-events: none;
}

/* Content Wrapper */
.content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

/* Logo Styles */
.logo-container {
    animation: fadeInDown 1s ease-in-out;
}

.logo {
    max-width: 340px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Typography */
h1 {
    animation: fadeInUp 1s ease-in-out 0.2s both;
    color: var(--primary-black);
    letter-spacing: 2px;
    font-size: 2.25rem;
}

.lead {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-in-out 0.4s both;
    line-height: 1.8;
}

/* Service Icons */
.service-icon {
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid rgba(24, 102, 193, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-in-out 0.6s both;
}

.service-icon:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(24, 102, 193, 0.3);
}

.service-icon i {
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-icon:hover i {
    color: var(--text-light);
}

.service-icon-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-icon-link:hover {
    text-decoration: none;
    color: inherit;
    transform: scale(1.1);
}

.service-icon h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-black);
    transition: color 0.3s ease;
}

.service-icon:hover h5 {
    color: var(--text-light);
}

.service-icon p {
    color: var(--text-dark);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.service-icon:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Info */
.contact-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(24, 102, 193, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease-in-out 0.8s both;
}

.contact-info strong {
    color: var(--primary-black);
}

.contact-details {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-details i {
    color: var(--primary-blue);
}

.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-black);
    text-decoration: underline;
}

/* Fleet Section */
.fleet-section {
    position: relative;
    width: 100%;
    height: 250px;
    background-image: url('../images/trucks.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 102, 193, 0.75);
    z-index: 1;
}

.fleet-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.fleet-content h1 {
    color: white;
    font-size: 2.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.fleet-content .lead {
    color: rgba(255, 255, 255, 1.0);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer-section {
    padding: 20px 0;
    background: rgba(24, 102, 193, 0.05);
    border-top: 1px solid rgba(24, 102, 193, 0.1);
    position: relative;
    z-index: 1;
}

.footer-section p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 240px;
    }

    .fleet-section {
        height: 200px;
    }

    .fleet-content h1 {
        font-size: 1.75rem;
    }

    .fleet-content .lead {
        font-size: 0.95rem;
    }

    .content-wrapper {
        padding: 20px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .service-icon {
        margin-bottom: 20px;
        padding: 20px 15px;
    }

    .service-icon i {
        font-size: 2rem !important;
    }

    .contact-info {
        padding: 20px;
    }

    .content-wrapper {
        padding: 40px 15px;
    }
}

@media (max-width: 576px) {
    .fleet-section {
        height: 180px;
    }

    .fleet-content h1 {
        font-size: 1.5rem;
    }

    .fleet-content .lead {
        font-size: 0.875rem;
    }

    .content-wrapper {
        padding: 15px 0;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .lead {
        font-size: 1rem;
    }

    .logo {
        max-width: 220px;
    }
}

/* ========================================
   NEW SITE STYLES
   ======================================== */

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1020;
}

/* Logo Box Styling - Extends beyond navbar */
.logo-brand {
    position: relative;
    z-index: 1001;
    margin-right: 20px;
}

.logo-box {
    width: 170px;
    height: 170px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 4px solid white;
    transition: all 0.3s ease, opacity 0.4s ease, visibility 0.4s ease;
    position: absolute;
    top: 0px;
    left: 0;
}

.logo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(24, 102, 193, 0.3);
}

.logo-box img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Minimal logo - position absolute so it never affects navbar height */
.logo-minimal {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: auto;
    max-height: 38px;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Scrolled navbar - compress slightly, swap logos */
.navbar.navbar-scrolled {
    padding: 0.4rem 0;
}

.navbar.navbar-scrolled .logo-box {
    opacity: 0;
    visibility: hidden;
}

.navbar.navbar-scrolled .logo-minimal {
    opacity: 1;
    visibility: visible;
}

/* Spacer to prevent navbar from collapsing - matches logo width */
.logo-brand::before {
    content: '';
    display: block;
    width: 170px;
    height: 50px;
}



@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        padding: 20px;
        margin-top: 0;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1050;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item:last-child {
        margin-top: 10px;
    }

    .nav-link {
        padding: 10px 15px !important;
    }


    .logo-box {
        width: 130px;
        height: 130px;
        padding: 6px;
        border: 3px solid white;
        top: 0px;
    }

    .logo-brand::before {
        width: 130px;
        height: 45px;
    }

}

/* Hero section - logo naturally overlaps from navbar above */
.hero-section {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Page Header Styles */
.page-header {
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(24, 102, 193, 0.85) 0%, rgba(13, 74, 143, 0.85) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header .lead {
    color: rgba(255, 255, 255, 1.0);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Page Hero - shared styles for all page headers with images */
.page-hero {
    background: linear-gradient(135deg, rgba(24, 102, 193, 0.4) 0%, rgba(13, 74, 143, 0.4) 100%);
}

/* Page-specific Hero Backgrounds */
.page-hero.page-header-breakdown {
    background-image: linear-gradient(135deg, rgba(24, 102, 193, 0.57) 0%, rgba(13, 74, 143, 0.57) 100%),
                      url('../images/breakdown-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.page-header-transport {
    background-image: linear-gradient(135deg, rgba(24, 102, 193, 0.57) 0%, rgba(13, 74, 143, 0.57) 100%),
                      url('../images/transport-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.page-header-hgv {
    background-image: linear-gradient(135deg, rgba(24, 102, 193, 0.57) 0%, rgba(13, 74, 143, 0.57) 100%),
                      url('../images/hgv-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.page-header-quote {
    background-image: linear-gradient(135deg, rgba(24, 102, 193, 0.57) 0%, rgba(13, 74, 143, 0.57) 100%),
                      url('../images/quote-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.page-header-contact {
    background-image: linear-gradient(135deg, rgba(24, 102, 193, 0.57) 0%, rgba(13, 74, 143, 0.57) 100%),
                      url('../images/contact-knocks-recovery.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero.page-header-testimonials {
    background-image: linear-gradient(135deg, rgba(24, 102, 193, 0.57) 0%, rgba(13, 74, 143, 0.57) 100%),
                      url('../images/recovery-fleet.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile adjustments for all page heroes to maintain desktop crop */
@media (max-width: 768px) {
    .page-hero {
        background-size: auto 175% !important;
        background-position: center center !important;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
    border-radius: 5px;
}

.nav-link:hover {
    border-color: rgba(24, 102, 193, 0.3);
    background-color: rgba(24, 102, 193, 0.05);
}

.nav-link.active {
    color: var(--primary-blue) !important;
    border-color: var(--primary-blue);
    background-color: rgba(24, 102, 193, 0.05);
}


.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}



.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 2px 5px;
}

.dropdown-item:hover {
    background-color: rgba(24, 102, 193, 0.1);
    color: var(--primary-blue) !important;
}

.dropdown-item.active {
    background-color: var(--primary-blue);
    color: white !important;
}

.btn-primary {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: white !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d4a8f !important;
    border-color: #0d4a8f !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 102, 193, 0.3);
}

/* Navbar quote button specific styling */
.nav-link.btn-primary {
    border: none;
}

.nav-link.btn-primary:hover {
    border: none;
}

/* Page Layout */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d4a8f 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
}

.page-header h1 {
    position: relative;
    z-index: 1;
    color: white;
    animation: none;
}

.page-header .lead {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    animation: none;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Feature Card Image Bleed */
.feature-card-image {
    margin: -30px -30px 25px -30px;
    height: 220px;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(24, 102, 193, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(24, 102, 193, 0.2);
    border-color: var(--primary-blue);
}

.feature-card.no-hover:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(24, 102, 193, 0.1);
}

.feature-card .icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d4a8f 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
}

.cta-section .content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.cta-section h2,
.cta-section .lead,
.cta-section p {
    color: white !important;
}

.btn-light {
    background-color: white !important;
    color: var(--primary-blue) !important;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a !important;
}

.site-footer h5 {
    font-weight: 600;
}

.text-light-gray {
    color: #b0b0b0;
}

.site-footer .text-primary {
    color: var(--primary-blue) !important;
}

.site-footer a:hover {
    color: var(--primary-blue) !important;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(24, 102, 193, 0.65) 0%, rgba(13, 74, 143, 0.85) 100%),
                url('../images/homepage-hero.jpeg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: none;
}

.hero-section .lead {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: none;
}

.badge-custom {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin: 5px;
}

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

/* Stats Section */
.stats-card {
    text-align: center;
    padding: 30px;
}

.stats-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stats-card .stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(24, 102, 193, 0.15);
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.2;
    margin-bottom: 15px;
}

.testimonial-card .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.testimonial-card .company {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-caption {
    padding: 20px;
    background: white;
    flex: 1;
}

.gallery-caption h5 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-caption p {
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(24, 102, 193, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.btn-submit {
    background-color: var(--primary-blue);
    border: none;
    border-radius: 25px;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0d4a8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 102, 193, 0.3);
}

/* Contact Info Box */
.contact-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(24, 102, 193, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

a.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(24, 102, 193, 0.2);
    text-decoration: none;
}

a.contact-box h5,
a.contact-box p {
    color: var(--primary-black);
}

a.contact-box:hover h5 {
    color: var(--primary-blue);
}

.contact-box .icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(24, 102, 193, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-box .icon-circle i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.contact-box h5 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-box p {
    color: var(--text-dark);
    margin-bottom: 0;
}

.contact-box a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    color: #0d4a8f;
    text-decoration: underline;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Accordion Styles */
.accordion-item {
    border: 2px solid rgba(24, 102, 193, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(24, 102, 193, 0.15);
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        min-height: 500px;
        margin-top: 0;
        padding: 70px 20px 60px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .badge-custom {
        font-size: 0.9rem;
        padding: 8px 16px;
        display: inline-block;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        margin-top: 0;
        padding: 60px 15px 50px;
    }

    .logo-box {
        width: 115px;
        height: 115px;
        padding: 3px;
        border-radius: 12px;
        border: 3px solid white;
        top: 0px;
    }

    .logo-brand::before {
        width: 115px;
        height: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-section .lead {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .badge-custom {
        font-size: 0.85rem;
        padding: 6px 12px;
        margin: 5px auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block;
        max-width: 280px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0 0 15px 0 !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .page-header {
        padding: 60px 15px 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .lead {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 40px 0;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .feature-card .icon {
        font-size: 2.5rem;
    }

    .testimonial-card .testimonial-text {
        font-size: 1rem;
    }

    .stats-card .stat-number {
        font-size: 2.5rem;
    }

    .stats-card .stat-label {
        font-size: 1rem;
    }

    .contact-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin-top: 0;
        padding: 50px 15px 40px;
    }

    .logo-box {
        width: 105px;
        height: 105px;
        padding: 2px;
        border-radius: 10px;
        border: 3px solid white;
        top: 0px;
    }

    .logo-brand::before {
        width: 105px;
        height: 40px;
    }

    .hero-section h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-section .lead {
        font-size: 1rem;
        line-height: 1.5;
    }

    .badge-custom {
        font-size: 0.75rem;
        padding: 5px 10px;
        display: block;
        margin: 5px auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 250px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header .lead {
        font-size: 1rem;
    }

    .feature-card h3, .feature-card h5 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .stats-card .stat-number {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .form-control, .form-label {
        font-size: 0.95rem;
    }
}

/* ByteFlash footer link */
.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-link-large i {
    font-size: 2.8rem;
}

.social-link-large span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-link-large:hover {
    color: var(--primary-dark);
    transform: translateY(-4px);
}

.byteflash-link {
    color: #b81b00;
    transition: color 0.2s ease;
}

a.byteflash-link:hover {
    color: #ff3d1a !important;
}
