@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #B8941F;
    --diamond: #E8E8E8;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --cream: #FFFEF7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Floating Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatUp 15s infinite linear;
}

.particle:nth-child(2n) {
    width: 4px;
    height: 4px;
    opacity: 0.2;
}

.particle:nth-child(3n) {
    width: 8px;
    height: 8px;
    opacity: 0.15;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float.pulse {
    animation: whatsappPulse 1s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification i {
    color: #28a745;
    font-size: 1.5rem;
}

.toast-notification span {
    color: var(--dark);
    font-weight: 500;
}

/* Form Validation Styles */
.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--diamond);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    animation: shake 0.5s ease;
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: #28a745;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow Effects */
.glow-gold {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Button Hover Effects */
.btn-primary,
.btn-secondary,
.btn-whatsapp,
.scheme-card .btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-whatsapp:hover::before {
    left: 100%;
}

/* Card Shine Animation */
.category-card,
.product-card,
.ornament-card {
    position: relative;
    overflow: hidden;
}

.category-card::after,
.product-card::after,
.ornament-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
}

.category-card:hover::after,
.product-card:hover::after,
.ornament-card:hover::after {
    animation: cardShine 0.8s ease;
}

@keyframes cardShine {
    from { left: -50%; }
    to { left: 150%; }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Loading Skeleton Animation */
@keyframes skeleton {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton 1.5s infinite;
}

/* Ripple Effect on Click */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.bounce {
    animation: bounce 2s infinite;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 1px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.footer-logo {
    display: block;
    margin-bottom: 15px;
}

.footer-logo img,
.footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 10px;
}

.brand-section {
    text-align: left;
}

.brand-name {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-size: 0.95rem;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-item a[href^="tel"] {
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    color: #fff;
    max-width: 800px;
    text-align: center;
    padding: 0 30px;
}

.hero-text {
    width: 100%;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-text h1 span {
    color: #D4AF37;
    display: block;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.tagline {
    display: inline-block;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 500;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 10px 24px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #b8922f;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #D4AF37;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-title .line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    margin: 20px auto;
    border-radius: 2px;
}

/* Categories */
.categories {
    background: var(--cream);
}

.category-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: 25px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212,175,55,0.25);
    border-color: var(--gold);
}

.category-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 25px rgba(212,175,55,0.3);
    transition: all 0.4s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card:hover .category-image {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212,175,55,0.5);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.category-card:hover .category-image::after {
    opacity: 1;
}

.category-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Ornament Section */
.ornament-section {
    padding: 60px 0;
    background: var(--white);
}

.ornament-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ornament-card {
    background: var(--cream);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ornament-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.ornament-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.ornament-card:hover img {
    transform: scale(1.1);
}

.ornament-content {
    padding: 25px;
    text-align: center;
}

.ornament-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gold-dark);
}

.ornament-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Banner Section */
.banner-section {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.banner-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero.png') center/cover no-repeat;
    opacity: 0.15;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.banner-text {
    color: var(--white);
}

.banner-text .badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.banner-text h2 span {
    color: var(--gold);
}

.banner-text p {
    color: var(--diamond);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.banner-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-feature i {
    width: 35px;
    height: 35px;
    background: rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.banner-feature span {
    font-weight: 500;
}

.banner-image {
    display: flex;
    justify-content: center;
}

.banner-image img {
    width: 100%;
    max-width: 280px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Featured Products */
.featured-products {
    background: var(--cream);
}

.products-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--diamond) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.product-card:hover .product-image::before {
    left: 100%;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s;
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions button {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-actions button:hover {
    background: var(--gold);
    color: var(--white);
}

.product-info {
    padding: 30px;
}

.product-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold-light);
    color: var(--gold-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-info h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: var(--white);
}

.gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 80px 0;
}

.stats-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item .number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 60px 0;
    background: var(--cream);
}

.why-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.why-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.why-card h5 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--diamond);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1da851;
}

/* App Section */
.app-section {
    padding: 60px 0;
    background: #e0e0e0;
}

.app-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content {
    text-align: left;
}

.app-content h3 {
    font-size: 2.5rem;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.app-content > p {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.app-features {
    list-style: none;
    margin-bottom: 40px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text);
}

.app-features li i {
    color: var(--gold);
    font-size: 1.2rem;
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: var(--dark);
    color: var(--white);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.app-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn.play-store i {
    color: #4285F4;
}

.app-btn.app-store i {
    color: var(--white);
}

.app-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn .btn-text span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-btn .btn-text strong {
    font-size: 1.1rem;
}

.app-phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--dark);
    border-radius: 45px;
    padding: 12px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--dark);
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    background: #f0f0f0;
}

.app-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-home-button {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--dark-light);
    border-radius: 3px;
}

/* Gold Saving Scheme */
.scheme-section {
    padding: 60px 0;
    background: var(--cream);
}

.scheme-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scheme-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.scheme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.scheme-card.featured {
    border: 2px solid var(--gold);
}

.scheme-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.scheme-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheme-icon i {
    font-size: 2rem;
    color: var(--white);
}

.scheme-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.scheme-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.scheme-features {
    list-style: none;
    margin-bottom: 30px;
}

.scheme-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--diamond);
    color: var(--text);
}

.scheme-features li:last-child {
    border-bottom: none;
}

.scheme-features i {
    color: var(--gold);
    margin-right: 10px;
}

/* Testimonials */
.testimonials {
    background: var(--cream);
}

.testimonial-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
}

.stars i {
    margin: 0 2px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.testimonial-card .avatar {
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--gold-dark);
    font-size: 1.5rem;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.2rem;
}

.author-info h5 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Product Collection Section */
.collection-section {
    padding: 40px 0;
    background: var(--white);
}

.collection-section .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.category-title {
    grid-column: 1 / -1;
    font-size: 1.8rem;
    color: var(--gold-dark);
    text-align: left;
    margin: 40px 0 25px;
    padding-left: 30px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.category-title:first-child {
    margin-top: 0;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: var(--gold);
    border-radius: 3px;
}

.collection-section .product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212,175,55,0.15);
}

.collection-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.collection-section .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--cream);
}

.collection-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-section .product-card:hover .product-image img {
    transform: scale(1.1);
}

.collection-section .shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.collection-section .product-card:hover .shine-effect {
    left: 100%;
}

.collection-section .product-info {
    padding: 20px;
    text-align: center;
}

.collection-section .product-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.collection-section .product-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* New Arrivals Section */
.new-arrivals-section {
    padding: 0 !important;
}

.new-arrivals-section .imagetext--image_text {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.new-arrivals-section .imagetext--image_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(212,175,55,0.3) 100%);
}

.new-arrivals-section .page-width {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.new-arrivals-section .imagetext__content {
    text-align: center;
    color: var(--white);
    padding: 60px 0;
}

.new-arrivals-section .stack__heading {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.new-arrivals-section .imagetext__paragraph {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.new-arrivals-section .btn-primary-gold {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.new-arrivals-section .btn-primary-gold:hover {
    background: transparent;
    color: var(--gold);
}

@media (max-width: 992px) {
    .collection-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .collection-section .product-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .category-title {
        font-size: 1.5rem;
        padding-left: 20px;
    }
    
    .new-arrivals-section .stack__heading {
        font-size: 2rem;
    }
}

/* Newsletter */
.newsletter {
    background: var(--dark);
    padding: 0;
    display: none;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}

.newsletter h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter p {
    color: var(--diamond);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid var(--dark-light);
    border-radius: 50px;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 18px 35px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--diamond);
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--diamond);
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.social-links i {
    color: var(--gold);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover i {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid var(--dark-light);
}

.footer-bottom p {
    color: var(--diamond);
}

/* Page Header */
.page-header {
    padding: 180px 30px 100px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--cream) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Page Content */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.page-content h2 {
    color: var(--gold-dark);
    font-size: 1.8rem;
    margin: 50px 0 20px;
    padding-top: 30px;
    border-top: 1px solid var(--diamond);
}

.page-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.page-content h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.page-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--text);
}

.page-content ul {
    margin: 15px 0 25px 30px;
}

.page-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
    background: var(--white);
}

.contact-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 50px;
    background: var(--dark);
    border-radius: 30px;
    color: var(--white);
}

.contact-info h2 {
    color: var(--gold);
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--diamond);
    line-height: 1.6;
}

.contact-form {
    background: var(--cream);
    padding: 50px;
    border-radius: 30px;
}

.contact-form h2 {
    color: var(--gold-dark);
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--diamond);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212,175,55,0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 35px;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .category-grid,
    .products-grid,
    .testimonial-grid,
    .footer-content,
    .stats-grid,
    .banner-content,
    .ornament-grid,
    .gallery-grid,
    .why-grid,
    .scheme-grid,
    .app-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .banner-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transition: left 0.4s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.3rem;
    }

    .category-grid,
    .products-grid,
    .testimonial-grid,
    .footer-content,
    .stats-grid,
    .contact-grid,
    .ornament-grid,
    .gallery-grid,
    .why-grid,
    .scheme-grid,
    .app-container {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-slider {
        height: 80vh;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .banner-features {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .app-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .stat-item .number {
        font-size: 2.5rem;
    }
}

/* About Section */
.about-section {
    padding: 40px 0;
    background: var(--cream);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 15px;
    z-index: -1;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.value-item h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

/* Contact Map Section */
.contact-map-section {
    padding: 80px 0;
    background: var(--cream);
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-map {
    background: var(--dark);
    border-radius: 25px;
    padding: 40px;
    color: var(--white);
}

.contact-details h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-map .contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-map .contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-map .contact-item strong {
    display: block;
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-map .contact-item p {
    color: var(--diamond);
    margin: 0;
    line-height: 1.6;
}

.contact-info-map .contact-item a {
    color: var(--diamond);
    text-decoration: none;
}

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

.shop-image-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 100%;
}

.shop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--gold);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.directions-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.directions-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.directions-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ========== SCHEMES SECTION ========== */
.schemes-section {
    background: var(--cream);
    padding: 100px 0;
}

.scheme-category {
    max-width: 1300px;
    margin: 0 auto 50px;
    padding: 0 30px;
}

.scheme-category h3 {
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scheme-category h3 i {
    font-size: 1.3rem;
}

.scheme-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.weight-schemes {
    grid-template-columns: repeat(3, 1fr);
}

.scheme-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.scheme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.scheme-card.highlight {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    border: 2px solid var(--gold);
}

.scheme-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.scheme-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.scheme-number {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.scheme-icon {
    width: 45px;
    height: 45px;
    background: var(--gold-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scheme-header h4 {
    font-size: 1rem;
    color: var(--dark);
    margin: 0;
}

.scheme-details {
    margin-bottom: 15px;
}

.scheme-details p {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.scheme-note {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.85rem !important;
    margin-top: 10px !important;
}

.scheme-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: var(--gold-dark);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.scheme-btn:hover {
    background: var(--gold);
    color: var(--white);
}

/* Digital Gold & Silver */
.digital-schemes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.digital-gold,
.digital-silver {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.digital-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.digital-silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #C0C0C0, #808080);
}

.digital-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.digital-header i {
    font-size: 2.5rem;
}

.digital-gold .digital-header i {
    color: var(--gold);
}

.digital-silver .digital-header i {
    color: #808080;
}

.digital-header h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin: 0;
}

.digital-content p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1rem;
}

.digital-features {
    list-style: none;
    margin-bottom: 25px;
}

.digital-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.digital-features li i {
    color: var(--gold);
    font-size: 0.9rem;
}

.digital-silver .digital-features li i {
    color: #808080;
}

.digital-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--cream);
    border-radius: 10px;
    margin-bottom: 20px;
}

.price-label {
    color: var(--text);
    font-weight: 500;
}

.price-value {
    color: var(--gold-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.digital-silver .price-value {
    color: #666;
}

.digital-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.gold-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.gold-btn:hover {
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
    transform: translateY(-3px);
}

.silver-btn {
    background: linear-gradient(135deg, #C0C0C0 0%, #606060 100%);
    color: var(--white);
}

.silver-btn:hover {
    box-shadow: 0 10px 30px rgba(128,128,128,0.4);
    transform: translateY(-3px);
}

.scheme-note-final {
    text-align: center;
    padding: 0 30px;
    margin-top: 30px;
}

.scheme-note-final p {
    color: var(--text-light);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.scheme-note-final i {
    color: var(--gold);
}

@media (max-width: 1200px) {
    .scheme-cards {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .scheme-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .weight-schemes {
        grid-template-columns: 1fr;
    }
    
    .digital-schemes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .scheme-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .scheme-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-values {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .contact-info-map {
        padding: 30px 20px;
    }
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.col-lg-5 {
    flex: 0 0 calc(41.666667% - 30px);
    max-width: calc(41.666667% - 30px);
}

.col-lg-7 {
    flex: 0 0 calc(58.333333% - 30px);
    max-width: calc(58.333333% - 30px);
}

.contact-section .contact-info {
    background: var(--dark);
    padding: 40px;
    border-radius: 25px;
    height: 100%;
}

.contact-section .contact-info h2 {
    color: var(--gold);
    margin-bottom: 30px;
}

.contact-section .contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-section .contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-section .contact-item h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-section .contact-item p {
    color: var(--diamond);
    margin: 0;
}

.contact-section .contact-item a {
    color: var(--diamond);
    text-decoration: none;
}

.contact-section .contact-item a:hover {
    color: var(--gold);
}

.contact-section .map-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.map-shop-info h4 {
    color: var(--gold-dark);
    margin-bottom: 5px;
    font-size: 1rem;
}

.map-shop-info p {
    color: var(--text);
    margin: 0;
    font-size: 0.85rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--cream);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-form-wrapper h2 {
    text-align: center;
    color: var(--gold-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-form-section form {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.contact-form-section .form-group {
    margin-bottom: 20px;
}

.contact-form-section .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.contact-form-section .form-group input,
.contact-form-section .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--diamond);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form-section .form-group input:focus,
.contact-form-section .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form-section .form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .col-lg-5,
    .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-section .contact-info {
        padding: 30px;
    }
    
    .contact-form-section form {
        padding: 25px;
    }
}