/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    background: #fff;
}

a {
    text-decoration: none;
}

/* === VARIABLES === */
:root {
    --lux-bg: #f8f6f3;
    --lux-white: #fff;
    --lux-grey: #eae6df;
    --lux-gold: #d4af37;
    --lux-green: #3a5a40;
    --lux-blue: #1a2238;
    --lux-shadow: 0 8px 32px 0 rgba(60, 60, 60, 0.10);
    --lux-glass: rgba(255, 255, 255, 0.55);
}


/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lux-bg) 0%, var(--lux-grey) 100%);
    background-image: url('../images/bg-hero.webp');
    background-size: cover;
    background-position: center;
    background-color: var(--lux-grey);
    /* fallback */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 34, 56, 0.7) 0%, rgba(58, 90, 64, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: var(--lux-white);
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Michroma', 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.highlight {
    color: var(--lux-gold);
    text-shadow: 0 0 20px var(--lux-gold);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    min-width: 160px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lux-gold) 0%, #fffbe6 100%);
    color: var(--lux-blue);
    border: 2px solid var(--lux-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fffbe6 0%, var(--lux-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--lux-white);
    border: 2px solid var(--lux-white);
}

.btn-secondary:hover {
    background: var(--lux-white);
    color: var(--lux-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* === STATS ALWAYS ROW === */
.hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 0 0 auto;
    min-width: 100px;
    padding: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lux-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* === RESPONSIVE FONT SIZE ONLY === */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.1rem;
        max-width: 550px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: 550px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.6rem;
        font-size: 0.95rem;
        min-width: 140px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
        padding: 1.5rem 0;
    }

    .hero-stats {
        gap: 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
        min-width: 130px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 360px) {
    .hero-section {
        min-height: 400px;
    }

    .hero-stats {
        gap: 0;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-width: 120px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.5rem;
    }
}



/* === ABOUT SECTION === */
.about-section {
    padding: 4rem 0 3rem;
    background: var(--lux-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 500px;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lux-blue);
    margin-bottom: 1rem;
    font-family: 'Michroma', 'Poppins', sans-serif;
}

.about-subtitle {
    color: var(--lux-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--lux-green);
}

.feature i {
    color: var(--lux-gold);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* === RESPONSIVE STYLES === */

/* Tablets (landscape & portrait) */
@media (max-width: 1024px) {
    .about-section {
        padding: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-subtitle,
    .about-text p {
        font-size: 1rem;
    }

    .feature {
        font-size: 0.95rem;
    }

    .feature i {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .about-section {
        padding: 3rem 1rem 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 0.95rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .about-features {
        gap: 1rem;
    }

    .feature {
        font-size: 0.9rem;
    }

    .feature i {
        font-size: 0.95rem;
    }
}

/* === WHY CHOOSE US SECTION === */
.why-choose-section {
    padding: 4rem 0;
    background: var(--lux-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lux-blue);
    margin-bottom: 1rem;
    font-family: 'Michroma', 'Poppins', sans-serif;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 600px;
}

.why-choose-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.reason {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--lux-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.reason:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.reason-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lux-gold) 0%, #fffbe6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-blue);
    font-size: 1.2rem;
}

.reason-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lux-blue);
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.why-choose-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: 100%;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* === RESPONSIVE ADJUSTMENTS === */

/* Tablets and medium devices */
@media (max-width: 1024px) {
    .why-choose-section {
        padding: 4rem 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .reason-content h3 {
        font-size: 1rem;
    }

    .reason-content p {
        font-size: 0.9rem;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-text {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .reason-content h3 {
        font-size: 1rem;
    }

    .reason-content p {
        font-size: 0.88rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .why-choose-section {
        padding: 3rem 1rem 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .reason-content h3 {
        font-size: 0.95rem;
    }

    .reason-content p {
        font-size: 0.85rem;
    }

    .reason-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* === SERVICES SECTION === */
.services-section {
    padding: 4rem 0;
    background: var(--lux-blue);
}

.services-section .section-header h2 {
    color: var(--lux-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--lux-blue);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(58, 90, 64, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--lux-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--lux-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lux-blue);
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    background: var(--lux-white);
    color: var(--lux-gold);
}

.service-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lux-white);
    margin-bottom: 1rem;
    font-family: 'Michroma', 'Poppins', sans-serif;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* === SERVICES RESPONSIVE === */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }
}



/* === PRODUCT CATEGORIES SECTION === */
.product-categories-section {
    padding: 3rem 0;
    background: var(--lux-white);
}

.section-header {
    text-align: center;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-category-item {
    background: #fff;
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 0.7rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-category-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 0.7rem;
    margin-bottom: 1rem;
    position: relative;
    background: #f7f7f7;
}

.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-category-content {
    text-align: center;
}

.product-category-title {
    font-family: 'Michroma', sans-serif;
    color: var(--lux-blue);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

/* === ALL CATEGORIES SPECIAL BOX === */
.product-category-item.all-categories {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-category-item.all-categories:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.all-categories-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    background: linear-gradient(135deg, var(--lux-gold) 0%, #fffbe6 100%);
    border-radius: 0.7rem;
}

.all-categories-image i {
    font-size: 3rem;
    color: var(--lux-blue);
}

.product-category-item.all-categories .product-category-title {
    color: var(--lux-blue);
    font-weight: 700;
}

/* === RESPONSIVE GRID === */
@media (max-width: 1400px) {
    .product-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .product-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-category-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-categories-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-category-title {
        font-size: 0.95rem;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.galary-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-categories-scroll {
    margin-bottom: 3rem;
}

.gallery-categories-container {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-category-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--lux-white);
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.gallery-category-btn:hover {
    border-color: var(--lux-gold);
    color: var(--lux-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.gallery-category-btn.active {
    background: linear-gradient(135deg, var(--lux-gold) 0%, #fffbe6 100%);
    border-color: var(--lux-gold);
    color: var(--lux-blue);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.gallery-category-btn i {
    font-size: 1rem;
}

.gallery-category-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gallery-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-image-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-item:hover img {
    transform: scale(1.05);
}

.gallery-image-item.see-all-overlay {
    cursor: pointer;
    position: relative;
}

.gallery-image-item.see-all-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 5;
}

.see-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.see-all-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

.see-all-content {
    text-align: center;
    color: var(--lux-white);
}

.see-all-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--lux-gold);
}

.see-all-content span {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Michroma', sans-serif;
    letter-spacing: 1px;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 2rem;
    }

    .galary-container {
        padding: 0 1rem;
    }

    .gallery-categories-container {
        gap: 0.8rem;
        justify-content: center;
    }

    .gallery-category-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        flex: 0 0 auto;
    }

    .gallery-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .see-all-content i {
        font-size: 2rem;
    }

    .see-all-content span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 2rem 1rem;
    }

    .gallery-categories-container {
        gap: 0.6rem;
    }

    .gallery-category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: auto;
    }

    .gallery-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }

    .gallery-category-btn i {
        font-size: 0.9rem;
    }
}

/* === NEW ARRIVALS SLIDER SECTION === */
.new-arrivals-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.new-arrivals-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.new-arrival-slide {
    flex: 0 0 350px;
    min-width: 300px;
}

.new-arrival-card {
    background: var(--lux-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.new-arrival-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.new-arrival-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.new-arrival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.new-arrival-card:hover .new-arrival-image img {
    transform: scale(1.1);
}

.new-arrival-title {
    font-family: 'Michroma', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lux-blue);
    margin: 1rem 0;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0 1rem;
}



@media (max-width: 1200px) {
    .new-arrival-slide {
        flex: 0 0 280px;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .new-arrivals-section {
        padding: 3rem 0;
    }

    .new-arrival-slide {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .new-arrival-image {
        height: 200px;
    }

    .new-arrival-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .new-arrival-slide {
        flex: 0 0 240px;
        min-width: 240px;
    }

    .new-arrival-image {
        height: 180px;
    }

    .new-arrival-title {
        font-size: 1rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 4rem 0;
    background: var(--lux-bg);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(58, 90, 64, 0.05) 100%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--lux-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--lux-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: var(--lux-gold);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(60, 60, 60, 0.15);
    border-color: var(--lux-gold);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--lux-gold);
    font-size: 1.1rem;
}

/* === ALERT MESSAGES === */
.alert {
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.alert-success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.alert-error {
    background: linear-gradient(135deg, #f44336 0%, #da190b 100%);
    color: white;
}

.alert p {
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.star-rating {
    color: var(--lux-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--lux-gold);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lux-blue);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design for Testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-stars {
        margin-bottom: 1rem;
    }

    .testimonial-stars i {
        font-size: 1rem;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 4rem 2rem;
    background: var(--lux-bg);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 246, 243, 0.9) 0%, rgba(234, 230, 223, 0.9) 100%);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}


.contact-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: var(--lux-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--lux-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-header .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 250px;
    padding: 0.5rem 0;
}

.contact-header .contact-item i {
    font-size: 1.2rem;
    color: var(--lux-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 50%;
    min-width: 45px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-header .contact-item:hover i {
    background: var(--lux-gold);
    color: var(--lux-white);
    transform: scale(1.1);
}

.contact-header .contact-item p {
    font-size: 1rem;
    color: var(--lux-blue);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.contact-header .social-icons {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.contact-header .social-icons a {
    font-size: 1.1rem;
    color: var(--lux-blue);
    background: rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
}

.contact-header .social-icons a:hover {
    background: var(--lux-gold);
    color: var(--lux-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-form {
    background: var(--lux-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--lux-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--lux-blue);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1rem;
    font-size: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: var(--lux-white);
    color: var(--lux-blue);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.contact-form .btn-primary {
    padding: 1.2rem 2rem;
    width: 100%;
    background: linear-gradient(135deg, var(--lux-gold) 0%, #fffbe6 100%);
    color: var(--lux-blue);
    border: 2px solid var(--lux-gold);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #fffbe6 0%, var(--lux-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.contact-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--lux-shadow);
}

.contact-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 34, 56, 0.1) 100%);
    z-index: 1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-body {
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-body {
        gap: 1.5rem;
    }

    .contact-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-header .contact-item {
        flex: 1 1 100%;
        gap: 0.8rem;
    }

    .contact-header .social-icons {
        margin-left: 0;
        align-self: center;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-header {
        padding: 1rem;
    }

    .contact-header .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-header .contact-item p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .contact-image{
        display: none;
    }
}


/* Alert Popup Styles */
.alert-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease-out;
}

.alert-popup.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-popup.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 0.8rem;
}

.alert-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.alert-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Auto-hide animation */
.alert-popup.hide {
    animation: slideUp 0.3s ease-in forwards;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    to {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .alert-popup {
        left: 20px;
        right: 20px;
        transform: none;
        min-width: auto;
        max-width: none;
    }

    .alert-content {
        padding: 0.8rem 1rem;
    }

    .alert-content p {
        font-size: 0.9rem;
    }
}