/*
* LUXAUTO - Luxury Car Selection Template
* Main Stylesheet
*/

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --primary-1: #d4af37;  /* Gold */
    --primary-2: #17263c;  /* Navy Blue */
    --primary-3: #f8f5f0;  /* Cream */
    --primary-4: #9c795b;  /* Bronze */
    --primary-5: #e6e6e6;  /* Platinum */

    /* Shades */
    --primary-1-light: #e2c978;
    --primary-1-dark: #a88a29;
    --primary-2-light: #2d4166;
    --primary-2-dark: #0b1220;
    --primary-3-light: #ffffff;
    --primary-3-dark: #e8e3da;
    --primary-4-light: #b79375;
    --primary-4-dark: #7d6149;
    --primary-5-light: #ffffff;
    --primary-5-dark: #c8c8c8;

    /* Functional */
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --text-dark: #111111;
    --body-bg: #ffffff;
    --section-bg: var(--primary-3);

    /* Sizes */
    --header-height: 90px;
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--body-bg);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-1);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-2);
    margin-bottom: 0.5rem;
}

.section-header h3 {
    color: var(--primary-1);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.btn {
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background-color: var(--primary-1-dark);
    border-color: var(--primary-1-dark);
    color: var(--primary-3-light);
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-2);
}

.navbar-nav .nav-link {
    color: var(--primary-2);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 80%;
}

/* ===== Hero Section ===== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-swiper .swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(23, 38, 60, 0.9), rgba(23, 38, 60, 0.3));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 650px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-3-light);
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-1);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--primary-3);
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-3);
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary-1);
    opacity: 1;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--primary-1);
}

/* ===== About Section ===== */
.about-section {
    padding: var(--section-padding);
    background-color: var(--body-bg);
}

.about-feature {
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.about-feature:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-1);
}

.about-feature .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature i {
    font-size: 2rem;
    color: var(--primary-1);
}

.about-feature h4 {
    margin-bottom: 15px;
    color: var(--primary-2);
}

.about-feature p {
    color: var(--text-light);
}

/* ===== Services Section ===== */
.services-section {
    padding: var(--section-padding);
    background-color: var(--section-bg);
}

.service-card {
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(23, 38, 60, 0), rgba(23, 38, 60, 0.7));
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-2);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.service-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-1);
    font-size: 0.8rem;
}

.service-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-2);
}

/* ===== Features Section ===== */
.features-section {
    padding: var(--section-padding);
    background-color: var(--body-bg);
}

.features-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-2-dark);
    font-size: 1.2rem;
}

.feature-content h4 {
    margin-bottom: 10px;
    color: var(--primary-2);
}

.feature-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* ===== Price Plan Section ===== */
.priceplan-section {
    padding: var(--section-padding);
    background-color: var(--section-bg);
}

.price-card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-bottom: 5px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-bottom: 5px solid var(--primary-1);
    transform: scale(1.05);
    z-index: 1;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--primary-5);
    margin-bottom: 20px;
}

.price-header h4 {
    margin-bottom: 10px;
    color: var(--primary-2);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-1);
    font-family: 'Playfair Display', Georgia, serif;
}

.price-body p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-body ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.price-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.price-body ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-1);
}

/* ===== Team Section ===== */
.team-section {
    padding: var(--section-padding);
    background-color: var(--body-bg);
}

.team-card {
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    transition: transform 0.5s ease;
    width: 100%;
}

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

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
    color: var(--primary-2);
}

.team-info p {
    color: var(--primary-1);
    margin-bottom: 0;
    font-style: italic;
}

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

.reviews-slider {
    padding-bottom: 50px;
    overflow: hidden;
}

.review-card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-1);
    opacity: 0.2;
    margin-bottom: 20px;
}

.review-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.review-author h5 {
    margin-bottom: 0;
    color: var(--primary-2);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
}

/* ===== Core Info Section ===== */
.coreinfo-section {
    padding: var(--section-padding);
    background-color: var(--body-bg);
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.2);
}

.info-card h4 {
    margin-bottom: 15px;
    color: var(--primary-2);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--section-bg);
}

.contact-form-wrapper {
    padding: 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.form-control {
    padding: 15px;
    border: 1px solid var(--primary-5);
    border-radius: 0;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--primary-1);
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--primary-1);
    border-color: var(--primary-1);
}

.contact-info {
    margin-top: 50px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* ===== Blog Section ===== */
.blog-section {
    padding: var(--section-padding);
    background-color: var(--body-bg);
}

.blog-card {
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    transition: transform 0.5s ease;
    width: 100%;
}

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

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    margin-bottom: 15px;
    color: var(--primary-2);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===== Additional Page Styles ===== */
.add-page-section {
    padding: var(--section-padding);
}

.add-page-section:nth-child(even) {
    background-color: var(--section-bg);
}

.add-page-section:nth-child(odd) {
    background-color: var(--body-bg);
}

/* Model Card (additional_page1) */
.model-card, .design-card, .tech-card, .experience-card,
.era-card, .management-card, .event-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 30px;
}

.model-card:hover, .design-card:hover, .tech-card:hover, .experience-card:hover,
.era-card:hover, .management-card:hover, .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.model-image, .design-image, .event-image {
    position: relative;
    overflow: hidden;
}

.model-image img, .design-image img, .event-image img {
    transition: transform 0.5s ease;
    width: 100%;
}

.model-card:hover .model-image img,
.design-card:hover .design-image img,
.event-card:hover .event-image img {
    transform: scale(1.1);
}

.model-content, .design-content, .event-content {
    padding: 20px;
}

.model-content h4, .design-content h4, .event-content h4 {
    color: var(--primary-2);
    margin-bottom: 10px;
}

.model-content p, .design-content p, .event-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Performance Features (additional_page1) */
.performance-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.performance-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.performance-icon i {
    color: var(--primary-2-dark);
    font-size: 1.2rem;
}

.performance-content h4 {
    margin-bottom: 10px;
    color: var(--primary-2);
}

.performance-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Tech Features (additional_page1) */
.tech-wrapper {
    height: 100%;
}

.tech-card {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    margin-bottom: 30px;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.tech-icon i {
    color: var(--primary-1);
    font-size: 1.5rem;
}

.tech-content h4 {
    margin-bottom: 10px;
    color: var(--primary-2);
}

.tech-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Experience Card (additional_page1) */
.experience-card {
    text-align: center;
    padding: 30px;
}

.experience-icon {
    font-size: 2.5rem;
    color: var(--primary-1);
    margin-bottom: 20px;
}

.experience-card h4 {
    margin-bottom: 15px;
    color: var(--primary-2);
}

.experience-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Heritage Content (additional_page2) */
.heritage-item {
    margin-bottom: 25px;
}

.heritage-item h4 {
    color: var(--primary-2);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.heritage-item h4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-1);
}

.heritage-item p {
    color: var(--text-light);
}

/* Restoration Process (additional_page2) */
.restoration-process {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.process-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-1);
    opacity: 0.3;
    margin-right: 20px;
    line-height: 1;
}

.process-content h4 {
    margin-bottom: 10px;
    color: var(--primary-2);
}

.process-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Management Card (additional_page2) */
.management-card {
    text-align: center;
    padding: 30px;
}

.management-icon {
    font-size: 2.5rem;
    color: var(--primary-1);
    margin-bottom: 20px;
}

.management-card h4 {
    margin-bottom: 15px;
    color: var(--primary-2);
}

.management-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== Footer ===== */
.site-footer {
    background-color: var(--primary-2);
    padding: 80px 0 0;
    color: var(--primary-3);
}

.footer-brand h3 {
    color: var(--primary-1);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--primary-3);
}

.footer-links h5, .footer-contact h5 {
    color: var(--primary-1);
    margin-bottom: 20px;
}

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

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

.footer-links ul li a {
    color: var(--primary-3);
    transition: all 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p, .footer-bottom small {
    margin-bottom: 0;
    color: var(--primary-3-dark);
}

/* Space Page */
#space {
    height: calc(100vh - var(--header-height) - 300px);
    min-height: 400px;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== Media Queries ===== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px 0;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 70px 0;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
} 