/* ===================================
   Custom CSS for Kamat Relocation
   =================================== */

:root {
    --primary: #FF6D00;
    --navy: #1A237E;
    --accent: #FF6D00;
    --background-light: #F5F7FA;
    --background-dark: #0A1120;
    --text-dark: #1e293b;
    --text-light: #64748b;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Public Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ===================================
   Header Section
   =================================== */

.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-section.scrolled {
    background: rgba(26, 35, 126, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
    padding: 0.5rem 0;
    transition: padding 0.3s ease;
}

.header-section.scrolled .navbar {
    padding: 0.25rem 0;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.header-section.scrolled .brand-logo {
    height: 35px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.brand-icon .material-symbols-outlined {
    font-size: 30px;
}

.brand-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A237E;
    line-height: 1;
    transition: font-size 0.3s ease;
}

.header-section.scrolled .brand-title {
    font-size: 1rem;
    color: white;
}

.brand-subtitle {
    font-size: 0.688rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: font-size 0.3s ease;
    margin-top: 1px;
    display: block;
    line-height: 1.2;
}

.header-section.scrolled .brand-subtitle {
    font-size: 0.625rem;
    color: var(--primary);
}

.navbar-nav .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A237E;
    padding: 0.375rem 0.875rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.header-section.scrolled .navbar-nav .nav-link {
    color: white;
}

.header-section.scrolled .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.header-section.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-quote {
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 4px 6px rgba(255, 109, 0, 0.2);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 35, 126, 0.8);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(255, 109, 0, 0.2);
}

.hero-badge .material-symbols-outlined {
    font-size: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    padding: 0 0.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-description {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-phone-numbers {
    margin-top: 1.5rem;
}

.hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-phone-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 109, 0, 0.3);
}

.hero-phone-link .material-symbols-outlined {
    font-size: 1.25rem;
}

.hero-buttons .btn {
    font-weight: 700;
}

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

.btn-primary:hover {
    background-color: #e66300;
    border-color: #e66300;
}

.btn-outline-light {
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   About Section
   =================================== */

.about-section {
    background-color: var(--background-light);
    padding: 5rem 0;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 109, 0, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(--primary);
}

.feature-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

.feature-title {
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.2);
    max-width: 90%;
    margin: 0 auto;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.about-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.9), transparent);
    padding: 2rem;
    color: white;
    font-weight: 500;
    font-style: italic;
}

/* ===================================
   Services Section
   =================================== */

.services-section {
    background: white;
    padding: 5rem 0;
}

.section-description {
    color: var(--text-light);
    font-size: 1rem;
}

.service-card {
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    background: white;
    border-color: rgba(255, 109, 0, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 109, 0, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-icon .material-symbols-outlined {
    font-size: 2rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.service-list li {
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-card-featured {
    background: linear-gradient(135deg, var(--navy), #3949ab);
    border: none;
}

.service-icon-featured {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-featured .material-symbols-outlined {
    font-size: 2rem;
}

/* Modern Service Cards */
.service-card-modern {
    position: relative;
    padding: 1.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(255, 109, 0, 0.1);
    transform: translateY(-2px);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.service-icon-modern {
    width: 48px;
    height: 48px;
    background: rgba(255, 109, 0, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    background: var(--primary);
    color: white;
}

.service-icon-modern .material-symbols-outlined {
    font-size: 1.75rem;
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(26, 35, 126, 0.08);
    line-height: 1;
}

.service-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card-modern:hover .service-title-modern {
    color: var(--primary);
}

.service-description-modern {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

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

.service-list-modern li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.service-list-modern li .material-symbols-outlined {
    font-size: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 109, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-top: auto;
    opacity: 0;
}

.service-card-modern:hover .service-link {
    opacity: 1;
    background: var(--primary);
    color: white;
}

.service-link .material-symbols-outlined {
    font-size: 1rem;
}

.service-card-featured-modern {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

.service-card-featured-modern:hover {
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
}

.service-card-featured-modern .service-icon-modern {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary);
}

.service-card-featured-modern:hover .service-icon-modern {
    background: var(--primary);
    color: white;
}

.service-card-featured-modern .service-title-modern {
    color: white;
}

.service-card-featured-modern:hover .service-title-modern {
    color: white;
}

.service-card-featured-modern .service-description-modern {
    color: rgba(255, 255, 255, 0.85);
}

.service-card-featured-modern .service-list-modern li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card-featured-modern .service-list-modern li .material-symbols-outlined {
    color: var(--primary);
}

.service-card-featured-modern .service-number {
    color: rgba(255, 255, 255, 0.12);
}

.insurance-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: white;
}

.insurance-badge-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 700;
}

/* ===================================
   Moving Guide Section
   =================================== */

.moving-guide-section {
    background: var(--background-light);
    padding: 5rem 0;
}

.guide-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.guide-card-do {
    border-top: 4px solid #22c55e;
}

.guide-card-dont {
    border-top: 4px solid #ef4444;
}

.guide-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.guide-card-do .guide-header {
    background: rgba(34, 197, 94, 0.05);
}

.guide-card-dont .guide-header {
    background: rgba(239, 68, 68, 0.05);
}

.guide-header .material-symbols-outlined {
    font-size: 2rem;
}

.guide-card-do .guide-header .material-symbols-outlined {
    color: #22c55e;
}

.guide-card-dont .guide-header .material-symbols-outlined {
    color: #ef4444;
}

.guide-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

.guide-card-do .guide-title {
    color: #166534;
}

.guide-card-dont .guide-title {
    color: #991b1b;
}

.guide-body {
    padding: 2rem;
}

.guide-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guide-item:last-child {
    margin-bottom: 0;
}

.guide-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.guide-card-do .guide-icon {
    color: #22c55e;
}

.guide-card-dont .guide-icon {
    color: #ef4444;
}

.guide-item-title {
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.guide-item-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===================================
   Gallery Section
   =================================== */

.gallery-section {
    background: var(--background-light);
    padding: 5rem 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    display: none;
}

/* Gallery Responsive */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    background: var(--background-light);
    padding: 5rem 0;
}

/* New Bento Grid Layout */
.bento-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 300px;
    gap: 1rem;
    margin-top: 2rem;
}

.bento-box-new {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bento-box-new:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Map Box - Large */
.bento-map-new {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    padding: 0;
}

.bento-map-new iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Address Box */
.bento-address-new {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

/* Hours Box */
.bento-hours-new {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    padding: 1.5rem;
}

/* Contact Box */
.bento-contact-new {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Bento Box Content Styles */
.bento-icon-new {
    width: 45px;
    height: 45px;
    background: rgba(255, 109, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.bento-icon-new .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--primary);
}

.bento-box-new h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.bento-box-new p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.938rem;
}

.bento-box-new a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.bento-box-new a:hover {
    color: var(--primary);
}

.bento-link-new {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--primary);
}

.bento-link-new:hover {
    color: var(--navy);
}

.bento-link-new .material-symbols-outlined {
    font-size: 1.125rem;
}

/* Hours Bento */
.hours-bento-new {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Hide scrollbar */
.hours-bento-new {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hours-bento-new::-webkit-scrollbar {
    display: none;
}

.hours-row-new {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.875rem;
}

.hours-row-new:last-child {
    border-bottom: none;
}

.hours-row-new span:first-child {
    font-weight: 600;
    color: var(--navy);
}

.hours-row-new span:last-child {
    color: var(--text-light);
}

/* Responsive Bento Grid */
@media (max-width: 991px) {
    .bento-grid-new {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
    }

    .bento-map-new {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        height: 300px;
    }

    .bento-address-new {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .bento-hours-new {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .bento-contact-new {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
}

@media (max-width: 767px) {
    .bento-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-map-new,
    .bento-address-new,
    .bento-hours-new,
    .bento-contact-new {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-map-new {
        height: 250px;
    }
}

/* ===================================
   Footer Section
   =================================== */

.footer-section {
    background: var(--navy);
    color: white;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.footer-brand .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary);
}

.footer-brand-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.footer-text {
    color: #cbd5e1;
    font-size: 0.813rem;
    line-height: 1.5;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.footer-copyright {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-credit {
    font-size: 0.813rem;
    color: #94a3b8;
}

.footer-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #ff8533;
    text-decoration: underline;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet and below (991px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 6rem 0;
    }
    
    .about-section,
    .services-section,
    .moving-guide-section,
    .gallery-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .service-card-modern {
        padding: 1.5rem;
    }
    
    .service-title-modern {
        font-size: 1.25rem;
    }
}

/* Mobile devices (767px and below) */
@media (max-width: 767px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Header */
    .header-section {
        padding: 0.5rem 0;
    }
    
    .brand-logo {
        height: 35px;
        width: auto;
    }
    
    .brand-title {
        font-size: 1rem;
    }
    
    .brand-subtitle {
        font-size: 0.625rem;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-phone-numbers {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .hero-phone-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-phone-link .material-symbols-outlined {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.688rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    /* About Section */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-section .row.g-4 {
        --bs-gutter-y: 0.75rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon .material-symbols-outlined {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-text {
        font-size: 0.813rem;
    }
    
    .about-image-caption {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 3rem 0;
    }
    
    .service-card-modern {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card-header {
        margin-bottom: 1rem;
    }
    
    .service-icon-modern {
        width: 44px;
        height: 44px;
    }
    
    .service-icon-modern .material-symbols-outlined {
        font-size: 1.5rem;
    }
    
    .service-number {
        font-size: 1.75rem;
    }
    
    .service-title-modern {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .service-description-modern {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .service-list-modern li {
        font-size: 0.813rem;
        margin-bottom: 0.5rem;
    }
    
    .service-list-modern li .material-symbols-outlined {
        font-size: 1rem;
    }
    
    /* Moving Guide Section */
    .moving-guide-section {
        padding: 3rem 0;
    }
    
    .guide-card {
        margin-bottom: 1.5rem;
    }
    
    .guide-header {
        padding: 1rem;
    }
    
    .guide-title {
        font-size: 1.25rem;
    }
    
    .guide-item {
        padding: 0.875rem;
    }
    
    .guide-item-title {
        font-size: 0.95rem;
    }
    
    .guide-item-text {
        font-size: 0.875rem;
    }
    
    /* Gallery Section */
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 3rem 0;
    }
    
    .bento-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bento-map-new {
        grid-column: 1;
        min-height: 250px;
    }
    
    .bento-box-new {
        padding: 1.5rem;
    }
    
    .bento-box-new h3 {
        font-size: 1.125rem;
    }
    
    .bento-box-new p {
        font-size: 0.9rem;
    }
    
    .hours-row-new {
        font-size: 0.875rem;
    }
    
    /* Footer */
    .footer-section {
        padding: 2rem 0;
    }
    
    .footer-brand-title {
        font-size: 1.25rem;
    }
    
    .footer-text {
        font-size: 0.875rem;
    }
    
    .footer-copyright {
        font-size: 0.813rem;
        text-align: center;
        margin-top: 1rem;
    }
    
    /* General spacing adjustments */
    .mb-5 {
        margin-bottom: 2.5rem !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent overflow from images and media */
    img, iframe, video, embed {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent overflow from all sections */
    section {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent row overflow */
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .row > * {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Small mobile devices (575px and below) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
    }
    
    .hero-phone-link {
        font-size: 0.8rem;
        padding: 0.45rem 0.875rem;
    }
    
    .hero-phone-link .material-symbols-outlined {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card-modern {
        padding: 1.25rem;
    }
    
    .service-title-modern {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .bento-map-new {
        min-height: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 0.75rem;
    }
}

/* Extra small devices (400px and below) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.375rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .service-icon-modern {
        width: 40px;
        height: 40px;
    }
    
    .service-icon-modern .material-symbols-outlined {
        font-size: 1.25rem;
    }
    
    .service-number {
        font-size: 1.5rem;
    }
}
