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

@font-face {
    font-family: 'yu-mincho-regular';
    src: url('font/yu-mincho-regular.ttf') format('truetype');
}

body {
    font-family: 'Noto Sans JP', 'Yu Mincho', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #333333;
    scroll-padding-top: 100px;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(#333, #33333300);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header .container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-btn,
.line-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-btn:hover {
    transform: scale(1.1);
}

.line-btn:hover {
    transform: scale(1.1);
}

.phone-icon,
.line-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80px;
    height: auto;
}

.logo img {
    width: 80px;
    height: auto;
}

.logo-icon {
    background: #ffffff;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav a.is-current {
    color: #40ACFF !important;
}

.nav a:hover,
.nav a.active {
    color: #40ACFF;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #40ACFF;
}

/* Header Responsive */
@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    
    .nav {
        display: none;
    }
    
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
    }
    
    .mobile-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .mobile-phone:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    .header .container2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    
    .price-sheet-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 4px;
        padding: 0;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    
    .mobile-menu li {
        margin: 20px 0;
    }
    
    .mobile-menu a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .mobile-menu a:hover {
        color: #40ACFF;
    }
}

/* Desktop - Hide mobile elements */
@media (min-width: 769px) {
    .mobile-header-actions {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 26px;
        width: auto;
    }
    
    .mobile-header-actions {
        gap: 15px;
    }
    
    .mobile-phone,
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
    }
    
    .mobile-menu a {
        font-size: 1.3rem;
    }
}

/* Hero Section */
.hero {
    height: 320px;
    position: relative;
    display: flex;
    align-items:end;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    padding-bottom: 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.66);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 13px;
}

.hero-title {
    font-size: 42px;
    font-family: 'yu-mincho-regular', serif;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 13px;
}

.hero-line {
    width: 116px;
    height: 2px;
    background: #ffffff;
    margin: 0 auto;
}

/* Service Sections */
.service-section {
    padding: 100px 0;
    background-color: #333333;
    background-image: url(image/Group\ 173.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.dark-bg {
    color: #ffffff!important;
    background: #6F6E6E!important;
}

.light-bg {
    background: #ffffff;
    color: #333333;
}

/* タイヤの交換・お預かりセクションの背景スタイル */
.service-section.dark-bg {
    background: #333333!important;

    position: relative;
}

.service-section.dark-bg .container {
    position: relative;
    z-index: 2;
}

.section-line {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 16px;
    width: 90px;
    margin: 15px 0 80px 0;
}

.line-horizontal {
    width: 100%;
    height: 1px;
    background: #40ACFF;
}

.line-vertical {
    width: 50px;
    height: 1px;
    background: #40ACFF;
}

/* Service Subsections */
.service-subsection {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 45px;
    align-items: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease;
}

.service-subsection.reverse {
    direction: rtl;
}

.service-subsection.reverse > * {
    direction: ltr;
}

.subsection-image {
    overflow: hidden;
}

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

.subsection-image:hover img {
    transform: scale(1.05)!Important;
}

.subsection-content {
    padding: 20px;
}

.section-title {
    font-size: 32px;
    font-family: "yu-mincho-regular";
    font-style: normal;
}

.subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: #40ACFF;
    margin-bottom: 32px;
    line-height: 1.4;
    font-family: "yu-mincho-regular";
    font-style: normal;
}

.subsection-text {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 4%;
    color: inherit;
}

.back-image1 {
    background-image: url(image/Group\ 1732.png)!important;
    background-size: cover;
    background-repeat: no-repeat;
}

.color-wt {
    color: #fff!important;
}

/* Price Lists */
.price-list {
    margin-top: 80px;
    animation: fadeInUp 1s ease;
}

.price-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 0.8;
    font-family: "yu-mincho-regular";
    color: #40ACFF;
    text-align: left;
    margin-bottom: 8px;
}

.price-underline {
    width: 60px;
    height: 2px;
    background: currentColor;
    margin: 0 auto 40px;
}

.dark-bg .price-underline {
    background: #ffffff;
}

.light-bg .price-underline {
    background: #333333;
}

.price-items {
    max-width: 600px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.1rem;
}

.price-name {
    font-weight: 500;
}

.price-value {
    font-weight: 600;
    color: #40ACFF;
}

.price-divider {
    height: 1px;
    background: #40ACFF;
    margin: 0;
}

.price-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* New Price Tables */
.price-tables {
    display: flex;
    gap: 26px;
    margin-top: 80px;
    animation: fadeInUp 1s ease;
}

.price-sections {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-section-box {
    background: #ffffff;
    border-radius: 0px;
    padding: 16px;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.general-notes {
    margin-top: 10px;
}

.note-row {
    padding: 5px 0;
}

.price-table {
    flex: 1;
    background: #ffffff;
    border-radius: 0px;
    padding: 23px;
    height: fit-content;
}

.table-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #40ACFF;
}

.table-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.service-name {
    font-weight: 400;
    color: #333333;
    font-size: 15px;
    line-height: 1.8;
}

.service-type {
    font-weight: 400;
    color: #333333;
    font-size: 15px;
}

.service-price {
    font-weight: 600;
    color: #40ACFF;
    font-size: 1.1rem;
}

.note-text {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    width: 100%;
    letter-spacing: 0.4px;
    font-weight: 100;
}

/* Section dividers for price table */
.section-divider {
    height: 1px;
    background: #666666;
    margin: 15px 0;
    border-style: dotted;
}

.section-title-row {
    font-weight: 600;
    color: #333333;
    font-size: 18px;
    border-bottom: none;
}

.section-title-row .service-name {
    font-weight: 800;
    color: #333333;
    font-size: 18px;
}

.vehicle-type-row {
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
}

.vehicle-type-row .service-type {
    font-weight: 400;
    color: #333333;
    font-size: 0.95rem;
}

.option-item-row {
    padding: 1px 0;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-item-row .service-name {
    font-weight: 400;
    color: #333333;
    font-size: 0.95rem;
}

.service-note {
    font-size: 0.8rem;
    color: #333;
    font-style: italic;
    padding-left: 0px;
}

.option-subsection {
    margin: 10px 0;
}

.option-title-row {
    padding: 8px 0 5px 0;
    border-bottom: none;
}

.option-title-row .service-name {
    font-weight: 400;
    color: #333333;
    font-size: 0.95rem;
}

.two-column-layout {
    display: flex;
    gap: 20px;
}

.column-left {
    flex: 1;
}

.column-right {
    flex: 1;
} 

.tire-price-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tire-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.tire-service {
    font-weight: 500;
    color: #333333;
    font-size: 0.95rem;
}

.tire-price {
    font-weight: 600;
    color: #40ACFF;
    font-size: 1.1rem;
}

.tire-period {
    font-weight: 500;
    color: #333333;
    font-size: 0.9rem;
}

.tire-period-value {
    font-weight: 500;
    color: #666666;
    font-size: 0.9rem;
} 

.separator-dotted.dark-bg {
    border-bottom: 1px dotted #ccc;
    margin: 5px 0;
    width: 100%;
}

.section-subtitle-row.dark-bg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

.option-item-row.dark-bg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    font-size: 1rem;
    color: #ffffff;
}

.option-item-row.dark-bg .service-type {
    padding-left: 5px;
}

.option-item-row.dark-bg .service-price {
    font-weight: 700;
    color: #ffffff;
} 

.service-note.dark-bg {
    font-size: 0.8rem;
    color: #cccccc;
    font-style: italic;
    padding-left: 20px;
    margin: 5px 0;
} 

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
    display: none !important;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #555;
    border-top: 3px solid #40ACFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.br_hidden {
    display: none!important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Price Sheet Button */
.price-sheet-button-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.price-sheet-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin: 0 auto;
    padding: 1em 2em;
    overflow: hidden;
    border: none;
    border-radius: 0px;
    background-color: #40acff;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.6s ease;
}

.price-sheet-button:hover::before {
    display: block;
    position: absolute;
    top: -50%;
    left: -30%;
    transform: rotate(30deg);
    
    width: 70px;
    height: 100px;
    content: '';
    background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
    animation: shineEffect 2s cubic-bezier(0.01, 0.56, 1, 1) forwards;
}

@keyframes shineEffect {
    0% {
      left: 150%;
    }
    100% {
      left: -200%;
    }
}

.price-sheet-button:hover {
    background-color: #309cef;
    transform: scale(1.05);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-subsection {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-subsection.reverse {
        direction: ltr;
    }
    
    .price-tables {
        flex-direction: column;
        gap: 30px;
    }
    
    .price-sections {
        gap: 15px;
    }
    
    .price-section-box {
        padding: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 200px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .subsection-content {
        padding: 10px;
    }
    
    .price-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .price-table {
        padding: 20px;
    }
    
    .table-row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
} 

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 50px;
    }
    
    .commitment-number {
        font-size: 80px;
    }
    
    .vision-content {
        flex-direction: column;
        text-align: center;
    }
    
    .store-content,
    .company-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .br_hidden {
        display: block!important;
    }
    
    .nav ul {
        gap: 20px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .commitment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-number {
        font-size: 60px;
    }
    
    .vision-image-small img,
    .vision-image-large img {
        width: 100%;
        height: auto;
    }
    
    .store-map img,
    .store-photo img,
    .company-image img {
        width: 100%;
        height: auto;
    }
    
    .footer {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .header {
        padding: 0;
        height: 60px;
    }
    .logo {
        width: 60px;
    }
    
    .logo img {
        height: 60px;
        width: auto;
    }
    

    
    .nav ul {
        gap: 15px;
        font-size: 12px;
    }
    
    .commitment-number {
        font-size: 40px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
} 

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #40ACFF;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.gallery-actions {
    margin-top: 20px;
}

.btn-detail {
    display: inline-block;
    padding: 12px 24px;
    background: #40ACFF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: #ffffff;
    color: #40ACFF;
    transform: translateY(-2px);
} 

.no-image {
    width: 100%;
    height: 300px;
    background: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
} 

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
} 

/* Footer */
.footer {
    background: #1E1E1E;
    padding: 56px 100px 5px 100px;
}



.footer-contact {
    width: 300px;
}

.phone-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.phone-section i {
    width: 17px;
    height: 23px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.phone-number {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    line-height: 50px;
}

.hours-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    align-items: start;
    gap: 8px;
}

.hours-label {
    width: 80px;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.hours-time {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.footer-logo {
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-logo-image {
    width: 70%;
    height: auto;
}

.footer-line {
    width: 140px;
    height: 3px;
    background: #40ACFF;
}

.footer-title {
    font-size: 36px;
    font-family: 'yu-mincho-regular', serif;
    font-weight: 800;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    gap: 69px;
    width: 300px;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item:hover span {
    color: #fff;
}

.nav-item a {
    text-decoration: none;
    color: #fff;
}

.nav-item span {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    width: 60px;
}

.nav-arrow {
    width: 5px;
    height: 11px;
    background: #40ACFF;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Footer Responsive */
@media (max-width: 1400px) {
    .footer-nav {
        gap: 25px;
    }
    
    .nav-column {
        gap: 20px;
    }
    
    .nav-item {
        min-width: 70px;
        padding: 8px 10px;
    }
    
    .nav-item a {
        font-size: 15px;
        gap: 8px;
    }
}

@media (max-width: 1200px) {
    .footer-nav {
        gap: 20px;
    }
    
    .nav-column {
        gap: 15px;
    }
    
    .nav-item {
        min-width: 65px;
        padding: 7px 8px;
    }
    
    .nav-item a {
        font-size: 14px;
        gap: 6px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 50px 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
    .footer-nav {
        gap: 15px;
    }
    
    .nav-column {
        gap: 12px;
    }
    
    .nav-item {
        min-width: 60px;
        padding: 6px 8px;
    }
    
    .nav-item a {
        font-size: 13px;
        gap: 5px;
    }
}

@media (max-width: 900px) {
    .footer {
        padding: 45px 25px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-nav {
        gap: 12px;
    }
    
    .nav-column {
        gap: 10px;
    }
    
    .nav-item {
        min-width: 55px;
        padding: 5px 6px;
    }
    
    .nav-item a {
        font-size: 12px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact {
        width: 100%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .phone-section {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .hours-section {
        gap: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hours-row {
        justify-content: start;
        gap: 10px;
    }
    
    .hours-label {
        width: auto;
        min-width: 80px;
    }
    
    .footer-logo {
        width: 100%;
        max-width: 251px;
    }
    
    .footer-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        width: 100%;
        max-width: 400px;
    }
    
    .nav-column {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .nav-item {
        text-align: center;
        min-width: 80px;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .nav-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-item a {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
        white-space: nowrap;
    }

    .phone-number img.phone-icon {
        height: 15px!important;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 35px 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-nav {
        gap: 25px;
    }
    
    .nav-column {
        gap: 20px;
    }
    
    .nav-item {
        min-width: 75px;
        padding: 7px 10px;
    }
    
    .nav-item a {
        font-size: 13px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .hours-label,
    .hours-time {
        font-size: 16px;
        text-align: left;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-column {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-item {
        padding: 10px 8px;
        min-width: 70px;
    }
    
    .nav-item a {
        font-size: 14px;
        gap: 6px;
    }
} 
