
        :root {
            --gold: #D4AF37;
            --gold-light: #F4E4BC;
            --dark: #1a1a1a;
            --cream: #FDF8F0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Poppins', sans-serif; color: var(--dark); overflow-x: hidden; }
        h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }
        .navbar { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 15px 0; transition: all 0.3s; }
        .navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
        .navbar-brand { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 500; color: var(--gold) !important; }
        .nav-link { color: var(--dark) !important; font-weight: 500; margin: 0 10px; position: relative; }
        .nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: 0.3s; }
        .nav-link:hover::after { width: 100%; }
        #home { min-height: 100vh; background: linear-gradient(135deg, var(--cream) 0%, #fff 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
        .hero-content h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
        /*.hero-content h1 span { color: var(--gold); }*/
        .hero-content p { font-size: 1.1rem; color: #666; margin-bottom: 30px; }
        .btn-gold { background: var(--gold); color: #fff; padding: 12px 35px; border-radius: 30px; font-weight: 500; border: 2px solid var(--gold); transition: 0.3s; }
        .btn-gold:hover { background: transparent; color: var(--gold); }
        .btn-outline-gold { border: 2px solid var(--gold); color: var(--gold); padding: 12px 35px; border-radius: 30px; font-weight: 500; transition: 0.3s; }
        .btn-outline-gold:hover { background: var(--gold); color: #fff; }
        .hero-image { position: relative; }
        .hero-image img { max-width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
        .floating-badge { position: absolute; background: #fff; padding: 15px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .badge-1 { top: 20%; left: -30px; animation: float 3s ease-in-out infinite; }
        .badge-2 { bottom: 20%; right: -30px; animation: float 3s ease-in-out infinite 1.5s; }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
        section { padding: 40px 0; }
        .section-title { text-align: center; margin-bottom: 30px; }
        .section-title h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 10px; }
        .section-title .divider { width: 80px; height: 3px; background: var(--gold); margin: 0 auto; }
        #about { background: #fff; }
        .about-img { position: relative; }
        .about-img img { border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        .experience-badge { position: absolute; bottom: -30px; right: -30px; background: var(--gold); color: #fff; padding: 30px; border-radius: 20px; text-align: center; }
        .experience-badge h3 { font-size: 2.5rem; margin-bottom: 5px; }
        .about-content { padding-left: 50px; }
        .about-content h3 { font-size: 2rem; margin-bottom: 20px; }
        .feature-item { display: flex; align-items: center; margin-bottom: 20px; }
        .feature-item i { font-size: 1.5rem; color: var(--gold); margin-right: 15px; }
        #collection { background: var(--cream); }
        .collection-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: 0.4s; margin-bottom: 30px; }
        .collection-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
        .collection-img { position: relative; overflow: hidden; height: 280px; }
        .collection-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .collection-card:hover .collection-img img { transform: scale(1.1); }
        .collection-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.4s; }
        .collection-card:hover .collection-overlay { opacity: 1; }
        .collection-overlay a { color: #fff; font-size: 1.5rem; margin: 0 10px; width: 50px; height: 50px; border: 2px solid #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
        .collection-overlay a:hover { background: var(--gold); border-color: var(--gold); }
        .collection-info { padding: 25px; text-align: center; }
        .collection-info h5 { font-size: 1.3rem; margin-bottom: 10px; }
        .collection-info .price { color: var(--gold); font-size: 1.2rem; font-weight: 600; }
        .collection-info .old-price { text-decoration: line-through; color: #999; font-size: 0.9rem; margin-right: 10px; }
        .category-badge { position: absolute; top: 15px; left: 15px; background: var(--gold); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; z-index: 1; }
        .stars { color: var(--gold); margin-bottom: 15px; }
        #contact { background: #fff; }
        .contact-info-card { background: var(--cream); border-radius: 20px; padding: 40px; height: 100%; }
        .contact-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
        .contact-item i { font-size: 1.5rem; color: var(--gold); margin-right: 20px; margin-top: 5px; }
        .contact-item h5 { margin-bottom: 5px; }
        .contact-item p { color: #666; margin: 0; }
        .social-links a { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: var(--gold); color: #fff; border-radius: 50%; margin-right: 10px; transition: 0.3s; }
        .social-links a:hover { background: var(--dark); transform: translateY(-5px); }
        .contact-form { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
        .form-control { border: 2px solid #eee; border-radius: 10px; padding: 15px; margin-bottom: 20px; transition: 0.3s; }
        .form-control:focus { border-color: var(--gold); box-shadow: none; }
        footer { background: var(--dark); color: #fff; padding: 60px 0 20px; }
        .footer-brand { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); margin-bottom: 20px; }
        .footer-links h5 { color: var(--gold); margin-bottom: 20px; }
        .footer-links ul { list-style: none; padding: 0; margin: 0;}
        .footer-links ul li { margin-bottom: 10px; }
        .footer-links ul li a { color: #ccc; text-decoration: none !important; transition: 0.3s; }
        .footer-links ul li a:hover { color: var(--gold); padding-left: 5px;}
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; text-align: center; color: #888; }
        @media (max-width: 991px) {
            .hero-content h1 { font-size: 2.5rem; }
            .about-content { padding-left: 0; margin-top: 50px; }
            .experience-badge { right: 20px; bottom: -20px; padding: 20px; }
            .floating-badge { display: none; }
        }
        @media (max-width: 767px) {
            section { padding: 0px 0; }
            .hero-content h1 { font-size: 2rem; }
            .section-title h2 { font-size: 2rem; }
            .contact-info-card { margin-bottom: 30px; }
        }
        .scroll-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999; border: none; }
        .scroll-top.active { opacity: 1; visibility: visible; }
        .scroll-top:hover { background: var(--dark); }

        /* Why Choose Us Section */
#why-choose-us {
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}

.choose-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, #e6c547 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.choose-icon i {
    font-size: 2rem;
    color: #fff;
}

.choose-card:hover .choose-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--gold) 0%, #e6c547 100%);
}

.choose-card h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.choose-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .choose-card {
        padding: 30px 20px;
    }
    
    .choose-icon {
        width: 70px;
        height: 70px;
    }
    
    .choose-icon i {
        font-size: 1.6rem;
    }
}
/* Stories/Reels Carousel Section - Exact Design */
#stories {
    background: #fff;
    overflow: hidden;
    
}

.stories-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-top: 0;
    margin-bottom: 0;
}

.stories-carousel {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

/* Story Card Base Styles */
.story-card {
    position: absolute;
    width: 280px;
    height: 480px;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.story-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.story-inner > img {
    width: 85%;
    height: 100%;
    object-fit: cover;
}

/* Stacked Card Positions */
.story-card[data-index="0"] {
    transform: translateX(-320px) scale(0.75) rotateY(5deg);
    z-index: 1;
    opacity: 0.6;
    filter: brightness(0.7);
}

.story-card[data-index="1"] {
    transform: translateX(-180px) scale(0.85) rotateY(3deg);
    z-index: 2;
    opacity: 0.8;
    filter: brightness(0.85);
}

.story-card[data-index="2"],
.story-card.active {
    transform: translateX(0) scale(1) rotateY(0);
    z-index: 5;
    opacity: 1;
    filter: brightness(1);
}

.story-card[data-index="3"] {
    transform: translateX(180px) scale(0.85) rotateY(-3deg);
    z-index: 2;
    opacity: 0.8;
    filter: brightness(0.85);
}

.story-card[data-index="4"] {
    transform: translateX(320px) scale(0.75) rotateY(-5deg);
    z-index: 1;
    opacity: 0.6;
    filter: brightness(0.7);
}

/* Overlays */
.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(30, 60, 80, 0.6) 0%,
        rgba(30, 60, 80, 0.2) 30%,
        rgba(30, 60, 80, 0.2) 60%,
        rgba(30, 60, 80, 0.7) 100%
    );
    z-index: 1;
}

.dark-overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 25, 50, 0.85) 0%,
        rgba(10, 25, 50, 0.7) 50%,
        rgba(10, 25, 50, 0.85) 100%
    );
}

.teal-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 80, 80, 0.7) 0%,
        rgba(0, 100, 100, 0.4) 50%,
        rgba(0, 80, 80, 0.7) 100%
    );
}

/* Story Header */
.story-header {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-dots {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.story-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.brand-icon {
    font-size: 1.2rem;
}

.brand-text {
    color: #fff;
    font-size: 0.65rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    text-align: right;
}

/* Story Text Overlay */
.story-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.story-text-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.script-text h3 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    letter-spacing: 1px;
    text-transform: none;
}

/* Story Content (Bottom Section) */
.story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    z-index: 3;
}

/* Product Card */
.story-product-card {
    background: #fff;
    border-radius: 15px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

.product-thumb {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    flex: 1;
    min-width: 0;
}

.product-details h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-details p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.story-product-card > i {
    color: #333;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Progress Lines */
.story-progress {
    display: flex;
    gap: 6px;
    padding: 0 5px;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 3px;
}

.progress-line.active {
    background: #fff;
}

/* Navigation Buttons */
.story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(100, 100, 100, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.story-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.story-prev {
    left: 20px;
}

.story-next {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .story-card {
        width: 250px;
        height: 420px;
    }
    .story-card[data-index="0"] {
        transform: translateX(-280px) scale(0.75);
    }
    .story-card[data-index="1"] {
        transform: translateX(-150px) scale(0.85);
    }
    .story-card[data-index="3"] {
        transform: translateX(150px) scale(0.85);
    }
    .story-card[data-index="4"] {
        transform: translateX(280px) scale(0.75);
    }
}

@media (max-width: 991px) {
    .stories-carousel {
        height: 450px;
    }
    .story-card {
        width: 220px;
        height: 380px;
    }
    .story-card[data-index="0"] {
        transform: translateX(-240px) scale(0.7);
        opacity: 0.5;
    }
    .story-card[data-index="1"] {
        transform: translateX(-130px) scale(0.82);
    }
    .story-card[data-index="3"] {
        transform: translateX(130px) scale(0.82);
    }
    .story-card[data-index="4"] {
        transform: translateX(240px) scale(0.7);
        opacity: 0.5;
    }
    .story-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .story-prev { left: 10px; }
    .story-next { right: 10px; }
}

@media (max-width: 767px) {
    #stories {
        padding: 40px !important;
        padding-bottom: 40px !important;
    }
    .stories-carousel {
        height: 400px;
    }
    .story-card {
        width: 200px;
        height: 340px;
        border-radius: 20px;
    }
    .story-inner {
        border-radius: 20px;
    }
    .story-card[data-index="0"],
    .story-card[data-index="4"] {
        display: none;
    }
    .story-card[data-index="1"] {
        transform: translateX(-110px) scale(0.8);
    }
    .story-card[data-index="3"] {
        transform: translateX(110px) scale(0.8);
    }
    .story-product-card {
        padding: 10px 12px;
        gap: 10px;
    }
    .product-thumb {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .product-details h6 {
        font-size: 0.8rem;
    }
    .product-details p {
        font-size: 0.65rem;
    }
    .story-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .story-prev { left: 5px; }
    .story-next { right: 5px; }
}

@media (max-width: 576px) {
    .stories-carousel {
        height: 380px;
    }
    .story-card {
        width: 180px;
        height: 300px;
    }
    .story-card[data-index="1"] {
        transform: translateX(-95px) scale(0.78);
    }
    .story-card[data-index="3"] {
        transform: translateX(95px) scale(0.78);
    }
    .story-header {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    .story-title {
        font-size: 0.7rem;
    }
    .story-content {
        padding: 10px;
    }
    .story-product-card {
        padding: 8px 10px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .product-thumb {
        width: 35px;
        height: 35px;
    }
    .product-details h6 {
        font-size: 0.7rem;
    }
    .product-details p {
        font-size: 0.6rem;
    }
    .progress-line {
        height: 2px;
    }
}

/* Store Gallery Section */
#gallery {
    background: #fff;
    padding: 20px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 25px;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    /*transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);*/
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    /*transform: scale(1.1);*/
    transform: scale(1.15);
}

.gallery-large {
    grid-row: span 1;
    min-height: 400px;
}

.gallery-item:not(.gallery-large) {
    height: 400px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
   /* opacity: 1;*/
}

.gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    /*transform: scale(1);*/
}

/* Responsive Styles */
@media (max-width: 991px) {
    #gallery {
        padding: 80px 0;
    }
    
    .gallery-header h2 {
        font-size: 2.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .gallery-large {
        grid-column: span 2;
        min-height: 350px;
    }
    
    .gallery-item:not(.gallery-large) {
        height: 300px;
    }
}

@media (max-width: 767px) {
    #gallery {
        padding: 60px 0;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-large {
        grid-column: span 1;
        min-height: 280px;
    }
    
    .gallery-item:not(.gallery-large) {
        height: 250px;
    }
    
    .gallery-item {
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-large {
        min-height: 220px;
    }
    
    .gallery-item:not(.gallery-large) {
        height: 200px;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
}

/* Contact Map Styles */
.contact-map {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-map h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.map-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 3px;
}

.map-info-item h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.map-info-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.direction-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.direction-link:hover {
    color: var(--dark);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
    .contact-map {
        padding: 20px;
        margin-top: 30px;
        height: 80%;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-info-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .map-container iframe {
        height: 250px;
        border-radius: 15px;
    }
    
    .contact-map {
        padding: 20px;
    }
}
/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #fff;
    color: var(--gold);
    transform: translateY(-5px);
}

/* Footer contact icons color */
.footer-links ul li a i {
    color: var(--gold);
    width: 20px;
}

/* ===== MOBILE RESPONSIVE FIX ===== */

/* Fix Hero Section for Mobile */
@media (max-width: 767px) {
    #home {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-content h1 span {
        display: inline;
        text-decoration: none !important;
        
    }
    
    .hero-content p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    
    
    .hero-image {
        margin-top: 30px;
    }
    
    .hero-image img {
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    #home {
        padding-top: 90px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    
}

/* Fix navbar brand on mobile */
@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Replace your existing @media (max-width: 767px) section for About with this: */

@media (max-width: 767px) {
    .about-img {
        margin-bottom: 50px;
        position: relative;
    }
    
    .experience-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -30px;
        padding: 15px 25px;
    }
    
    .experience-badge h3 {
        font-size: 1.8rem;
    }
    
    .about-content {
        text-align: center;
        padding-left: 0;
    }
    
    /* Center the "About Luxe Jewels" heading */
    .about-content .section-title {
        text-align: center !important;
    }
    
    .about-content .section-title h2 {
        text-align: center;
    }
    
    .about-content .divider {
        margin: 0 auto !important;
    }
    
    /* Center the "Crafting Dreams" subheading */
    .about-content h3 {
        text-align: center;
    }
    
    /* Add border-box styling to the paragraph */
    .about-content > p {
        padding: 20px;
        margin: 20px 0;
        box-sizing: border-box;
        text-align: left;
    }
    
    /* Stack feature items vertically (line by line) */
    .feature-item {
        display: flex;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
        background: #fff;
        border-radius: 10px;
        margin-bottom: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .feature-item i {
        flex-shrink: 0;
    }
    
    /* Center the Learn More button */
    .about-content .btn {
        display: inline-block;
    }
}

.navbar-logo {
    height: 50px;        
    width: auto;
    object-fit: contain;
}

.gallery-video {
    width: 100%;        
    height: auto;
    object-fit: cover;
    margin: auto;
    display: block;
}

.gallery-full {
    grid-column: 1 / -1;
    height: 280px;
}

.gallery-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand img {
    height: 50px;          /* PERFECT footer logo size */
    width: auto;
    
    object-fit: contain;
}

/* Add space above Contact Us section on mobile */
@media (max-width: 768px) {
    #contact {
        padding-top: 60px !important;
    }
    
    #contact .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    #contact {
        padding-top: 50px !important;
    }
    
    #contact .section-title {
        margin-bottom: 35px;
    }
}

/* Fix Why Choose Us section spacing on mobile */
@media (max-width: 768px) {
    #why-choose-us {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }
    
    #why-choose-us .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    #why-choose-us {
        padding-top: 50px !important;
        padding-bottom: 35px !important;
    }
    
    #why-choose-us .section-title {
        margin-bottom: 35px;
    }
}
.footer-social a {
        text-decoration: none !important;
    }

    .footer-social a:hover {
        text-decoration: none !important;
    }
