/* ===== KHUSHBOO JEWELLERS - REFINED FINAL DESIGN ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Royal Silver Palette */
    --gold: #B8860B;
    --gold-light: #D4AF37;
    --gold-dark: #9B7509;
    --accent: #4A5568;
    --accent-dark: #2D3748;
    --cream: #FAF9F6;
    --cream-light: #FFFBF5;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border: #E8E4DC;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER (Transparent Overlay - Karigar Style, 65px Logo) ===== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 228, 220, 0.5);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar {
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 65px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.cta-btn-header {
    background: var(--gold);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.cta-btn-header:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* ===== HERO CAROUSEL (Lighter Overlays, Seamless) ===== */
.hero-carousel {
    margin-top: 0;
    padding-top: 89px;
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlays (LIGHTER - More Transparent) */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.overlay-dark {
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.overlay-gold {
    background: linear-gradient(to right, rgba(184, 134, 11, 0.45), rgba(184, 134, 11, 0.25));
}

.overlay-purple {
    background: linear-gradient(to right, rgba(80, 40, 60, 0.4), rgba(80, 40, 60, 0.2));
}

/* Content */
.carousel-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 600px;
    color: white;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-content h1 {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.carousel-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.95);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.btn-white {
    background: white;
    color: var(--gold);
}

.btn-white:hover {
    background: var(--cream);
    color: var(--gold-dark);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: var(--gold);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WHY CHOOSE US (Konark Watermark - More Visible) ===== */
.why-choose {
    background: var(--white);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/konark-pattern.png');
    background-repeat: repeat;
    background-size: 300px 300px;
    opacity: 0.06;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.why-choose > .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--cream-light);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(74, 85, 104, 0.15);
    border-color: var(--accent);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cta-banner-content h3 {
    font-size: 28px;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
}

.cta-banner-content p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 400;
}

/* ===== COLLECTIONS (Enhanced with Magic) ===== */
.collections {
    background: var(--cream);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.collection-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
    position: relative;
}

.collection-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(74, 85, 104, 0.3);
    border-color: var(--accent);
}

.collection-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
    transition: all 0.3s;
}

.collection-item:hover .collection-badge {
    transform: scale(1.1);
}

.collection-image {
    background: #000000;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.collection-item:hover .collection-image img {
    transform: scale(1.08);
}

.collection-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.collection-item:hover .collection-hover-overlay {
    transform: translateY(0);
}

.view-collection-btn {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.view-collection-btn:hover {
    background: var(--gold-light);
}

.collection-item h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 16px 16px 4px;
    color: var(--text-dark);
}

.collection-item p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    padding: 0 16px 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--cream-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}

.testimonial-content p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-content strong {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.testimonial-content span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
}

/* ===== ABOUT (Single Heritage Image) ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 12px 0 12px 28px;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    line-height: 1.6;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

.about-list li strong {
    color: var(--gold);
    font-weight: 600;
}

.about-heritage-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--cream-light);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 400;
}

/* ===== CONTACT (Konark Watermark) ===== */
.contact {
    background: var(--cream);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/konark-pattern.png');
    background-repeat: repeat;
    background-size: 400px 400px;
    opacity: 0.06;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.contact > .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.info-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.info-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--gold-dark);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--cream-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
}

.contact-form .btn-primary {
    width: 100%;
}

/* ===== FOOTER (Refined Slate Gradient + Gold Accent) ===== */
.footer {
    background: linear-gradient(135deg, #2D3748 0%, #1a202c 100%);
    color: rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: url('../images/pattachitra-border.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(184, 134, 11, 0.3), transparent);
}

.footer-content {
    position: relative;
    padding: 80px 24px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a,
.social-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    display: block;
}

.footer-column a:hover,
.social-link:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 89px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 32px 0;
        transition: left 0.3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 12px 24px;
    }

    .hamburger {
        display: flex;
    }

    .cta-btn-header {
        display: none;
    }

    .logo-text {
        display: none;
    }

    .carousel-content {
        left: 40px;
        right: 40px;
        max-width: 90%;
    }

    .carousel-content h1 {
        font-size: 36px;
    }

    .features-grid,
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid,
    .about-grid,
    .contact-wrapper,
    .footer-main,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid,
    .collections-grid,
    .stats-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .carousel-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-carousel {
        height: 70vh;
    }
}