@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1E3A8A; 
    --secondary-color: #FACC15; 
    --text-dark: #F3F4F6;
    --text-light: #9CA3AF;
    --bg-light: #0F172A; 
    --bg-white: rgba(30, 41, 59, 0.7); 
    --bg-solid: #1E293B;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 15% 50%, rgba(30, 58, 138, 0.15), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(250, 204, 21, 0.05), transparent 25%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

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

.text-center { text-align: center; }

/* Header & Navigation */
header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

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

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* ExtraBold */
    font-size: 2.2rem;
    color: var(--secondary-color);
    line-height: 0.9;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.cta-button {
    background-color: var(--secondary-color);
    color: #0F172A;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
}

.cta-button-outline {
    background-color: transparent;
    color: var(--text-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.cta-button-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.5)), url('images/hero-showroom.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: left;
    padding: 0 2rem;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    color: var(--text-dark);
}

.hero-content h1 {
    color: var(--secondary-color);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    max-width: 800px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    max-width: 600px;
    color: #E5E7EB;
}

/* Sections */
.section-padding {
    padding: 6rem 2rem;
}

.bg-solid {
    background-color: var(--bg-solid);
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

/* About & Trust Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--secondary-color);
}

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

.stat-box {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    background: rgba(30, 41, 59, 0.8);
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion-item:hover {
    border-color: rgba(250, 204, 21, 0.2);
}

.faq-accordion-item.active {
    border-color: var(--secondary-color);
    background: rgba(30, 41, 59, 0.6);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question span i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-chevron {
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.faq-accordion-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-accordion-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 2rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.6);
    background: rgba(30, 41, 59, 0.9);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
}

/* TikTok Section */
.tiktok-section {
    background: radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.8), #0F172A);
}

.tiktok-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    max-width: 100%;
}

.tiktok-grid::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.video-player {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
    background-color: #000;
}

.tiktok-card {
    display: block;
    flex: 0 0 280px;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    background: #000;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 9/16;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: var(--transition);
}

.tiktok-card:hover .video-thumbnail::after {
    background: rgba(0,0,0,0.1);
}

.tiktok-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFF;
    border: 2px solid #FFF;
    transition: var(--transition);
}

.tiktok-card:hover .play-btn {
    transform: scale(1.1);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #0F172A;
}

.tiktok-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

/* Portfolio */
.portfolio-bg {
    background-color: #0B1120;
}

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

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transform: translateY(20px);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s 0.1s ease;
}

.portfolio-overlay p {
    color: var(--text-dark);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s 0.2s ease;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Map & Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-solid);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 600px;
}

.map-container {
    width: 100%;
    height: 100%;
    background-color: #2D3748;
}

.contact-info {
    padding: 4rem;
    background: linear-gradient(135deg, rgba(30,41,59,0.8) 0%, #0F172A 100%);
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* Footer Structure */
footer {
    background-color: #020617;
    color: var(--text-light);
}

.footer-top {
    padding: 5rem 2rem 3rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
}

.footer-col-1 { grid-column: span 4; }
.footer-col-2, .footer-col-3 { grid-column: span 3; }
.footer-col-4 { grid-column: span 2; }



.footer-col-1 p {
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid rgba(243, 244, 246, 0.2);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #0F172A;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: bold;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a, .footer-list p {
    color: rgba(243, 244, 246, 0.8);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--secondary-color);
}

.footer-middle {
    border-top: 1px solid rgba(243, 244, 246, 0.1);
}

.footer-middle-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(243, 244, 246, 0.6);
}

@media (min-width: 768px) {
    .footer-middle-content {
        flex-direction: row;
    }
}

.legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-links a {
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.6);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(243, 244, 246, 0.6);
}

.footer-bottom-content a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-bottom-content a:hover {
    color: #FFF;
}

/* Sound Toggle Button */
.sound-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.sound-toggle:hover {
    background: var(--secondary-color);
    color: #0F172A;
    border-color: var(--secondary-color);
}

/* Reviews / Avis Section */
.reviews-section {
    background: var(--bg-solid);
}

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

.review-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(250, 204, 21, 0.1);
    font-family: serif;
    line-height: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #0F172A;
    flex-shrink: 0;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    color: var(--text-dark);
    font-size: 1rem;
}

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

.review-stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.reviews-score .score-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--secondary-color);
    line-height: 1;
}

.reviews-score .score-details {
    display: flex;
    flex-direction: column;
}

.reviews-score .score-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.reviews-score .score-count {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.google-badge:hover {
    border-color: var(--secondary-color);
    background: rgba(250, 204, 21, 0.1);
}

.google-badge img {
    width: 20px;
    height: 20px;
}

/* JS Animation Classes */
.hidden-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hidden-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Form Styles */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(15, 23, 42, 0.9);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: all 0.3s ease;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-text h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 { grid-column: span 1; }
    .portfolio-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .hero-content h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .contact-info { padding: 2.5rem; }
    .logo-main { font-size: 1.8rem; }
    .nav-links { gap: 1.5rem; }
    .nav-links a { font-size: 0.8rem; }
}

@media (max-width: 768px) {
    /* --- Navigation --- */
    .desktop-only { display: none !important; }
    .mobile-only { display: block; }
    .burger { display: block; }

    header {
        background: #0F172A !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-container { padding: 0.75rem 1.25rem; }

    .nav-links {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        height: 100dvh;
        width: 100vw;
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: #FFF;
        letter-spacing: 2px;
    }

    .burger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); background-color: var(--secondary-color); }
    .burger.toggle .line2 { opacity: 0; }
    .burger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); background-color: var(--secondary-color); }

    /* --- Hero --- */
    .hero {
        background-attachment: scroll !important;
        height: auto;
        min-height: auto;
        padding: 5rem 1.25rem 3rem;
    }
    .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .hero-content p { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-content > div { justify-content: center; }
    .cta-button { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
    .cta-button-outline { padding: 0.75rem 1.5rem; font-size: 0.85rem; }

    /* --- Sections --- */
    .section-title { font-size: clamp(1.6rem, 5vw, 2rem); margin-bottom: 2rem; }
    .section-padding { padding: 3rem 1.25rem; }

    /* --- About / Stats --- */
    .about-text h2 { font-size: 1.6rem; }
    .about-text p { font-size: 1rem; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-box { padding: 1.25rem; }
    .stat-number { font-size: 2.5rem; }
    .stat-label { font-size: 0.75rem; }

    /* --- Services (vertical stack) --- */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        overflow: hidden;
    }
    .service-card {
        flex: none;
        width: 100%;
        padding: 2rem 1.5rem;
    }
    .service-card:hover { transform: none; }
    .service-icon { font-size: 2.5rem; }
    .service-card h3 { font-size: 1.4rem; }

    /* --- Portfolio / Collections (vertical stack) --- */
    .portfolio-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        overflow: hidden;
    }
    .portfolio-item {
        flex: none;
        width: 100%;
        aspect-ratio: 16/10;
    }
    .portfolio-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    .portfolio-overlay h3,
    .portfolio-overlay p {
        transform: translateY(0);
        opacity: 1;
    }
    .portfolio-overlay h3 { font-size: 1.3rem; }
    .portfolio-overlay { padding: 1.5rem; }

    /* --- TikTok --- */
    .tiktok-grid {
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .tiktok-card { flex: 0 0 220px; }
    .tiktok-overlay { padding: 1rem 0.75rem; font-size: 0.85rem; }

    /* --- Contact --- */
    .contact-wrapper {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    .contact-info { padding: 2rem 1.25rem; }
    .contact-info h3 { font-size: 1.5rem !important; }
    .map-container { height: 300px; }
    .info-item { font-size: 0.95rem; gap: 1rem; }
    .icon-box { width: 42px; height: 42px; font-size: 1rem; }

    /* --- FAQ --- */
    .faq-question { padding: 1rem 1.25rem; font-size: 0.95rem; }
    .faq-answer { padding: 0 1.25rem; }
    .faq-accordion-item.active .faq-answer { padding: 0 1.25rem 1rem; }
    .faq-answer p { padding-left: 1.5rem; font-size: 0.9rem; }

    /* --- Reviews --- */
    .reviews-grid { 
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .review-card { 
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 1.5rem; 
    }
    .reviews-summary { flex-direction: column; gap: 1rem; }
    .reviews-score .score-number { font-size: 3rem; }

    /* --- Footer --- */
    .footer-top { padding: 3rem 1.25rem 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 { grid-column: span 1; }
    .footer-col-1 { grid-column: span 2; }

    /* --- Legal page --- */
    .legal-content { padding: 2rem 1.25rem !important; margin: 2rem auto !important; }
    .legal-content h1 { font-size: 1.8rem !important; }
}

/* ===== SMALL PHONES (480px) ===== */
@media (max-width: 480px) {
    .nav-container { padding: 0.6rem 1rem; }
    .logo-main { font-size: 1.5rem; }
    .logo-sub { font-size: 0.7rem; }

    .hero { padding: 4.5rem 1rem 2.5rem; }
    .hero-content h1 { font-size: clamp(1.5rem, 7vw, 2rem); }
    .hero-content p { font-size: 0.9rem; }
    .hero-content > div { flex-direction: column; align-items: stretch; text-align: center; }

    .section-padding { padding: 2.5rem 1rem; }
    .section-title { font-size: clamp(1.4rem, 5vw, 1.7rem); margin-bottom: 1.5rem; }

    .about-text h2 { font-size: 1.35rem; }
    .about-text p { font-size: 0.9rem; }
    .check-list li { font-size: 0.9rem; gap: 0.5rem; }
    .about-stats { gap: 0.75rem; }
    .stat-box { padding: 1rem; border-radius: 12px; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.7rem; }

    .service-card { width: 100%; padding: 1.5rem 1.25rem; }
    .service-icon { font-size: 2rem; margin-bottom: 1rem; }
    .service-card h3 { font-size: 1.2rem; }
    .service-card p { font-size: 0.85rem; }

    .portfolio-item { width: 100%; }

    .tiktok-card { flex: 0 0 200px; }

    .contact-info h3 { font-size: 1.3rem !important; }
    .info-item { font-size: 0.85rem; gap: 0.75rem; margin-bottom: 1rem; }
    .icon-box { width: 38px; height: 38px; font-size: 0.9rem; border-radius: 10px; }
    .map-container { height: 250px; }

    .contact-form input,
    .contact-form textarea { padding: 0.8rem; font-size: 0.85rem; }

    .faq-question { padding: 0.9rem 1rem; font-size: 0.9rem; }
    .faq-answer p { padding-left: 1.25rem; font-size: 0.85rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-col-1 { grid-column: span 1; }
    .footer-top { padding: 2.5rem 1rem 1.5rem; }
    .footer-heading { margin-bottom: 1rem; }
    .footer-middle-content { padding: 1rem; text-align: center; }

    .cta-button { padding: 0.7rem 1.2rem; font-size: 0.8rem; display: block; text-align: center; }
    .cta-button-outline { padding: 0.7rem 1.2rem; font-size: 0.8rem; display: block; text-align: center; }
}

/* ===== VERY SMALL PHONES (360px) ===== */
@media (max-width: 360px) {
    .logo-main { font-size: 1.3rem; }
    .logo-sub { font-size: 0.6rem; }
    .hero { padding: 4rem 0.75rem 2rem; }
    .hero-content h1 { font-size: 1.4rem; }
    .section-padding { padding: 2rem 0.75rem; }
    .section-title { font-size: 1.3rem; }
    .about-stats { grid-template-columns: 1fr; }
    .stat-number { font-size: 1.8rem; }
    .service-card { width: 100%; }
    .portfolio-item { width: 100%; }
    .tiktok-card { flex: 0 0 180px; }
    .contact-info { padding: 1.5rem 1rem; }
    .faq-question { font-size: 0.85rem; padding: 0.75rem; }
}

/* ==========================================================================
   Expert UX/UI Section Light System (Alternate High-End Theme)
   ========================================================================== */
.section-light {
    background-color: #F8FAFC !important; /* Clean, warm off-white (slate-50) */
    color: #334155 !important; /* Slate-700 for highly readable body text */
    position: relative;
}

/* Subtle background accent gradient for light sections to add luxury depth */
.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(30, 58, 138, 0.02), transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(250, 204, 21, 0.02), transparent 40%) !important;
    pointer-events: none;
    z-index: 1;
}

.section-light .container {
    position: relative;
    z-index: 2;
}

/* Headings in Light Sections */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.section-light .section-title {
    color: #0F172A !important; /* Deep Slate-900 for high-contrast typography */
}

/* Gold subtitle styled for white backgrounds to avoid low contrast */
.section-light .subtitle {
    color: #B45309 !important; /* Deep Warm Amber/Gold instead of bright yellow */
}

/* Section Title Underline */
.section-light .section-title::after {
    background-color: #D97706 !important; /* Solid Amber/Gold */
}

/* Body Text overrides */
.section-light p,
.section-light .about-text p {
    color: #475569 !important; /* Slate-600 */
}

/* Check list items */
.section-light .check-list li {
    color: #334155 !important;
}

.section-light .check-list i {
    color: #D97706 !important; /* Deep Amber check icons */
}

/* Premium Floating Stat Boxes in Light Sections */
.section-light .stat-box {
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03) !important;
    color: #334155 !important;
}

.section-light .stat-box:hover {
    transform: translateY(-5px) !important;
    border-color: #D97706 !important;
    background: #FFFFFF !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
}

.section-light .stat-number {
    color: #1E3A8A !important; /* Navy blue for numbers - looks extremely premium and solid! */
}

.section-light .stat-label {
    color: #64748B !important; /* Slate-500 */
}

/* Floating Premium Service Cards in Light Sections */
.section-light .service-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03) !important;
    color: #334155 !important;
}

.section-light .service-card::before {
    background: #D97706 !important; /* Amber border-top line on hover */
}

.section-light .service-card:hover {
    transform: translateY(-10px) !important;
    background: #FFFFFF !important;
    box-shadow: 0 25px 50px -10px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(217, 119, 6, 0.2) !important;
}

.section-light .service-icon {
    color: #D97706 !important; /* Amber instead of yellow icon */
}

.section-light .service-card h3 {
    color: #0F172A !important;
}

.section-light .service-card p {
    color: #475569 !important;
}

/* FAQ Accordion in Light Sections */
.section-light .faq-accordion-item {
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.01) !important;
}

.section-light .faq-accordion-item:hover {
    border-color: rgba(217, 119, 6, 0.3) !important;
}

.section-light .faq-accordion-item.active {
    background: #FFFFFF !important;
    border-color: #1E3A8A !important; /* Primary brand Navy border */
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.05) !important;
}

.section-light .faq-question {
    color: #0F172A !important;
}

.section-light .faq-question span i {
    color: #D97706 !important; /* Amber question icon */
}

.section-light .faq-chevron {
    color: #94A3B8 !important;
}

.section-light .faq-accordion-item.active .faq-chevron {
    color: #1E3A8A !important;
}

.section-light .faq-answer p {
    color: #475569 !important;
}

/* Google Reviews Section in Light Sections */
.section-light .reviews-summary {
    color: #0F172A !important;
}

.section-light .reviews-score .score-number {
    color: #1E3A8A !important; /* Brand Navy score number */
}

.section-light .reviews-score .score-count {
    color: #64748B !important;
}

.section-light .google-badge {
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    color: #334155 !important;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02) !important;
}

.section-light .google-badge:hover {
    border-color: #D97706 !important;
    background: rgba(217, 119, 6, 0.04) !important;
    color: #D97706 !important;
}

.section-light .review-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03) !important;
}

.section-light .review-card:hover {
    border-color: rgba(217, 119, 6, 0.3) !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06) !important;
}

.section-light .review-card::before {
    color: rgba(217, 119, 6, 0.06) !important;
}

.section-light .review-author strong {
    color: #0F172A !important;
}

.section-light .review-author span {
    color: #64748B !important;
}

.section-light .review-stars {
    color: #D97706 !important; /* Star rating gold color */
}

.section-light .review-text {
    color: #475569 !important;
}

/* Contact Wrapper and Map inside Light Section */
.section-light .contact-wrapper {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1) !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
}
