/* Global Styles */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #f5f5f5;
    --text-color: #333;
    --border-color: #e0e0e0;
    --font-primary: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
}

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

.logo a {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Desktop Categories Group (stacked) */
.main-nav .desktop-categories-group {
    position: relative;
}
.main-nav .categories-label {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.main-nav .categories-divider {
    display: none;
}
.main-nav .desktop-categories-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    padding: 10px 0;
}
.main-nav .desktop-categories-group:hover > .desktop-categories-list,
.main-nav .desktop-categories-group.open > .desktop-categories-list {
    display: block;
}
.main-nav .desktop-categories-list li {
    display: block;
    margin: 0;
}
.main-nav .desktop-categories-list a {
    color: #222;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    background: #fff;
    border: none;
    width: 100%;
    display: block;
    box-sizing: border-box;
}
.main-nav .desktop-categories-list a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

/* Desktop Categories Dropdown */
.main-nav .desktop-dropdown {
    position: relative;
}
.main-nav .desktop-subcategories {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    z-index: 100;
}
.main-nav .desktop-dropdown.open > .desktop-subcategories {
    display: block;
}
.main-nav .desktop-subcategories li {
    display: block;
}
.main-nav .desktop-subcategories a {
    color: #222;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.main-nav .desktop-subcategories a:hover {
    background: #f5f5f5;
}
.main-nav .desktop-dropdown > a {
    cursor: pointer;
}

/* Desktop Services Dropdown */
.main-nav .desktop-dropdown {
    position: relative;
}
.main-nav .desktop-services-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    padding: 10px 0;
}
.main-nav li.desktop-dropdown:hover > .desktop-services-list,
.main-nav li.desktop-dropdown.open > .desktop-services-list {
    display: block;
}
.main-nav .desktop-services-list li {
    display: block;
    margin: 0;
}
.main-nav .desktop-services-list a {
    color: #222;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    background: #fff;
    border: none;
    width: 100%;
    display: block;
    box-sizing: border-box;
}
.main-nav .desktop-services-list a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

/* Desktop Designers Dropdown */
.main-nav .desktop-designers-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    padding: 10px 0;
}
.main-nav li.desktop-dropdown:hover > .desktop-designers-list,
.main-nav li.desktop-dropdown.open > .desktop-designers-list {
    display: block;
}
.main-nav .desktop-designers-list li {
    display: block;
    margin: 0;
}
.main-nav .desktop-designers-list a {
    color: #222;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    background: #fff;
    border: none;
    width: 100%;
    display: block;
    box-sizing: border-box;
}
.main-nav .desktop-designers-list a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

/* About Us Section - Bold Design with Larger Text */
.about-us-section {
    width: 100%;
    padding: 120px 0 100px;
    background-color: #f9f9f9;
    overflow: hidden;
}

/* Header with company name and "WHO ARE WE?" */
.about-header {
    text-align: center;
    margin:0 0 60px 0;
    padding: 0 0 0;
}

.about-header h2.who-are-we {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 3px;
    color: #000;
    margin: 0;
}


/* Main content wrapper */
.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* About Us title */
.about-title {
    text-align: center;
    margin-bottom: 50px;
}

.about-title h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    display: inline-block;
    border-bottom: 3px solid #000;
    padding-bottom: 8px;
}

/* Description content */
.about-description {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-description h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.about-description h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    letter-spacing: 1px;
}

.about-description p {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #444;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-section {
        padding: 80px 0 60px;
    }
    
    .about-header {
        padding: 30px 20px 0;
        margin-bottom: 40px;
    }
    
    .about-header h2.who-are-we {
        font-size: 42px;
    }
    
    .about-title h2 {
        font-size: 34px;
    }
    
    .about-description {
        padding: 0 15px;
    }
    
    .about-description h2 {
        font-size: 38px;
        margin-top: 60px;
    }
    
    .about-description h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-description p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 60px 0 40px;
    }
    
    .about-header h2.who-are-we {
        font-size: 36px;
    }
    
    .about-title h2 {
        font-size: 30px;
    }
    
    .about-description h2 {
        font-size: 32px;
        margin-top: 10px;
    }
    
    .about-description h3 {
        font-size: 24px;
    }
    
    .about-description p {
        font-size: 16px;
        text-align: left;
    }
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: #888;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 10px 0;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.dropdown-content a:hover {
    background-color: var(--accent-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mega-menu {
    width: 600px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.mega-column {
    flex: 1;
    padding: 0 10px;
}

.mega-column a {
    margin-bottom: 10px;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.icon-link {
    font-size: 18px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--secondary-color);
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
}

/* Video Hero Banner */
.video-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.video-hero-banner .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

/* Make sure buttons are aligned left */
.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: none;
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .video-hero-banner {
        height: 90vh; /* Slightly shorter on mobile but still covering most of screen */
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
}

/* Consign Banner */
.consign-banner {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

.consign-content {
    max-width: 800px;
    margin: 0 auto;
}

.consign-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.consign-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* New Arrivals Carousel */
.new-arrivals {
    padding: 80px 0;
    text-align: center;
}

.new-arrivals h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.new-arrivals-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    max-width: 1600px;
    margin: 0 auto;
}

.new-arrivals-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 0 20px;
    justify-content: center;
}

.new-arrivals-item {
    min-width: calc(25% - 20px);
    flex: 0 0 auto;
    max-width: 280px;
}

.new-arrivals-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain; /* Changed from 'cover' to 'contain' */
    border-radius: 5px;
    max-height: 280px;
    background-color: #f8f8f8; /* Optional: add background color for padding areas */
}

.new-arrivals-item h3 {
    margin: 10px 0 5px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.new-arrivals-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color-light);
    text-align: left;
}

.new-arrivals-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
}

.new-arrivals-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.new-arrivals-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.new-arrivals-control:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 992px) {
    .new-arrivals-item {
        min-width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .new-arrivals-item {
        min-width: calc(50% - 10px);
        max-width: 48%;
    }
    
    .new-arrivals-item img {
        max-height: 200px;
    }
    
    .new-arrivals-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .new-arrivals-track {
        gap: 10px;
        padding: 0 5px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .new-arrivals-item {
        min-width: calc(50% - 5px);
        max-width: 48%;
    }
    
    .new-arrivals-item img {
        max-height: 160px;
    }
    
    .new-arrivals-track {
        gap: 10px;
        padding: 0 5px;
        justify-content: center;
    }
    
    .new-arrivals-container {
        max-width: 100%;
        padding: 0 5px;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.product-card {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.product-image {
    margin-bottom: 15px;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.view-all {
    margin-top: 40px;
}

/* Consign Info */
.consign-info {
    background-color: #f0f0f0;
    padding: 80px 0;
    text-align: center;
}

.consign-info-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.consign-info-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.consign-info-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Mission */
.mission {
    background-color: #333;
    color: var(--secondary-color);
    padding: 80px 0;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.mission-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Live Shopping */
.live-shopping {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f8f8;
}

.live-shopping-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.live-shopping-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.live-shopping-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Live Info Section */
.live-info-section {
    padding: 60px 0;
}

.live-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.live-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.live-intro p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.live-schedule {
    margin-top: 40px;
    text-align: left;
}

.live-schedule h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.schedule-item {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}

.schedule-date .day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.schedule-date .month {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

.schedule-details {
    padding-left: 20px;
}

.schedule-details h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.schedule-details p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #666;
}

.live-how-it-works {
    margin: 80px 0;
    text-align: center;
}

.live-how-it-works h2 {
    font-size: 28px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    padding: 30px 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 14px;
    line-height: 1.6;
}

.live-faqs {
    margin: 80px 0;
}

.live-faqs h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
}

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

.live-social {
    margin: 80px 0;
    text-align: center;
}

.live-social h2 {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.live-social p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-link i {
    font-size: 30px;
}

.social-link span {
    font-size: 16px;
    font-weight: 500;
}

.live-gallery {
    margin: 80px 0;
    text-align: center;
}

.live-gallery h2 {
    font-size: 28px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--secondary-color);
}

.gallery-overlay p {
    margin: 0;
    font-size: 14px;
}

/* Popup Store */
.popup-store {
    padding: 80px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f8f8f8;
}

.popup-content {
    flex: 1;
    padding: 0 40px;
    min-width: 300px;
    order: 2;
}

.popup-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.popup-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

.popup-image {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
    order: 1;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    text-align: center;
}

.reviews h2 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.google-reviews-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.google-logo {
    display: flex;
    align-items: center;
}

.google-logo img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.google-rating {
    display: flex;
    align-items: center;
}

.stars {
    margin-right: 10px;
}

.stars i {
    color: #ffd700;
}

.rating-score {
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
}

.rating-count {
    font-size: 14px;
    color: #666;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

@media (max-width: 992px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.google-review-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-stars {
    margin-bottom: 10px;
}

.review-stars i {
    color: #ffd700;
}

.review-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.review-date {
    font-size: 12px;
    color: #666;
}

.google-reviews-footer {
    padding: 20px;
    text-align: center;
}
/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    margin-bottom: 40px;
    padding: 0 15px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.footer-section ul li a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-section p {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 20px;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.footer-bottom .social-icons {
    margin-left: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--secondary-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-banner p {
    font-size: 14px;
    margin-right: 20px;
}

.accept-cookies {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-cookies:hover {
    background-color: #e0e0e0;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Collection Filters */
.collection-filters {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.filter-options {
    list-style: none;
}

.filter-options li {
    margin-bottom: 10px;
}

.filter-options a {
    font-size: 14px;
    color: #666;
}

.filter-options a:hover,
.filter-options a.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Collection Products */
.collection-products {
    padding: 60px 0;
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.collection-header h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

.collection-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.collection-sort label {
    font-size: 14px;
}

.collection-sort select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.product-info {
    padding: 10px 0;
}

.product-price {
    font-weight: 600;
    margin: 5px 0;
}

.product-condition {
    font-size: 13px;
    color: #666;
}

.product-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-section h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    letter-spacing: 0.5px;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.team-section {
    margin-top: 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
}

/* Consign Section */
.consign-section {
    padding: 60px 0;
}

.consign-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.consign-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.consign-intro p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0 60px;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0 60px;
}

.option-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.option-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.option-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.option-card ul {
    margin-left: 20px;
}

.option-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.consign-form {
    max-width: 800px;
    margin: 0 auto 60px;
}

.consign-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.sell-form {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    width: 100%;
    margin-top: 10px;
}

.consign-faq {
    max-width: 800px;
    margin: 0 auto;
}

.consign-faq h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.7;
}

/* About Story Section with Purple Background */
/* Overall Section Container */
.about-story-section {
    background-color: #451a62; 
    width: 100%;
    padding: 80px 0; 
    margin: 0;
}

/* Inner Container for Text and Image */
.about-story-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start; 
    justify-content: center; 
    
    max-width: 1200px; 
    margin: 0 auto; 

    padding: 0 20px; 
}

/* Text Column */
.about-story-text {
    flex: 1.2; 
    padding-right: 40px;    
    text-align: left;
    padding-top: 0; 
    margin-top: 0; 
}

.about-story-text h1 {
    color: #fff; 
    font-size: 48px; 
    font-weight: 700;
    margin-bottom: 25px; 
    letter-spacing: 1px;
    line-height: 1.2; 
}

.about-story-section h2 {
    color: #fff; 
    text-align: left;
    font-size: 30px;
    margin-bottom: 50px;
} 

.about-story-text h3 {
    color: #fff; 
    font-size: 17px; 
    line-height: 1.8;
    margin-bottom: 15px; 
}

/* .about-story-text p {
    color: #fff; 
    font-size: 17px; 
    line-height: 1.8;
    margin-bottom: 15px; 
} */

.about-story-text i {
    color: #fff;
}

/* Typography enhancements for the About Story section */
.about-story-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 300;
    color:white;    
}

.elegant-text {
    font-style: italic;
    font-weight: 600;
    position: relative;
}

.elegant-text:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
}

.first-word {
    font-weight: 600;
    letter-spacing: 1px;
}

.about-story-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.9;
    margin-bottom: 20px;
    color:white;
}

.text-accent {
    display: inline-block;
    margin-top: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
    color:white;
}

    

/* Image Column */
.about-story-image {
    right:20px;
    flex: 1; 
    min-height: 400px; 
    display: flex; 
    align-items: center;
    justify-content: center;
}

.about-story-image img {
    max-width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover; 
    border-radius: 0; 
    max-height: 550px; 
}

/* Responsive adjustments */
@media (max-width: 992px) { 
    .about-story-container {
        max-width: 90%;     
        padding: 0 15px;
    }
    .about-story-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) { 
    .about-story-container {
        flex-direction: column; 
        align-items: center; 
        padding: 0 20px; 
    }
    
    .about-story-text {
        padding-right: 0; 
        margin-bottom: 30px; 
        width: 100%; 
        text-align: center; 
        flex: auto;     
    }

    .about-story-text h1 {
        font-size: 36px; 
    }
    
    .about-story-image {
        width: 100%; 
        min-height: 250px; 
        flex: auto; 
    }
}

/* Features Section Styles */
.features-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.why-us {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.what-special {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.feature-custom-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-custom-icon {
    transform: scale(1.1);
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .what-special {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .feature-icon {
        height: 70px;
    }
    
    .feature-custom-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icon {
        height: 60px;
    }
    
    .feature-custom-icon {
        width: 60px;
        height: 60px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .mega-menu {
        width: 500px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-container {
        padding: 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .about-us, .popup-store {
        flex-direction: column;
    }
    
    .about-content, .popup-content {
        order: 1;
        text-align: center;
        padding: 0 20px 40px;
    }
    
    .about-image, .popup-image {
        order: 2;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .consign-content h2, .new-arrivals h2, .consign-info-content h2, .mission-content h2, .about-content h2, .popup-content h2, .reviews h2 {
        font-size: 28px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        flex-direction: column;
        padding: 15px;
    }
    
    .cookie-banner p {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .collection-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .process-steps,
    .options-grid {
        flex-direction: column;
    }
    
    .sell-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .schedule-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .schedule-date {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .schedule-details {
        padding-left: 0;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        width: 100%;
    }
    
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* About Us Section Styles index2.html */
 /* About Us */
 .about-us {
    padding: 80px 0;
    text-align: center;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #666;
}


.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    margin-top: 40px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-us-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding: 0 0 0px;
}

.about-us-hero {
    position: relative;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 40px;
}

.about-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:white;
}

.about-us-hero h2 {
    position: relative;
    font-size: 42px;
    font-weight: 700;
    margin-top: 5px;
    letter-spacing: 2px;
    z-index: 1;
    color: black;
}




.features-section {
    padding: 40px 0;
    background-color: #f8f8f8;
    margin-top: 30px;
}

.features-section .section-title h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: black;
    text-align: center;
}

.features-section h3 {
    font-size: 35px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-us-hero {
        height: 400px;
    }
    
    .about-us-hero h2 {
        font-size: 32px;
    }
    
    .about-content {
        padding: 20px 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
}

/* Outer section, ensures it spans full width and has top/bottom padding */
.about-consign-section {
    width: 100%;
    max-width: 100%; /* Ensures it fills available width */
    padding: 80px 0; /* Vertical padding around the section */
    margin: 0;
    /* Optional: Add a subtle background color if you want the section to stand out */
    /* background-color: #f9f9f9; */
}

/* Container for text and image - this is where the main layout magic happens */
.about-consign-container {
    display: flex; /* Enables Flexbox for side-by-side layout */
    flex-direction: row; /* Arranges items in a row (default for flex) */
    align-items: center; /* Vertically centers text and image */
    justify-content: center; /* Centers the content horizontally within its max-width */
                                /* Use space-between if you want the items to push to edges */

    /* Control the overall width of the content block on the page */
    max-width: 1200px; /* Increased for less whitespace on page edges, adjust as needed */
    margin: 0 auto; /* Centers the container on the page */

    /* Reduce internal padding to bring content closer to the container's edges */
    padding: 0 20px; /* A small horizontal padding is good for readability, adjust as needed */
}

/* Text content column */
.about-consign-text {
    flex: 1.2; /* Allows text to take slightly more space than image, adjust ratio */
    min-width: 300px; /* Ensures text doesn't become too narrow */
    padding-right: 40px; /* Add space between text and image for better separation */
                          /* Adjust this value to control how close text is to image */
    text-align: left; /* Ensures text aligns to the left within its column */
}

.about-consign-text h2 {
    font-size: 48px; 
    font-weight: 700;
    margin-bottom: 15px; 
    letter-spacing: -0.5px; 
    line-height: 1.1; 
    color: #333; 
}

.about-consign-text p {
    color: #555; 
    font-size: 18px; 
    line-height: 1.6; 
    margin-bottom: 0; 
    max-width: 550px; 
}

/* Image column */
.about-consign-image {
    flex: 1; 
    min-height: 400px; 
    display: flex; 
    align-items: center;
    justify-content: center;
}

.about-consign-image img {
    max-width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover; 
    border-radius: 0; 
    max-height: 550px; 
}

/* Responsive adjustments */
@media (max-width: 992px) { 
    .about-consign-container {
        flex-direction: column; 
        text-align: center; 
        padding: 0 40px; 
    }

    .about-consign-text {
        padding-right: 0; 
        margin-bottom: 30px; 
        order: 2; 
    }

    .about-consign-text h2 {
        font-size: 36px;    
        text-align: center;
    }

    .about-consign-text p {
        font-size: 16px;
        text-align: center;
    }

    .about-consign-image {
        width: 100%; 
        min-height: auto; 
        margin-bottom: 20px; 
        order: 1; 
    }
}

@media (max-width: 576px) {
    .about-consign-container {
        padding: 0 15px; 
    }

    .about-consign-text h2 {
        font-size: 30px;
    }
}

.simple4step {
    font-size: 25px;
    color: #050505;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Overall Section Container */
.submit-quote-section {
    background-color: white; /* Keep white background */
    width: 100%;
    padding: 80px 0; /* Vertical padding */
    margin: 0;
    color: #000; /* Set a default text color for the section */
    text-align: center; /* Center content horizontally within the section */
}

/* Inner Container for Content (now just the text + button) */
.submit-quote-container {
    display: flex; /* Still using flex for centering, even with one item */
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center items horizontally within the container */
    justify-content: center; /* Center content vertically if container has specific height */
    
    /* To control the overall width of the content area and reduce outer whitespace */
    max-width: 600px; /* Adjust this value to control the width of the text/button block */
    /* Make it narrower than before since there's no image beside it */
    margin: 0 auto; /* Centers the container on the page */
    padding: 0 20px; /* Internal padding for aesthetic spacing */
}

/* Content Area (now the main container for brand name and button) */
.submit-quote-content {
    flex: none; /* No longer a flex item with an image */
    text-align: center; /* Center the content within this div */
    padding-top: 0; /* Remove any previous top padding */
}

/* New style for the brand name */
.submit-quote-content .brand-name {
    font-size: 24px; /* Adjust font size as desired */
    font-weight: 700; /* Make it bold */
    color: #6a0dad; /* Purple color for LUXSAGERY */
    margin-bottom: 20px; /* Space between LUXSAGERY and the button */
    text-transform: uppercase; /* Optional: Make it all caps */
    letter-spacing: 2px; /* Optional: Add some letter spacing */
}


/* The button styling */
.submit-quote-content .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #6a0dad; /* Purple background for the button */
    color: #fff; /* White text for the button */
    border: 2px solid #6a0dad; /* Matching border color */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline from anchor tag */
}

.submit-quote-content .btn:hover {
    background-color: #530a84; /* Slightly darker purple on hover */
    border-color: #530a84; /* Darker border on hover */
    color: #fff;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .submit-quote-container {
        padding: 0 15px; /* Adjust padding for smaller screens */
    }
    .submit-quote-content .brand-name {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .submit-quote-content .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Technology Section Styles */
.technology-section {
    padding: 40px 0 0 0; /* Reduced top padding from 80px to 40px */
    background-color: #451a62;
    color: #fff;
}

.subtitle {
    font-size: 18px;
    color: #fff; /* Changed from purple to white for better visibility */
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.section-title h2 {
    color: white; /* Ensuring title is white on purple background */
    font-size: 36px;
    text-align: left;
    margin-bottom: 50px;
    ;
}

.story-title h2 {
    color: white; /* Ensuring title is white on purple background */
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    ;
}

.section-title h3 {
    color: white; /* Ensuring title is white on purple background */
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.title-underline {
    background-color: rgba(255, 255, 255, 0.3); /* Subtle underline on dark background */
}

.tech-process-container {
    display: flex;
    flex-direction: row-reverse; /* Reverse order to put image on right */
    flex-wrap: wrap;
    gap: 40px;
    align-items: center; /* This centers both image and steps vertically */
}

.tech-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center; /* Center the image within its container */
    justify-content: center; /* Center horizontally as well */
}

.tech-image {
    width: 100%;
    max-width: 500px; /* Optional: limit max width for better proportion */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 110px;
}

.tech-steps-container {
    flex: 1;
    min-width: 300px;
    margin-top: -100px; /* Remove the negative margin that was causing misalignment */
}

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

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #fff; /* White numbers */
    margin-right: 20px;
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff; /* White headings */
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); /* Slightly transparent white for readability */
}

@media (max-width: 992px) {
    .tech-process-container {
        flex-direction: column;
    }
    
    .tech-image-container {
        order: -1; /* Keep image on top for mobile */
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .step-number {
        font-size: 24px;
        width: 45px;
        height: 45px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
}

/* bagaunthencate.html whatsapp button when aT PRICING */
.whatsapp-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #6a0dad;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff; 
}

.whatsapp-button:hover {
    background-color: #25D366; /* WhatsApp green color on hover */
    color: #fff;
}

.whatsapp-button i {
    margin-right: 8px;
}


/* about preorder section */
.about-preorder-section {
    width: 100%;
    max-width: 100%; 
    padding: 80px 0; 
    margin: 0;
}

.about-preorder-container {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.about-preorder-text {
    flex: 1.2; 
    min-width: 300px; 
    padding-right: 40px; 
}

.about-preorder-text h2 {
    font-size: 48px; 
    font-weight: 700;
    margin-bottom: 15px; 
    letter-spacing: -0.5px; 
    line-height: 1.1; 
    color: #333; 
}

.about-preorder-text p {
    color: #555; 
    font-size: 18px; 
    line-height: 1.6; 
    margin-bottom: 0; 
    max-width: 550px; 
}

/* Image column */
.about-preorder-image {
    flex: 1; 
    min-height: 400px; 
    display: flex; 
    align-items: center;
    justify-content: center;
}

.about-preorder-image img {
    max-width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover; 
    border-radius: 0; 
    max-height: 550px; 
}

/* Responsive adjustments */
@media (max-width: 992px) { 
    .about-preorder-container {
        flex-direction: column; 
        text-align: center; 
        padding: 0 40px; 
    }

    .about-preorder-text {
        padding-right: 0; 
        margin-bottom: 30px; 
        order: 2; 
    }

    .about-preorder-text h2 {
        font-size: 36px;    
        text-align: center;
    }

    .about-preorder-text p {
        font-size: 16px;
        text-align: center;
    }

    .about-preorder-image {
        width: 100%; 
        min-height: auto; 
        margin-bottom: 20px; 
        order: 1; 
    }
}

@media (max-width: 576px) {
    .about-preorder-container {
        padding: 0 15px; 
    }

    .about-preorder-text h2 {
        font-size: 30px;
    }
}


/*begauthenticate section */
.about-begauthenticate-section {
    width: 100%;
    max-width: 100%; 
    padding: 60px 0 40px 0; /* Reduced bottom padding from 80px to 40px */
    margin: 0;
}

.about-begauthenticate-container {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 

    max-width: 1200px; 
    margin: 0 auto; 

    padding: 0 20px; 
}

.about-begauthenticate-text {
    flex: 1.2; 
    min-width: 300px; 
    padding-right: 40px; 
}

.about-begauthenticate-text h2 {
    font-size: 48px; 
    font-weight: 700;
    margin-bottom: 15px; 
    letter-spacing: -0.5px; 
    line-height: 1.1; 
    color: #333; 
}

.about-begauthenticate-text p {
    color: #555; 
    font-size: 18px; 
    line-height: 1.6; 
    margin-bottom: 0; 
    max-width: 550px; 
}

/* Image column */
.about-begauthenticate-image {
    flex: 1; 
    min-height: 400px; 
    display: flex; 
    align-items: center;
    justify-content: center;
}

.about-begauthenticate-image img {
    max-width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover; 
    border-radius: 0; 
    max-height: 550px; 
}

/* Responsive adjustments */
@media (max-width: 992px) { 
    .about-begauthenticate-container {
        flex-direction: column; 
        text-align: center; 
        padding: 0 40px; 
    }

    .about-begauthenticate-text {
        padding-right: 0; 
        margin-bottom: 30px; 
        order: 2; 
    }

    .about-begauthenticate-text h2 {
        font-size: 36px;    
        text-align: center;
    }

    .about-begauthenticate-text p {
        font-size: 16px;
        text-align: center;
    }

    .about-begauthenticate-image {
        width: 100%; 
        min-height: auto; 
        margin-bottom: 20px; 
        order: 1; 
    }
}

@media (max-width: 576px) {
    .about-begauthenticate-container {
        padding: 0 15px; 
    }

    .about-begauthenticate-text h2 {
        font-size: 30px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: #333;
    text-align: center;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    width: 350px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    overflow: hidden;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    min-height: 75px;
}

.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #6a0dad;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #6a0dad;
}

.service-btn:hover {
    background-color: transparent;
    color: #6a0dad;
}

/* Responsive Adjustments for Services Section */
@media (max-width: 1200px) {
    .services-container {
        gap: 20px;
    }
    
    .service-card {
        width: 320px;
    }
}

@media (max-width: 992px) {
    .service-card {
        width: 300px;
    }
    
    .service-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .service-card {
        width: 100%;
        max-width: 450px;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-content p {
        min-height: auto;
    }
}

/* Footer Logo */
.footer-logo-img {
    height: 80px;
    width: 80px;
    display: inline-block;
    border-radius: 50%;
    object-fit: contain;
    background-color: #fff;
}

.mobile-lang-option {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 14px;
}

.mobile-lang-option:hover {
    background-color: #f8f9fa;
    color: #8B4513;
}

.mobile-lang-option.active {
    background-color: #8B4513;
    color: white;
}

.mobile-lang-option:last-child {
    border-bottom: none;
}

