/* 
   Luxecarryau Stylesheet
   Premium, Elegant, and Responsive Design
*/

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8e735b;
    /* Warm Bronze/Gold */
    --accent-color: #d4af37;
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --light-bg: #f9f7f4;
    --footer-bg: #111111;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Base resets without * */
.global-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.logo-link,
.loader-logo {
    font-family: 'Playfair Display', serif;
}

.base-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

.base-btn {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.italic-serif {
    font-style: italic;
}

.accent-text {
    color: var(--secondary-color);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

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

.loader-logo {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.loader-bar {
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    margin: 0 auto;
    animation: load 2s infinite ease-in-out;
}

@keyframes load {
    0% {
        width: 0;
    }

    50% {
        width: 150px;
    }

    100% {
        width: 0;
    }
}

/* Ad Top Bar */
.ad-top-bar {
    background: var(--light-bg);
    padding: 6px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.ad-top-text {
    font-size: clamp(9px, 2vw, 11px);
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Main Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    flex: 1;
}

.logo-link {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex: 2;
    justify-content: center;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-button {
    padding: 12px 28px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: var(--transition);
    border: 1.5px solid transparent;
}

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

.cta-button.primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.cta-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.header-cta-mobile {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.close-menu {
    display: none;
}

/* Sections General */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 100px 30px;
}

@media screen and (max-width: 768px) {
    .section-container {
        padding: 60px 20px;
    }
}

.section-container.narrow {
    max-width: 800px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 50px;
}

/* Hero Section */
.hero-section {
    background-color: var(--light-bg);
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-eyebrow {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-img {
    border-radius: 4px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Media Bar */
.media-bar {
    padding: 40px 20px;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.media-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.media-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #ccc;
    opacity: 0.7;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

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

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Why Us / Benefits */
.why-us-section {
    background-color: var(--light-bg);
}

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

.benefit-card {
    background: var(--white);
    padding: 50px 40px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

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

@media screen and (max-width: 768px) {
    .benefit-card {
        padding: 30px 20px;
    }
}

.benefit-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-desc {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item.Large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.gallery-cta {
    margin-top: 60px;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    padding: 40px;
    background: var(--light-bg);
    border-radius: 4px;
}

.rating {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
}

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

.author-name {
    font-weight: 700;
    color: var(--primary-color);
}

.verified {
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 600;
}

/* FAQs */
.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--light-text);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Footer Styles */
.main-footer {
    background: var(--footer-bg);
    color: #999;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 30px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 25px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact-list i {
    width: 20px;
    color: var(--secondary-color);
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

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

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

.footer-ad-note {
    border-top: 1px solid #333;
    padding: 30px 0 10px;
    text-align: center;
    font-size: 12px;
}

.footer-disclaimer {
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
}

/* Cookie Popup Refined */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 5%;
    right: 5%;
    width: 90%;
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    padding: 25px;
    z-index: 9999;
    transform: translateY(200%);
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
    border-top: 4px solid var(--secondary-color);
    border-radius: 8px;
    box-sizing: border-box;
    display: block;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: center;
    box-sizing: border-box;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--light-text);
    line-height: 1.4;
}

.cookie-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    box-sizing: border-box;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.cookie-btn.accept:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--light-text);
    border: 1px solid #ddd;
}

.cookie-btn.reject:hover {
    background: #f8f8f8;
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .cookie-popup {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 20px;
    }

    .cookie-content {
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    position: relative;
    padding: 60px 40px;
    overflow-y: auto;
    border-radius: 4px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--light-text);
}

.legal-content h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.legal-content h3 {
    margin: 30px 0 15px;
    color: var(--primary-color);
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--light-text);
}

/* Responsive Media Queries */

/* Tablet */
@media screen and (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

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

    .hero-container,
    .about-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .header-cta-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -75%;
        width: 75%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px;
        gap: 30px;
        z-index: 1100;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

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

    .close-menu {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 2.5rem;
        color: var(--primary-color);
        line-height: 1;
        cursor: pointer;
    }

    .header-cta-mobile {
        display: block;
        margin-top: 20px;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 1050;
    }

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

    /* Close icon for hamburger when active */
    .hamburger.active .bar-1 {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar-2 {
        opacity: 0;
    }

    .hamburger.active .bar-3 {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 40px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .hero-description {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

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

    .about-image-box {
        order: 2;
    }

    .about-img {
        height: auto;
        max-height: 400px;
        width: 100%;
        object-fit: cover;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-actions .cta-button {
        width: 100%;
        text-align: center;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }

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

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

    .gallery-item.Large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-heading {
        font-size: 1rem;
    }
}