/* ========================================
   Modern Car Rental Website - Trang
   Version 2.0
   ======================================== */

:root {
    /* สีหลักใหม่ - โทนแดงเบอร์กันดีและทอง */
    --primary-color: #f80606;
    --primary-dark: #9d1818;
    --primary-light: #cc3836;
    --secondary-color: #F7B731;
    --accent-color: #FDB813;

    /* สีเนื้อหา */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;

    /* สีพื้นหลัง */
    --bg-white: #ffffff;
    --bg-light: #f7eda1;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;

    /* เงา */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Spacing */
    --section-padding: 80px 0;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Base Styles
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Prompt', 'Noto Sans Thai', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ========================================
   Header - Modern Floating Style
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    /*background: rgba(255, 255, 255, 0.95);*/
    background: var(--secondary-color);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    /*background: rgba(255, 255, 255, 0.98);*/
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    /*gap: 12px;*/
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.scrolled .logo img {
    height: 38px;
}

.logo-text {
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 18px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(139, 47, 47, 0.1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.header-btn-phone {
    background: var(--primary-color);
    color: white;
}

.header-btn-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-btn-line {
    background: #06C755;
    color: white;
}

.header-btn-line:hover {
    background: #05b04c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-btn i {
    font-size: 1rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
    padding: 8px;
    transition: var(--transition);
}

.mobile-nav-toggle:hover {
    color: var(--primary-color);
}

/* ========================================
   Hero Section - Modern Design (Revised for Full Width)
   ======================================== */

.hero-modern {
    /*padding-top: 100px;*/
    padding-bottom: 60px;
    /*background-color: var(--bg-light);*/
    display: flex;
    flex-direction: column;
    /* จัดเรียงองค์ประกอบย่อยเป็นคอลัมน์ */
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    min-height: auto;
}

/* บล็อกสำหรับรูปภาพเต็มความกว้าง */
.hero-image-full-block {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    /* เว้นระยะห่างระหว่างบล็อกรูปภาพกับเนื้อหาข้อความ */
}

/* รูปภาพหลัก - 1. ภาพหัวเว็บไซต์ขยายเต็มความกว้าง ไม่ต้องมีสไตล์ */
.hero-main-image-full {
    width: 100%;
    height: auto;
    display: block;
    /* ลบสไตล์ตกแต่งที่เคยมี */
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: 100%;
    object-fit: cover;
}

/* 2. คอนเทนเนอร์สำหรับปุ่มโทร/แชท ใต้ภาพ */
.hero-cta-buttons-container {
    padding: 15px 20px;
    background-color: var(--bg-white);
    /* ใส่พื้นหลังสีขาวให้ปุ่มดูชัดเจน */
    border-top: 1px solid var(--bg-gray);
    box-shadow: var(--shadow-sm);
}

.hero-cta-under-image {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content-text {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.cta-primary {
    background: var(--primary-color);
    color: white;
}

.cta-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-secondary {
    background: #06C755;
    /* LINE color */
    color: white;
}

.cta-secondary:hover {
    background: #05b04c;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--bg-gray);
    box-shadow: var(--shadow-sm);
}

.feature-badge i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* ========================================
   Section Styles
   ======================================== */

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.section-heading {
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.about-section {
    background: var(--bg-light);
}

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

.about-content {
    background: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.about-text h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-icon-wrapper i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-box:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: rotate(-5deg) scale(1.1);
}

.feature-box:hover .feature-icon-wrapper i {
    color: white;
}

.feature-box h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   Cars Section
   ======================================== */

.cars-section {
    background: white;
}

.car-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.car-item {
    background: white;
    border-radius: var(--radius-xl);
    /*overflow: hidden;*/
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.car-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.car-image-box {
    position: relative;
    /*height: 220px;*/
    overflow: hidden;
}

.car-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
/*
.car-item:hover .car-image-box img {
    transform: scale(1.1);
}
*/
.car-badge-group {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.car-badge {
    padding: 6px 16px;
    background: white;
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.car-badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.car-info {
    padding: 25px;
}

.car-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.car-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.car-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--bg-gray);
}

.car-price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.car-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.currency {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.car-actions {
    display: flex;
    gap: 8px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-line-car {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #06C755;
    color: white;
    border-radius: var(--radius-lg);
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-line-car:hover {
    background: #05b04c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.services-section {
    background: var(--bg-light);
}

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

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-item.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: white;
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.service-item.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-item.featured .service-icon i {
    color: white;
}

.service-item:hover .service-icon {
    transform: rotate(-5deg) scale(1.1);
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-item.featured h3,
.service-item.featured p,
.service-item.featured .service-features li {
    color: white;
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.service-item.featured .service-features i {
    color: white;
}

/* ========================================
   Why Choose Section
   ======================================== */

.why-choose-section {
    background: white;
}

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

.why-choose-text h2 {
    margin-bottom: 20px;
}

.why-choose-text>p {
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.why-content h4 {
    margin-bottom: 8px;
}

.why-content p {
    margin-bottom: 0;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 30px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.contact-section {
    background: var(--bg-light);
}

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

.contact-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.contact-icon-modern i {
    font-size: 32px;
    color: var(--primary-color);
}

.contact-card-modern:hover .contact-icon-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: rotate(-10deg) scale(1.1);
}

.contact-card-modern:hover .contact-icon-modern i {
    color: white;
}

.contact-icon-line {
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.1), rgba(5, 176, 76, 0.1));
}

.contact-icon-line i {
    color: #06C755;
}

.contact-icon-facebook {
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.1), rgba(59, 89, 152, 0.2));
}

.contact-icon-facebook i {
    color: #3b5998;
}

.contact-icon-location {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.2));
}

.contact-icon-location i {
    color: var(--accent-color);
}

.contact-card-modern h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-card-modern p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-contact-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    color: white;
}

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

.btn-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-line {
    background: #06C755;
}

.btn-line:hover {
    background: #05b04c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-facebook {
    background: #3b5998;
}

.btn-facebook:hover {
    background: #2d4373;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-map {
    background: var(--accent-color);
}

.btn-map:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.map-section {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   SEO Content Section
   ======================================== */

.seo-content-section {
    background: white;
    padding: 60px 0;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    margin-bottom: 25px;
    color: var(--text-primary);
}

.seo-content h3 {
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.seo-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.seo-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.seo-content ul,
.seo-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.seo-content li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.cta-text {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius);
    font-size: 1.05rem;
}

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

.footer-modern {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-line {
    background: #06C755;
    color: white;
}

.social-facebook {
    background: #3b5998;
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: white;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-item a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-credit {
    margin-bottom: 0 !important;
}

.footer-credit a {
    color: var(--primary-light);
    font-weight: 600;
}

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

/* ========================================
   Quick Contact Bar
   ======================================== */

.quick-contact-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.quick-btn span {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 2px;
}

.quick-btn i {
    font-size: 1.5rem;
}

.quick-phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.quick-line {
    background: linear-gradient(135deg, #06C755, #05b04c);
}

.quick-messenger {
    background: linear-gradient(135deg, #0084ff, #006ae6);
}

.quick-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Scroll To Top
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 998;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        right: -320px;
        width: 300px;
        height: calc(100vh - 75px);
        background: white;
        box-shadow: var(--shadow-xl);
        padding: 30px 20px;
        transition: var(--transition);
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 15px 20px;
        border-radius: var(--radius);
    }

    .mobile-nav-toggle {
        display: block;
    }

    .header-btn span {
        display: none;
    }

    .header-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        justify-content: center;
    }

    body.menu-open {
        overflow: hidden;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding-top: 75px;
    }

    .hero-cta-under-image {
        flex-direction: column;
    }

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

    .about-content {
        padding: 30px 25px;
    }

    .car-showcase {
        grid-template-columns: 1fr;
    }

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

    .why-choose-stats {
        grid-template-columns: 1fr;
    }

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

    .quick-contact-bar {
        flex-direction: row;
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .scroll-to-top {
        left: 10px;
        bottom: 80px;
    }
}

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

    section {
        padding: 50px 0;
    }

    .hero-content {
        padding: 0 15px 40px;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .about-cta {
        flex-direction: column;
    }

    .btn-gradient,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .car-footer {
        flex-direction: column;
        gap: 15px;
    }

    .car-actions {
        width: 100%;
    }

    .btn-book {
        flex: 1;
    }
}

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

.gallery-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: var(--section-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 47, 47, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
}

/* Gallery Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }

    .gallery-overlay i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}