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

:root {
    --primary-orange: #FF6B35;
    --dark-orange: #E85A2A;
    --light-orange: #FF8555;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --light-gray: #FFFFFF;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--white);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-black {
    color: var(--black) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-shadow {
    text-shadow: 1px 1px 2px black;
}

.text-shadow-white {
    text-shadow: 1px 1px 2px var(--white);
}

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

section {
    padding: 100px 0;
}

.site-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url('/img/logo.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

[x-cloak] {
    display: none !important;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-orange);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #F5F5F5;
    /* backdrop-filter: blur(10px); */
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo img {
    height: 100px;
    width: auto;
    margin-top: -25px;
    margin-bottom: -25px;
    margin-left: -22px;
    margin-right: -15px;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: color 0.3s ease;
    color: var(--black);
}

.logo:hover .logo-text {
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

/* Profile & Utility Styles */
.profile-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-gray);
    color: var(--white);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.profile-icon-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    border-color: var(--white);
}

.profile-icon-btn svg {
    width: 24px;
    height: 24px;
}

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary, .btn-secondary, .service-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary, .service-book-btn {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover, .service-book-btn:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    transition: opacity 0.6s ease;
    will-change: transform;
    background-image: url('../img/home-background-mobile-light.jpeg');
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.2) 0%,
        rgba(10,10,10,0.7) 60%,
        rgba(10,10,10,1) 100%
    );
    z-index: 2;
}

.hero-title-container {
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    margin-top: -4em;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    text-shadow: 1px 1px 2px black;
}

.hero-description {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-icons {
    display: flex;
    gap: 2px;
    font-size: 18px;
}

.stat-item p {
    color: var(--light-gray);
    font-size: 14px;
}

.hero-image {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    position: absolute;
    background-color: var(--white);
    color: var(--black);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Call Us Button with Phone Number */
.call-us-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-number {
    font-size: 14px;
    color: var(--light-gray);
    margin-top: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.phone-number:hover {
    color: var(--primary-orange);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--light-gray);
    line-height: 1.7;
}

/* ===================================
   Tires Section
   =================================== */
.tires-section {
    background-color: var(--dark-gray);
}

.tire-brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tire-category {
    background-color: var(--medium-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tire-category:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    background-color: var(--dark-gray);
}

.tire-category h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.tire-category p {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.6;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.brand-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.brand-wall img {
    max-width: 150px;
    height: auto;
    transition: all 0.3s ease;
    animation: brandFade 1s ease forwards;
}
/* ===================================
   Services Section
   =================================== */
.services-section {
    background-color: var(--black);
}

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

.service-card {
    background-color: var(--dark-gray);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.service-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    pointer-events: none;
}

.service-description {
    color: var(--light-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 20px 20px 15px;
}

.service-features {
    list-style: none;
    margin: 0 20px 20px;
    padding: 0;
    flex-grow: 1;
}

.service-features li {
    color: var(--light-gray);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 5px;
}

.service-button-container {
    padding: 0 20px 20px;
    margin-top: auto;
}

.service-book-btn {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Booking CTA with Process Steps
   =================================== */
.booking-cta {
    background: linear-gradient(135deg, #2e1b13, #2f1a13);
    padding: 60px;
    border-radius: 30px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content h3 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.booking-cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-orange);
    flex-shrink: 0;
}

.booking-cta .btn-primary:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Process Steps inside Booking CTA */
.booking-cta .process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.booking-cta .process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    /* backdrop-filter: blur(10px); */
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.booking-cta .process-step:hover {
    transform: translateY(-5px);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.booking-cta .step-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
}

.booking-cta .step-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.booking-cta .step-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.booking-cta .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-cta .step-arrow svg {
    animation: arrowPulse 2s infinite;
    stroke: var(--white);
}

/* Payment Icons */
.booking-cta .payment-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.booking-cta .payment-icon {
    height: 25px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    padding: 3px 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.booking-cta .payment-icon:hover {
    transform: scale(1.1);
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background-color: var(--dark-gray);
}

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

.about-description {
    color: var(--light-gray);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-block {
    margin: 32px 0 40px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--primary-orange);
    border-radius: 0 8px 8px 0;
}

.mission-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mission-text {
    color: var(--light-gray);
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.about-features {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.feature-item p {
    color: var(--light-gray);
    font-size: 14px;
}

.about-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-card {
    background: linear-gradient(135deg, var(--medium-gray), var(--dark-gray));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--primary-orange);
    transform: translateX(10px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.about-card p {
    color: var(--light-gray);
    font-size: 14px;
}

/* About Section Contact Styles */
.about-contact-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.about-contact-container .btn-secondary {
    margin-bottom: 10px;
}

.contact-info {
    font-size: 14px;
    color: var(--light-gray);
    margin-top: 3px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.contact-info.phone {
    margin-top: 2px;
    font-size: 13px;
}

.contact-info:hover {
    color: var(--primary-orange);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews-section {
    background-color: var(--black);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background-color: var(--dark-gray);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.review-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.review-text {
    color: var(--light-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 3px;
}

.author-title {
    font-size: 14px;
    color: var(--light-gray);
}

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

.summary-card {
    background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.summary-number {
    font-size: 48px;
    color: var(--primary-orange);
    font-weight: 800;
    margin-bottom: 10px;
}

.summary-label {
    font-size: 16px;
    color: var(--light-gray);
    margin-bottom: 10px;
}

.summary-stars {
    font-size: 20px;
}

/* ===================================
   Album Section
   =================================== */
.album-section {
    background-color: var(--black);
}

.album-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    margin: 0 auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) rgba(255, 255, 255, 0.1);
}

.album-carousel::-webkit-scrollbar {
    height: 8px;
}

.album-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.album-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

.album-carousel-track {
    display: flex;
    width: max-content;
    animation: album-scroll 40s linear infinite;
}

.album-carousel-track:hover {
    animation-play-state: paused;
}

.album-carousel-track img {
    flex-shrink: 0;
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 20px;
    cursor: pointer;
}

.album-carousel-track img:hover {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

@keyframes album-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Album image modal */
.album-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.album-modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
}

.album-modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.album-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-orange);
}

.album-modal-img {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: rgba(26, 26, 26, 0.75);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* backdrop-filter: blur(10px); */
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

.footer-description {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a, .footer-contact a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
    font-size: 14px;
}

.footer-contact svg {
    color: var(--primary-orange);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* ===================================
   Utility Classes
   =================================== */
.blur-background {
    background-color: rgba(255, 255, 255, 0.75);
    /* backdrop-filter: blur(10px); */
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .logo img {
        height: 75px;
        width: auto;
        margin-top: -25px;
        margin-bottom: -25px;
        margin-left: -22px;
        margin-right: -10px;
    }

    .logo-text {
        font-size: 1rem;
        font-size: large;
    }
    .nav-menu .nav-link {
        color: var(--black);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: color 0.3s ease;
        position: relative;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-text {
        margin-top: 1.5em;
    }

    .hero-description {
        text-shadow: 1px 1px 2px black;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 42px;
    }

    .booking-cta .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-cta .step-arrow {
        margin: 10px 0;
    }
    
    .booking-cta .step-arrow svg {
        animation: arrowPulseVertical 2s infinite;
    }
    
    @keyframes arrowPulseVertical {
        0%, 100% { transform: rotate(90deg) translateX(0); }
        50% { transform: rotate(90deg) translateX(5px); }
    }
}

@media (max-width: 768px) {
    .hero-background {
        background-image: url('../img/home-background-mobile-light.jpeg');
        background-size: 100% 100%;
    }

    .logo img {
        height: 75px;
        width: auto;
        margin-top: -20px;
        margin-bottom: -20px;
    }

    .logo-text {
        color: var(--black);
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--dark-gray);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 30px 0;
        align-items: center;
    }

    .nav-link {
        color: var(--white);
    }

    .nav-menu .nav-link {
        color: var(--white);
    }

    .nav-menu.active {
        left: 0;
    }

    .desktop-actions {
        display: none;
    }
    
    .mobile-actions {
        display: flex;
    }
    
    .nav-menu.active .desktop-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }
    
    .nav-menu.active .profile-icon-btn {
        width: auto;
        padding: 12px 24px;
        border-radius: 50px;
        gap: 10px;
    }
    
    .nav-menu.active .profile-icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-text {
        margin-top: 1.5em;
    }

    .hero-description {
        font-size: 18px;
        text-shadow: 1px 1px 2px black;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .call-us-container {
        width: 100%;
    }
    
    .phone-number {
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    .book-cta-link-home {
        margin-left: 13em;
    }

    .booking-cta {
        padding: 40px 30px;
        flex-direction: column;
        text-align: center;
    }

    .cta-content h3 {
        font-size: 28px;
    }
    
    .booking-cta .process-step {
        padding: 25px 15px;
    }
    
    .booking-cta .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .booking-cta .step-title {
        font-size: 18px;
    }
    
    .booking-cta .payment-icon {
        height: 20px;
        max-width: 50px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .tire-brands {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-contact-container {
        align-items: center;
        width: 100%;
    }
    
    .contact-info {
        text-align: center;
    }

    .service-image-container {
        height: 180px;
    }
    
    .service-title-overlay {
        font-size: 20px;
        padding: 15px;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        margin-top: 1.5em;
    }

    .hero-description {
        font-size: 14px;
        text-shadow: 1px 1px 2px black;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .book-cta-link-home {
        margin-left: 0;
    }

    .stat-number {
        font-size: 36px;
    }

    .summary-number {
        font-size: 36px;
    }

    .tire-size-with-guide {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 75px;
        width: auto;
        margin-top: -10px;
        margin-bottom: -10px;
        margin-left: -22px;
        margin-right: -18px;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-text {
        margin-top: 1.5em;
    }

    .hero-description {
        font-size: 14px;
        text-shadow: 1px 1px 2px black;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 36px;
    }

    .summary-number {
        font-size: 36px;
    }
}

@media (max-width: 425px) {
    .logo img {
        height: 75px;
        width: auto;
        margin-top: -10px;
        margin-bottom: -10px;
        margin-left: -22px;
        margin-right: -18px;
    }

    .logo-text {
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-text {
        margin-top: 1.5em;
    }

    .hero-description {
        font-size: 14px;
        text-shadow: 1px 1px 2px black;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-large {
        width: 80%;
        justify-content: center;
    }

    .book-cta-link-home {
        margin-left: 35px;
    }

    .stat-number {
        font-size: 36px;
    }

    .summary-number {
        font-size: 36px;
    }
}


@media (max-width: 375px) {
    .logo img {
        height: 75px;
        width: auto;
        margin-top: -10px;
        margin-bottom: -10px;
        margin-left: -18px;
    }

    .logo-text {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-text {
        margin-top: 1em;
    }

    .hero-description {
        font-size: 14px;
        text-shadow: 1px 1px 2px black;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-large {
        width: 80%;
        justify-content: center;
    }

    .book-cta-link-home {
        margin-left: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .summary-number {
        font-size: 36px;
    }
}
