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

:root {
    --primary-color: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fb923c;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #ffffff;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 220px;
    line-height: 1.1;
    white-space: normal;
}

.logo-text p {
    margin: 0;
    font-size: 0.74rem;
    color: #7f8c8d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 220px;
    line-height: 1.2;
    white-space: normal;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

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

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 0.85rem;
    }

    .nav-menu a {
        font-size: 0.92rem;
    }
}

.hamburger,
button.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: 52px;
    height: 52px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    outline: none !important;
    transition: opacity 0.2s ease;
    will-change: transform;
}

.hamburger:focus,
button.hamburger:focus {
    outline: none !important;
}

.hamburger:focus-visible,
button.hamburger:focus-visible {
    outline: 2px solid #ff6b35 !important;
    outline-offset: 2px;
}

.hamburger:hover,
button.hamburger:hover {
    opacity: 0.7;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
}

.hamburger:active,
button.hamburger:active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #0f172a;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    width: 26px;
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    width: 26px;
}

body.nav-open {
    overflow: hidden;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    z-index: 9998;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--text-dark);
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Animated Car - Right Side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.5s both;
    margin-top: -80px;
}

.hero-car-animation {
    position: relative;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-car {
    width: 140%;
    max-width: 1100px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    animation: carSlideInRight 3s ease-out forwards, carFloatSubtle 4s ease-in-out 3s infinite;
}

/* Çok büyük ekranlar için */
@media (min-width: 1400px) {
    .hero-car-animation {
        height: 900px;
    }
    
    .animated-car {
        width: 150%;
        max-width: 1300px;
    }
}

@media (min-width: 1800px) {
    .hero-car-animation {
        height: 1000px;
    }
    
    .animated-car {
        width: 160%;
        max-width: 1500px;
    }
}

@keyframes carSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 40%;
    animation-delay: 1s;
}

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

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

/* Static Service Van - New Design */
.hero-vehicle-static {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-van-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: vanFadeIn 1s ease-out;
}

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

.van-img {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: vanFloat 3s ease-in-out infinite;
}

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

.van-grass {
    position: absolute;
    bottom: -15px;
    left: 10%;
    right: 10%;
    height: 40px;
    background: linear-gradient(180deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    z-index: -1;
}

/* New Hero Content */
.hero-content-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInRight 1s ease-out;
    max-width: 420px;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-content-new {
        max-width: 100%;
        align-items: center;
        text-align: center;
        gap: 1.15rem;
    }

    .hero-title-new {
        font-size: 2rem;
        line-height: 1.2;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-subtitle-new {
        font-size: 0.96rem;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content-new {
        max-width: 100%;
        padding: 0 10px;
        gap: 0.9rem;
    }

    .hero-title-new {
        font-size: 1.85rem;
        line-height: 1.25;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-subtitle-new {
        font-size: 0.86rem;
        max-width: 220px;
        margin: 0 auto;
        text-align: center;
    }
}

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

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0;
}

.hero-title-new .highlight {
    color: var(--primary-color);
}

.hero-subtitle-new {
    font-size: 1.08rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    max-width: 520px;
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
}

.btn-primary-new {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
    width: fit-content;
}

.btn-primary-new:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-large-new {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Trust Badges - Animated Marquee */
.trust-badges-wrapper {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.trust-badges-wrapper:hover .trust-badges {
    animation-play-state: paused;
}

.trust-badges-track {
    width: 100%;
    overflow: hidden;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: fit-content;
    animation: scrollTrustBadges 20s linear infinite;
    will-change: transform;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    background: transparent;
    flex-shrink: 0;
    min-width: 150px;
    height: 80px;
}

.trust-badge:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 0, 0, 0.02);
}

.trust-logo-img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-logo-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.hero-text {
    text-align: left;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1s ease-out;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    font-weight: 800;
}

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

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line.highlight {
    background: linear-gradient(135deg, #ffd700 0%, #fff 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out 0.2s both;
    background-size: 200% auto;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.7;
    animation: slideInLeft 1s ease-out 0.4s both;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.15rem;
    color: white;
    font-weight: 600;
}

.feature i {
    color: #ffd700;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual Section - Removed (using animated car background instead) */

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: iconFloat 4s ease-in-out infinite;
}

.icon-item[data-icon="🔧"] {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-item[data-icon="⚡"] {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.icon-item[data-icon="🛠️"] {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.icon-item::before {
    content: attr(data-icon);
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.icon-text {
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    white-space: nowrap;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

/* Animations */
@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);
    }
}

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

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.section-tag {
    display: inline-block;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: transparent;
    border-radius: 50px;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Services Category (Residential/Commercial) */
.services-category {
    margin-bottom: 4rem;
}

.services-category-commercial {
    margin-top: 5rem;
}

.services-category-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-category-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.services-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.services--cards .services-category {
    margin-bottom: 3rem;
}

.service-card-new {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border-color: #ffcba7;
}

.service-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.service-card-title {
    font-size: 1.2rem;
    margin: 0.25rem 0;
    color: #0f172a;
}

.service-card-text {
    color: #475569;
    line-height: 1.6;
    margin: 0 0 0.3rem 0;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ff6b35;
    font-weight: 700;
    margin-top: auto;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

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

.service-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon-item:hover .service-icon-circle {
    background: rgba(249, 115, 22, 0.1);
    transform: scale(1.1);
}

.service-icon-circle i {
    font-size: 3rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service-icon-item:hover .service-icon-circle i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-icon-circle img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-icon-item:hover .service-icon-circle img {
    transform: scale(1.1);
}

.service-icon-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.service-icon-item:hover .service-icon-label {
    color: var(--primary-color);
}

.services h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services > .container > p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

/* Service Hero Section Styles */
.service-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #ff6b35 100%);
    color: white;
    padding: 120px 20px 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.service-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.feature-item span {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.service-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: block;
}

.service-hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.service-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-buttons .cta-button {
    padding: 18px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.service-buttons .cta-button.primary {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #2c3e50;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.service-buttons .cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.service-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.service-buttons .cta-button.primary:hover {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
}

.service-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Service Details Section */
.service-details {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-details h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
}

.service-details h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 2px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Mobile responsive for problems grid */
@media (max-width: 768px) {
    .problems-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .problem-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        margin: 0;
        padding: 1.5rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .problem-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
        border-color: #ff6b35;
    }
    
    .problem-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-weight: 600;
    }
    
    .problem-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #555;
        margin: 0;
    }
    
    .problem-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #ff6b35;
    }
}

@media (max-width: 480px) {
    .logo-text h2 {
        font-size: 1.2rem;
        max-width: 140px;
        line-height: 1.05;
    }

    .logo-text p {
        font-size: 0.64rem;
        max-width: 140px;
        line-height: 1.15;
    }

    .logo {
        gap: 0.45rem;
    }

    .nav-container {
        padding: 0 8px;
    }

    .back-to-top {
        right: 12px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        width: 48px;
        height: 48px;
    }
    .problems-grid {
        gap: 0.8rem;
        padding: 0.8rem 0;
        margin: 0 -0.3rem;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
    
    .problem-card {
        min-width: 250px;
        padding: 1.2rem;
    }
    
    .problem-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .problem-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .problem-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.problem-card i {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.problem-card:hover i {
    transform: scale(1.1);
    color: #ffd700;
}

.problem-card h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.problem-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: white;
}

.brands-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
}

.brands-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 2px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.brand-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    font-weight: 700;
    color: #2c3e50;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-item:hover::before {
    left: 100%;
}

.brand-item:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

/* Enhanced Booking Section */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.booking-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: white;
    position: relative;
}

.booking-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border-radius: 2px;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-info {
    background: #ff6b35;
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-info h3 {
    color: #ffd700;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-info ul {
    list-style: none;
    padding: 0;
}

.booking-info li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: white;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.booking-info i {
    color: #ffd700;
    font-size: 1.5rem;
    width: 25px;
    text-align: center;
}

/* Calendar Booking Form */
.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    color: #2c3e50;
}

.booking-form h3 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.booking-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 2px;
}

.calendar-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid #e9ecef;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.calendar-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

#currentMonth {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #2c3e50;
    border: 2px solid transparent;
    font-size: 1rem;
}

.calendar-day:hover:not(.header):not(.disabled) {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.calendar-day.selected {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.calendar-day.disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-day.today {
    background: #ffd700;
    color: #2c3e50;
    font-weight: 700;
    border: 2px solid #ff6b35;
}

.calendar-day.other-month {
    color: #adb5bd;
    opacity: 0.7;
}

.calendar-day.header {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: white;
    font-weight: 700;
    cursor: default;
    font-size: 0.9rem;
}

.calendar-day.header:hover {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    transform: none;
}

.time-slots {
    margin-bottom: 2rem;
}

.time-slots h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-slot {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1.2rem;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.time-slot.available {
    background: #28a745;
    color: #fff;
    border-color: #22c55e;
}

.time-slot.available:hover {
    background: #22c55e;
    border-color: #16a34a;
}

.time-slot.unavailable {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
    cursor: not-allowed;
    opacity: 0.9;
}

.time-slot.unavailable:hover {
    background: #ff6b35;
    color: #fff;
}

.time-slot:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.time-slot.selected {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: white;
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.booking-form .form-group {
    margin-bottom: 2rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-form .submit-btn {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.booking-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.booking-form .submit-btn:active {
    transform: translateY(-1px);
}

/* Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.service-modal.show {
    display: block !important;
}

/* Ensure modal is properly hidden by default */
.service-modal:not(.show) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.modal-content {
    background: white !important;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow-y: auto;
    margin: 20px auto;
    position: relative;
    z-index: 2001;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f0f0f0;
    color: #2c3e50;
}

.modal-body {
    padding: 2rem;
}

.service-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-details h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-details p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

.booking-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.calendar-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-nav {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

#currentMonth {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #2c3e50;
}

.calendar-day:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #ff6b35;
    color: white;
}

.calendar-day.disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

.calendar-day.today {
    background: #ffd700;
    color: #2c3e50;
    font-weight: 700;
}

.calendar-day.other-month {
    color: #adb5bd;
}

.calendar-day.header {
    background: #ff6b35;
    color: white;
    font-weight: 700;
    cursor: default;
}

.calendar-day.header:hover {
    background: #ff6b35;
    transform: none;
}

.time-slots {
    margin-bottom: 2rem;
}

.time-slots h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-slot {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-slot:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.time-slot.selected {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.booking-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.booking-form h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking-form .form-group {
    margin-bottom: 1rem;
}

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

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.booking-submit-btn {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

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

@media (max-width: 768px) {
    .features-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 0.5rem 0 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .feature-card {
        min-width: 240px;
        scroll-snap-align: start;
    }
}

.feature-card {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon::before {
    transform: scale(1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-us-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.why-us-icon i {
    font-size: 2.5rem;
    color: white;
}

.why-us-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-us-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Why Us */
@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }
    
    .why-us h2 {
        font-size: 2rem;
    }
    
    .why-us-grid {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 107, 53, 0.3) transparent;
    }
    
    .why-us-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .why-us-grid::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .why-us-grid::-webkit-scrollbar-thumb {
        background-color: rgba(255, 107, 53, 0.3);
        border-radius: 10px;
    }
    
    .why-us-card {
        min-width: 300px;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 2rem 1.5rem;
        transform: translateX(100%);
        opacity: 0;
        animation: slideInFromRight 0.8s ease forwards;
    }
    
    .why-us-card:nth-child(1) {
        animation-delay: 0s;
    }
    
    .why-us-card:nth-child(2) {
        animation-delay: 0.15s;
    }
    
    .why-us-card:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .why-us-card:nth-child(4) {
        animation-delay: 0.45s;
    }
    
    .why-us-card:nth-child(5) {
        animation-delay: 0.6s;
    }
    
    .why-us-card:nth-child(6) {
        animation-delay: 0.75s;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .why-us {
        padding: 50px 0;
    }
    
    .why-us h2 {
        font-size: 1.8rem;
    }
    
    .why-us-grid {
        gap: 1rem;
    }
    
    .why-us-card {
        min-width: 260px;
        max-width: 260px;
        padding: 1.8rem 1.3rem;
    }
    
    .why-us-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-us-icon i {
        font-size: 2rem;
    }
    
    .why-us-card h3 {
        font-size: 1.3rem;
    }
    
    .why-us-card p {
        font-size: 0.95rem;
    }
}

/* Reviews Section */
/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

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

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card::after {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 100px;
    color: #f3f4f6;
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.12);
    border-color: var(--primary-color);
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.25rem;
}

.review-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #f39c12;
    margin-right: 2px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.review-card h4 {
    color: #2c3e50;
    font-weight: 600;
}

/* Mobile responsive for reviews grid */
@media (max-width: 768px) {
    .reviews-grid {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .review-card {
        min-width: 250px;
        max-width: 250px;
        flex-shrink: 0;
        scroll-snap-align: start;
        margin: 0;
        padding: 1.5rem;
    }
    
    .review-card h4 {
        font-size: 1rem;
    }
    
    .review-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        gap: 1rem;
        padding: 0.5rem 0;
        margin: 0 -0.3rem;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
    
    .review-card {
        min-width: 220px;
        max-width: 220px;
        padding: 1.2rem;
    }
    
    .review-card h4 {
        font-size: 0.9rem;
    }
    
    .review-card p {
        font-size: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #ffffff;
}

/* Photo Album Styles for About Section */
.photo-album {
    width: 100%;
    position: relative;
}

.photo-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.3);
}

.album-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.album-photo.active {
    opacity: 1;
}

.photo-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.photo-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}



.office-type {
    text-align: center;
    color: #007bff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address {
    text-align: center;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.location-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.location-features i {
    color: #007bff;
    width: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location {
        padding: 3rem 0;
    }
    
    .location h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .location > .container > p {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
    
    .location-grid {
        gap: 1rem;
        padding: 0.5rem 0;
        margin-top: 1.5rem;
    }
    
    .location-card {
        min-width: 300px;
        margin: 0 0.5rem;
    }
    
    .location-image {
        height: 150px;
    }
    
    .location-content {
        padding: 1.5rem;
    }
    
    .location-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .office-type {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .address {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .location-features {
        gap: 0.6rem;
    }
    
    .location-features span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .location {
        padding: 2rem 0;
    }
    
    .location h2 {
        font-size: 1.8rem;
    }
    
    .location > .container > p {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .location-grid {
        margin-top: 1rem;
    }
    
    .location-card {
        min-width: 280px;
    }
    
    .location-image {
        height: 120px;
    }
    
    .location-content {
        padding: 1rem;
    }
    
    .location-content h3 {
        font-size: 1.3rem;
    }
    
    .office-type {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .address {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .location-features {
        gap: 0.5rem;
    }
    
    .location-features span {
        font-size: 0.75rem;
    }
    
    .photo-album {
        max-width: 300px;
    }
    
    .photo-container {
        height: 200px;
    }
    
    .photo-indicators {
        margin-top: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #ff6b35 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.admin-link {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.admin-link i {
    color: #ffd700;
}

.admin-link-text {
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.admin-link-text:hover {
    color: #ffd700 !important;
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.submit-btn {
    background-color: #ff6b35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #e55a2b;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger,
    button.hamburger {
        display: flex;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-container {
        padding: 0 10px;
        gap: 6px;
    }
    
    .nav-menu {
        display: flex;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        height: calc(100vh - 76px);
        background: #ffffff;
        flex-direction: column;
        padding: calc(1.25rem + env(safe-area-inset-top)) 1.25rem 2rem;
        gap: 0.75rem;
        box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
        border-top: 1px solid #e5e7eb;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .nav-menu a {
        padding: 1rem 1.25rem;
        min-height: 48px;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        font-size: 1rem;
        display: flex;
        align-items: center;
        transition: color 0.2s ease;
        text-decoration: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: transparent !important;
        border: none !important;
        color: #ff6b35;
        font-weight: 600;
        transform: none !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    /* Mobilde araç altta kalsın (order kaldırıldı) */
    .hero-visual {
        margin-top: 2rem;
    }
    
    .hero-car-animation {
        height: 550px;
    }
    
    .animated-car {
        max-width: 800px;
        width: 130%;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        margin-top: 2rem;
        overflow-x: auto;
        padding: 0.5rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .stat-item {
        text-align: center;
        min-width: 120px;
        flex-shrink: 0;
        scroll-snap-align: start;
        transform: translateX(-100%);
        opacity: 0;
        animation: slideInLeft 0.8s ease forwards;
    }
    
    .stat-item:nth-child(1) {
        animation-delay: 0s;
    }
    
    .stat-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .stat-item:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    .floating-icons {
        display: none;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .photo-container {
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    /* Service Page Responsive */
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-image img {
        height: 300px;
    }
    
    .service-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .service-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card {
        padding: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .brand-item {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .calendar-container {
        padding: 1.5rem;
    }
    
    .calendar-day {
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    .time-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .time-slot {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Modal Responsive */
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px auto;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .service-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image img {
        height: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        gap: 3px;
    }
    
    .calendar-day {
        min-height: 35px;
        font-size: 0.9rem;
    }
    
    .time-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .time-slot {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    
    .container {
        padding: 0 15px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Mobile Modal Styles */
    .modal-content {
        width: 98%;
        margin: 5px auto;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .calendar-container {
        padding: 1rem;
    }
    
    .calendar-day {
        min-height: 30px;
        font-size: 0.8rem;
    }
    
    .time-slot {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .booking-form {
        padding: 1rem;
    }
} 

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #ff6b35 100%);
    color: white;
    padding: 120px 20px 80px;
    margin-top: 80px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-content {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.blog-text {
    padding: 2rem;
}

.blog-text h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.blog-text p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e55a2b;
}

/* Active nav link for blog */
.nav-menu a.active {
    color: #ff6b35;
    font-weight: 600;
}

/* Blog - modern cards */
.blog-hero--full {
    position: relative;
    overflow: hidden;
}

.blog-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
    border-color: #ffcba7;
}

.blog-card__image {
    position: relative;
    padding-top: 62%;
    overflow: hidden;
    background: #fff7ed;
}

.blog-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__body {
    padding: 1.4rem 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.blog-card__title {
    font-size: 1.25rem;
    color: #0f172a;
    line-height: 1.35;
}

.blog-card__excerpt {
    color: #475569;
    line-height: 1.6;
}

.blog-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.blog-card__link {
    color: #ff6b35;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card__link i {
    font-size: 0.95rem;
}

.blog-post--full {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.blog-text .post-body {
    color: #1f2937;
    line-height: 1.8;
    font-size: 1.05rem;
}

.pagination-modern {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Service detail refinements */
.service-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.service-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
}

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

.problem-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

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

.brand-item {
    background: #0f172a;
    color: #fff;
    padding: 0.85rem 1rem;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid #1e293b;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Mobile friendly horizontal scrolls */
@media (max-width: 640px) {
    .services-icons-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 0.5rem 0 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .service-icon-item {
        min-width: 150px;
        scroll-snap-align: start;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        padding: 0.85rem 0.5rem;
    }

    .trust-badges-track {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .trust-badges {
        gap: 2.5rem;
        min-width: max-content;
    }

    .problems-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.75rem;
    }

    .problem-card {
        min-width: 240px;
        scroll-snap-align: start;
    }

    .brands-grid {
        display: flex;
        overflow-x: auto;
        gap: 0.75rem;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.75rem;
    }

    .brand-item {
        min-width: 140px;
        scroll-snap-align: start;
    }
}
/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-text {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 20px 60px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 60px 0;
    }
    
    .blog-text {
        padding: 1rem;
    }
    
    .blog-text h3 {
        font-size: 1.2rem;
    }
} 

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Hero Section Mobile Styles */
    .hero {
        padding: 80px 20px 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
        padding: 0.5rem 1rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 1.5rem;
    }
    
    .hero-car-animation {
        height: 500px;
    }
    
    .animated-car {
        max-width: 750px;
        width: 120%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    
    .hero-features {
        margin-bottom: 1.5rem;
        align-items: center;
        gap: 0.8rem;
    }
    
    .feature {
        font-size: 0.95rem;
        gap: 0.6rem;
        padding: 0.5rem 0;
    }
    
    .feature i {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
        border-radius: 25px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.8rem;
        margin-top: 1.5rem;
        overflow-x: auto;
        padding: 0.5rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .stat-item {
        text-align: center;
        min-width: 110px;
        flex-shrink: 0;
        scroll-snap-align: start;
        transform: translateX(-100%);
        opacity: 0;
        animation: slideInLeft 0.8s ease forwards;
        padding: 1rem 0.8rem;
    }
    
    .stat-item:nth-child(1) {
        animation-delay: 0s;
    }
    
    .stat-item:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .stat-item:nth-child(3) {
        animation-delay: 0.4s;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Location Section Mobile Styles */
    .location {
        padding: 3rem 0;
    }
    
    .location h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .location > .container > p {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
    
    .location-grid {
        gap: 1rem;
        padding: 0.5rem 0;
        margin-top: 1.5rem;
    }
    
    .location-card {
        min-width: 300px;
        margin: 0 0.5rem;
    }
    
    .location-image {
        height: 150px;
    }
    
    .location-content {
        padding: 1.5rem;
    }
    
    .location-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .office-type {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .address {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .location-features {
        gap: 0.6rem;
    }
    
    .location-features span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section Small Mobile Styles */
    .hero {
        padding: 70px 15px 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hero-visual {
        margin-top: 1rem;
    }
    
    .hero-car-animation {
        height: 450px;
    }
    
    .animated-car {
        max-width: 650px;
        width: 120%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-features {
        margin-bottom: 1.2rem;
        gap: 0.6rem;
    }
    
    .feature {
        font-size: 0.9rem;
        gap: 0.5rem;
        padding: 0.4rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        margin-top: 1.2rem;
        gap: 0.6rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.6rem;
        min-width: 95px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Location Section Small Mobile Styles */
    .location {
        padding: 2rem 0;
    }
    
    .location h2 {
        font-size: 1.8rem;
    }
    
    .location > .container > p {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .location-grid {
        margin-top: 1rem;
    }
    
    .location-card {
        min-width: 280px;
    }
    
    .location-image {
        height: 120px;
    }
    
    .location-content {
        padding: 1rem;
    }
    
    .location-content h3 {
        font-size: 1.3rem;
    }
    
    .office-type {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .address {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .location-features {
        gap: 0.5rem;
    }
    
    .location-features span {
        font-size: 0.75rem;
    }
}

/* Schedule Section Styles */
.schedule {
    padding: 5rem 0;
    background: white;
}

.schedule h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule > .container > p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.schedule-feature {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.schedule-feature:hover {
    background: rgba(249, 115, 22, 0.08);
    transform: translateX(5px);
}

.schedule-feature i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.schedule-feature h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.schedule-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.schedule-calendar {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.schedule-calendar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.calendar-preview h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.calendar-mini {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.calendar-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav-mini {
    background: none;
    border: none;
    font-size: 1rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.calendar-nav-mini:hover {
    background: #e9ecef;
    color: #2c3e50;
}

.calendar-header-mini h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.calendar-grid-mini {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-grid-mini .day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-grid-mini .day:hover {
    background: #ff6b35;
    color: #fff;
}

.calendar-grid-mini .day.available {
    background: #28a745;
    color: #fff;
}

.calendar-grid-mini .day.selected {
    background: #ff6b35;
    color: #fff;
}

.calendar-grid-mini .day-header {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
}

.time-slots-preview h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.8rem;
}

.time-slot {
    background: #e9ecef;
    color: #495057;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: #ff6b35;
    color: #fff;
}

.schedule-actions {
    text-align: center;
    margin-top: 2rem;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 0.5rem 1rem;
}

.schedule-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
}

.schedule-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.schedule-btn.secondary {
    background: #fff;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.schedule-btn.secondary:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.schedule-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 8px;
    color: #1976d2;
    font-size: 0.9rem;
    line-height: 1.5;
}

.schedule-note i {
    margin-right: 0.5rem;
    color: #2196f3;
}

.schedule-note strong {
    color: #1565c0;
}

/* Schedule Section Responsive Styles */
@media (max-width: 768px) {
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .schedule-feature {
        padding: 1.2rem;
    }
    
    .schedule-feature i {
        font-size: 1.5rem;
    }
    
    .schedule-feature h3 {
        font-size: 1.1rem;
    }
    
    .schedule-calendar {
        padding: 1.5rem;
    }
    
    .calendar-mini {
        padding: 1rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.6rem;
    }
    
    .schedule-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin: 0 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .schedule {
        padding: 2.5rem 0;
    }
    
    .schedule h2 {
        font-size: 2rem;
    }
    
    .schedule > .container > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .schedule-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .schedule-feature i {
        font-size: 2rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .schedule-btn {
        width: 100%;
        justify-content: center;
        margin: 0 0 0.8rem;
    }
}

/* --- UI Enhancements for Schedule/Calendar and Form --- */
.schedule-calendar {
	border: 1px solid #e9ecef;
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.calendar-header-mini h4 { font-size: 1.15rem; letter-spacing: .2px; }
.calendar-nav-mini { background: #fff; border: 1px solid #e9ecef; color: #2c3e50; }
.calendar-nav-mini:hover { background: #fffbf8; border-color: #ffd3bf; color: #ff6b35; }
.calendar-grid-mini .day { background: #fff; border: 1px solid #eef1f4; color: #4b5563; }
.calendar-grid-mini .day.available { background: #e9f9ef; color: #166534; border-color: #c9f0d6; }
.calendar-grid-mini .day.unavailable { background: #fff2ec; color: #9a3412; border-color: #ffd6c6; cursor: not-allowed; }
.calendar-grid-mini .day.selected { background: #ff6b35; color: #fff; border-color: transparent; }

.time-slots-grid { gap: .75rem; }
.time-slot { border-radius: 10px; border-width: 1px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease; }
.time-slot.available { background: #e9f9ef; color: #14532d; border-color: #c9f0d6; }
.time-slot.available:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.time-slot.unavailable { background: #fff2ec; color: #9a3412; border-color: #ffd6c6; opacity: 1; }
.time-slot.selected { box-shadow: 0 0 0 3px rgba(255,107,53,.25); }

.schedule .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.schedule .form-group { margin-bottom: 1rem; }
.schedule .form-group select,
.schedule .form-group input,
.schedule .form-group textarea {
	width: 100%;
	padding: .9rem 1rem;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	background: #fff;
	font-size: 1rem;
	color: #2c3e50;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.schedule .form-group select:focus,
.schedule .form-group input:focus,
.schedule .form-group textarea:focus { outline: none; border-color: #ff6b35; box-shadow: 0 0 0 3px rgba(255,107,53,.15); background: #fffcfa; }
@media (max-width: 768px) { .schedule .form-row { grid-template-columns: 1fr; } }

.schedule-btn.primary { border: none; border-radius: 10px; padding: 0.9rem 1.4rem; }
.schedule-note { background: #f0f9ff; border: 1px solid #bae6fd; color: #075985; border-radius: 8px; }

/* Responsive Design for New Hero */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-vehicle-static {
        order: 1;
    }

    .hero-content-new {
        order: 2;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-title-new {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle-new {
        font-size: 1rem;
    }

    .van-img {
        max-width: 100%;
        max-height: 250px;
        height: auto;
        width: auto;
    }

    .service-van-image {
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .van-grass {
        height: 20px;
        bottom: -5px;
        left: 10%;
        right: 10%;
    }

    .btn-primary-new {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .trust-badges {
        gap: 4rem;
        animation-duration: 18s;
    }

    .trust-badge {
        min-width: 130px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2rem;
    }

    .hero-subtitle-new {
        font-size: 0.98rem;
        max-width: 320px;
        margin: 0 auto;
    }

    .van-img {
        max-width: 100%;
        max-height: 200px;
        height: auto;
        width: auto;
    }

    .service-van-image {
        max-width: 100%;
        padding: 0 10px;
    }

    .van-grass {
        height: 15px;
        bottom: -3px;
        left: 15%;
        right: 15%;
    }

    .trust-badges {
        gap: 3rem;
        animation-duration: 15s;
    }

    .trust-badge {
        padding: 0.75rem;
        min-width: 110px;
        height: 60px;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #ffffff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0.02) 100%);
    border-radius: 24px;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-light) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.02);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

/* Photo Album Styles for About Section */
.photo-album {
    width: 100%;
    position: relative;
}

.photo-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.3);
}

.album-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.album-photo.active {
    opacity: 1;
}

.photo-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.photo-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Location Section */
.location {
    padding: 5rem 0;
    background: white;
}

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

@media (max-width: 768px) {
    .locations-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 0.5rem 0 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .location-card {
        min-width: 260px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

.location-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    border-color: var(--primary-color);
}

.location-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 0;
}

.location-header i {
    font-size: 1.8rem;
    opacity: 0.95;
}

.location-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.location-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-type {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-address,
.location-phone,
.location-hours {
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.location-address i,
.location-phone i,
.location-hours i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.location-phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.location-phone a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(249, 115, 22, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

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

@media (max-width: 968px) {
    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

@media (max-width: 768px) {
    .services-category {
        margin-bottom: 3rem;
    }

    .services-category-header {
        margin-bottom: 3rem;
    }

    .services-cards-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        padding: 0.25rem 0 0.75rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .service-card-new {
        min-width: 230px;
        max-width: 260px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .services-category-title {
        font-size: 1.75rem;
    }

    .services-category-description {
        font-size: 1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .photo-container {
        height: 300px;
    }

    .image-placeholder {
        height: 300px;
        font-size: 4rem;
    }

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}