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

:root {
    /* Modern 2025 Color Palette */
    --primary-red: #FF3B30;
    --dark-red: #D32F2F;
    --accent-red: #FF6B6B;
    --primary-black: #0A0A0A;
    --secondary-black: #1A1A1A;
    --tertiary-black: #2A2A2A;
    --pure-white: #ffffff;
    --off-white: #F5F7FA;
    --light-gray: #E8EAED;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;

    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #FF3B30 0%, #D32F2F 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--primary-black);
    overflow-x: hidden;
    background: var(--off-white);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    line-height: 1.8;
    color: var(--text-gray);
}

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

/* Modern Navigation with Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255, 59, 48, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: var(--primary-red);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

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

.logo i {
    margin-right: 10px;
    color: var(--primary-red);
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-btn {
    background: var(--gradient-primary);
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(255, 59, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--transition-slow);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 59, 48, 0.4);
}

.cta-btn:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
/* Modern Hero Section with Dynamic Gradient */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 59, 48, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23222" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

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

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.hero-tagline {
    text-align: center;
    margin-bottom: 20px;
}

.hero-main {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    display: block;
}

.hero-sub {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 500;
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-left: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Modern Button Styles */
.btn {
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--pure-white);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    box-shadow: 0 10px 25px rgba(165, 42, 42, 0.4);
}

.btn-secondary {
    background: rgba(255, 59, 48, 0.1);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--pure-white);
}

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

.hero-logo-display {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite, glow-logo 3s ease-in-out infinite alternate;
}

@keyframes glow-logo {
    from {
        filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5)) drop-shadow(0 0 20px rgba(165, 42, 42, 0.3));
    }
    to {
        filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(165, 42, 42, 0.6));
    }
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 59, 48, 0.2);
}

.service-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 16px rgba(255, 59, 48, 0.3);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(255, 59, 48, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: var(--pure-white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 20px;
}

.price-options {
    margin: 20px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.service-duration {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.service-card .btn {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

.service-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
    padding-top: 20px;
}

.service-buttons .btn {
    width: auto;
    flex: 1;
    min-width: 120px;
}

.additional-services {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: rgba(165, 42, 42, 0.1);
    border-radius: 10px;
}

.additional-services h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.service-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #555;
    font-size: 1rem;
}

.service-note i {
    color: var(--primary-red);
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--pure-white);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 59, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    transition: all var(--transition-base);
    position: relative;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    transition: all var(--transition-base);
    display: inline-block;
}

.feature:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(255, 59, 48, 0.4));
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature p {
    color: #ccc;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--pure-white);
    position: relative;
}

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

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.about p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

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

.image-placeholder {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 4rem;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--pure-white);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 59, 48, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.video-container {
    max-width: 900px;
    margin: 40px auto 0;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(165, 42, 42, 0.1), rgba(139, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(165, 42, 42, 0.5);
    border-radius: 20px;
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    opacity: 0.7;
}

.video-placeholder p {
    color: #ccc;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.video-description {
    font-size: 1rem !important;
    color: #999 !important;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 59, 48, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 59, 48, 0.15);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 2px solid rgba(255, 59, 48, 0.15);
    padding-top: 15px;
}

.testimonial-author strong {
    color: #333;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
}

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

.faq-item {
    background: var(--pure-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-left: 4px solid var(--primary-red);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--pure-white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 50%, rgba(255, 59, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
}

.booking-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.booking-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.booking-section p {
    color: #ccc;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 5px;
}

.footer-section p a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: #fff;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-list li a:hover {
    color: #ffd700;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    margin-right: 10px;
    color: #ffd700;
    font-size: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffd700;
    color: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 46, 0.98);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    margin-top: 5px;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block !important;
}

.dropdown-menu li {
    list-style: none;
    margin: 0 !important;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 25px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0,0,0,0.3);
        box-shadow: none;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(33, 33, 33, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-main {
        font-size: 3.5rem;
    }

    .hero-sub {
        font-size: 2rem;
        margin-left: 10px;
    }

    .hero-logo {
        max-width: 350px;
    }

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

    .service-card.featured {
        transform: none;
    }

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

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

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .car-silhouette {
        width: 300px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-main {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.5rem;
        margin-left: 5px;
    }

    .hero-logo {
        max-width: 280px;
    }

    .services h2,
    .why-choose h2,
    .about h2,
    .testimonials h2,
    .faq h2,
    .contact h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 30px 20px;
    }

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Add animation to sections */
.services,
.why-choose,
.about,
.testimonials,
.faq,
.contact {
    animation: fadeIn 0.8s ease-out;
}

/* Staggered animation for grid items */
.service-card,
.testimonial-card,
.faq-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-badge:nth-child(2) { animation-delay: 0.15s; }
.trust-badge:nth-child(3) { animation-delay: 0.2s; }
.trust-badge:nth-child(4) { animation-delay: 0.25s; }
.trust-badge:nth-child(5) { animation-delay: 0.3s; }
.trust-badge:nth-child(6) { animation-delay: 0.35s; }

/* Loading animation for car silhouette */
.car-silhouette {
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(165, 42, 42, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(165, 42, 42, 0.6);
    }
}

/* Related Services */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.related-service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(248, 249, 250, 0.95);
    border: 2px solid rgba(233, 236, 239, 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--secondary-black);
    transition: all var(--transition-base);
}

.related-service-card:hover {
    border-color: var(--primary-red);
    background: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-service-card strong {
    font-size: 1.1rem;
    color: var(--primary-red);
}

.related-service-card .arrow {
    font-size: 1.5rem;
    color: var(--primary-red);
}

/* Service Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.area-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(248, 249, 250, 0.95);
    border: 2px solid rgba(233, 236, 239, 0.8);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--secondary-black);
    transition: all var(--transition-base);
}

.area-card:hover {
    border-color: var(--primary-red);
    background: var(--pure-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.area-card i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.area-card strong {
    font-size: 1rem;
    color: #333;
}

/* Upsell/Downsell Box */
.service-upsell {
    background: linear-gradient(135deg, rgba(165, 42, 42, 0.05), rgba(220, 20, 60, 0.05));
    border-left: 4px solid var(--primary-red);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.service-upsell p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.service-upsell a {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: underline;
}

.service-upsell a:hover {
    color: var(--dark-red);
}

/* Trust Signals & Badges */
.trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px;
    margin: 60px 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 59, 48, 0.2);
}

.trust-badge i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.trust-badge h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.trust-badge p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.guarantee-box {
    background: var(--gradient-primary);
    color: var(--pure-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    box-shadow: 0 12px 40px rgba(255, 59, 48, 0.25);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: guaranteeGlow 8s ease-in-out infinite;
}

@keyframes guaranteeGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20%, -20%); }
}

.guarantee-box h2 {
    color: var(--pure-white);
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.guarantee-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.guarantee-box ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    z-index: 1;
}

.guarantee-box ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ffd700;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(233, 236, 239, 0.8);
    transition: all var(--transition-base);
}

.stat-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 10px;
}

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

.certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
    padding: 40px 20px;
    background: var(--off-white);
    border-radius: 10px;
    margin: 40px 0;
}

.certification-badge {
    text-align: center;
    padding: 20px;
}

.certification-badge i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.certification-badge p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-top: 10px;
}

.experience-banner {
    background: var(--primary-black);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.experience-banner span {
    color: var(--primary-red);
    font-weight: 900;
}

@media (max-width: 768px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }

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

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

    .guarantee-box {
        padding: 30px 20px;
    }
}

/* Mobile-First Touch Optimizations */
@media (max-width: 768px) {
    /* Ensure minimum 48x48px touch targets on mobile */
    .btn {
        min-height: 48px;
        min-width: 48px;
        padding: 16px 24px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-large {
        min-height: 48px;
        padding: 16px 32px;
    }
    
    /* Navigation touch targets */
    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .hamburger {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Service card buttons on mobile */
    .service-card .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }
    
    .service-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .service-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Footer links touch targets */
    .footer-list li a {
        display: block;
        padding: 12px 0;
        min-height: 44px;
        font-size: 16px;
    }
    
    /* Related service cards */
    .related-service-card {
        min-height: 60px;
        padding: 16px;
    }
    
    .area-card {
        min-height: 80px;
        padding: 16px;
    }
    
    /* Base font size for readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Ensure text remains readable */
    p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Headings scale appropriately */
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    /* Form inputs and select elements */
    input,
    select,
    textarea {
        min-height: 48px;
        font-size: 16px;
        padding: 12px;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .btn-primary:hover {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .btn:active {
        opacity: 0.8;
        transform: scale(0.98);
    }
    
    .service-card:active {
        opacity: 0.95;
    }
    
    /* Improve tap response */
    a,
    button {
        -webkit-tap-highlight-color: rgba(165, 42, 42, 0.2);
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile */
    * {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Disable complex animations */
    .hero-logo {
        animation: none;
    }
    
    .car-silhouette {
        animation: none;
    }
    
    /* Optimize scrolling */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    /* Prevent layout shift on orientation change */
    @viewport {
        width: device-width;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
    /* Optimize for retina but maintain performance */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Landscape mobile optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 20px 40px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-main {
        font-size: 3rem;
    }
    
    .hero-sub {
        font-size: 2rem;
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}
