/* ========================================
   ACCENT SIGNATURE TRAVEL - MAIN STYLESHEET
   ======================================== */

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

/* CSS Variables */
:root {
    --gold: #c9a961;
    --dark-gold: #a68645;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --mid-gray: #e8e8e8;
    --text-dark: #2c2c2c;
    --text-mid: #5a5a5a;
    --text-light: #8a8a8a;
    --error-red: #d32f2f;
    --success-green: #388e3c;
}

/* Typography */
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   NAVIGATION
   ======================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

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

nav.scrolled .logo img {
    height: 50px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

nav a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--gold);
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=2000') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 0.2em;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-divider {
    width: 100px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto;
}

.hero-content p {
    font-size: 1rem;
    letter-spacing: 0.25em;
    font-weight: 300;
    text-transform: uppercase;
}

/* About Hero */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=2000') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.about-hero .subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

/* Contact Hero */
.contact-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=2000') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.contact-hero .subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 120px 0;
}

section h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto 80px;
    font-weight: 300;
    line-height: 1.8;
}

.divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto 60px;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy {
    background: var(--light-gray);
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    color: var(--text-mid);
    max-width: 900px;
    margin: 0 auto 80px;
    font-weight: 300;
    line-height: 1.6;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.pillar {
    background: var(--white);
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--mid-gray);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.pillar h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--gold);
    font-weight: 400;
}

.pillar p {
    color: var(--text-mid);
    line-height: 1.9;
    font-weight: 300;
}

/* ========================================
   EXPERIENCES SECTION
   ======================================== */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.experience-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--mid-gray);
    background: var(--white);
}

.experience-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.experience-content {
    padding: 30px;
    background: var(--white);
}

.experience-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 400;
}

.experience-content p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ========================================
   JOURNEYS SECTION
   ======================================== */
.journeys {
    background: var(--light-gray);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.journey-card {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--mid-gray);
    transition: all 0.3s ease;
}

.journey-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.journey-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 400;
}

.journey-meta {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.journey-card p {
    color: var(--text-mid);
    margin-bottom: 25px;
    line-height: 1.9;
    font-weight: 300;
}

.features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--light-gray);
    color: var(--text-mid);
    padding: 8px 20px;
    font-size: 0.85rem;
    border: 1px solid var(--mid-gray);
    font-weight: 300;
}

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

.stat-card {
    background: var(--white);
    padding: 50px;
    text-align: center;
    border: 1px solid var(--mid-gray);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 300;
}

.stat-label {
    color: var(--text-mid);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial {
    background: var(--light-gray);
    padding: 50px 40px;
    position: relative;
    border-left: 3px solid var(--gold);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    line-height: 1.9;
    font-weight: 300;
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ========================================
   CONTACT SECTION (HOME PAGE)
   ======================================== */
.contact {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--mid-gray);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}

.contact-card p {
    color: var(--text-mid);
    font-size: 1.1rem;
    font-weight: 300;
}

.contact-note {
    text-align: center;
    margin-top: 60px;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
}

/* ========================================
   ABOUT PAGE - STORY SECTION
   ======================================== */
.story {
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-mid);
    margin-bottom: 30px;
    font-weight: 300;
}

.highlight-box {
    background: var(--light-gray);
    padding: 50px;
    margin: 60px 0;
    border-left: 4px solid var(--gold);
}

.highlight-box h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-mid);
}

/* ========================================
   ABOUT PAGE - HERITAGE SECTION
   ======================================== */
.heritage {
    background: var(--light-gray);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.heritage-card {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--mid-gray);
    transition: all 0.3s ease;
}

.heritage-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.heritage-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.heritage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 400;
}

.heritage-card p {
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
}

/* ========================================
   ABOUT PAGE - EXPERTISE SECTION
   ======================================== */
.expertise {
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.expertise-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border: 1px solid var(--mid-gray);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.expertise-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 200;
    line-height: 1;
    opacity: 0.9;
}

.expertise-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 400;
}

.expertise-item p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ========================================
   ABOUT PAGE - BRAND CAROUSEL
   ======================================== */
.partnerships {
    background: var(--light-gray);
    text-align: center;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 20px;
}

.brand-card {
    background: var(--white);
    padding: 60px 40px;
    border: 1px solid var(--mid-gray);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.brand-logo {
    max-height: 180px;
    max-width: 100%;
    width: auto;
    margin-bottom: 30px;
    object-fit: contain;
    background: var(--white);
    padding: 20px;
    border-radius: 4px;
}

.brand-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
}

.brand-card p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 400px;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover,
.indicator.active {
    background: var(--gold);
}

/* ========================================
   CONTACT PAGE - FULL FORM
   ======================================== */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* Contact Info */
.contact-info {
    padding: 40px 0;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 300;
}

.contact-info p {
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.info-item {
    margin-bottom: 35px;
    padding: 25px;
    background: var(--light-gray);
    border-left: 4px solid var(--gold);
}

.info-item h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.info-item p {
    color: var(--text-dark);
    margin: 5px 0;
    font-size: 1rem;
}

.info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 60px;
    border: 1px solid var(--mid-gray);
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 300;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
}

.required {
    color: var(--error-red);
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--mid-gray);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-red);
}

.error-message {
    display: none;
    color: var(--error-red);
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 400;
}

.form-group.error .error-message {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    text-transform: none;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-mid);
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 18px 40px;
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    background: transparent;
    color: var(--gold);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Success Message */
.success-message {
    display: none;
    background: var(--success-green);
    color: var(--white);
    padding: 20px 30px;
    margin-bottom: 30px;
    border-radius: 4px;
    text-align: center;
    font-weight: 400;
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    font-weight: 400;
}

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

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

footer p {
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.8;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet & Mobile */
@media (max-width: 968px) {
    .pillars,
    .experiences-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-content h2 {
        font-size: 1.8rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    nav ul {
        gap: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .contact-hero h1,
    .about-hero h1 {
        font-size: 2.5rem;
    }

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

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

/* Mobile Only */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav .container {
        padding: 15px 20px;
    }

    .logo img {
        height: 45px;
    }

    .logo-text {
        display: none;
    }

    nav ul {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 70%;
        max-width: 300px;
        height: 100vh;
        padding: 80px 30px 30px;
        gap: 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .brand-card {
        padding: 40px 30px;
    }

    .brand-logo {
        max-height: 150px;
    }

    .brand-card h3 {
        font-size: 1.5rem;
    }
}
