/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --cream: #F5F0E8;
    
    /* Brown Shades */
    --brown-dark: #3E2723;
    --brown-medium: #5D4037;
    --brown-light: #795548;
    --brown-lighter: #8D6E63;
    
    /* Gold Shades */
    --gold-dark: #B8860B;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-shimmer: #FFD700;
    
    /* Accent Colors */
    --text-dark: #2C1810;
    --text-medium: #5C4033;
    --text-light: #8B7355;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    --gradient-brown: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    --gradient-hero: linear-gradient(135deg, #1a0f0a 0%, var(--brown-dark) 30%, var(--brown-medium) 70%, var(--brown-light) 100%);
    --gradient-glossy: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 50%);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(62, 39, 35, 0.08);
    --shadow-md: 0 4px 20px rgba(62, 39, 35, 0.12);
    --shadow-lg: 0 8px 40px rgba(62, 39, 35, 0.16);
    --shadow-xl: 0 20px 60px rgba(62, 39, 35, 0.25);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 10px 40px rgba(212, 175, 55, 0.4);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-full: 50px;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--brown-dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===== Glossy Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::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.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--brown-dark);
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-gold-lg), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--gold);
    backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-full {
    width: 100%;
}

/* ===== Glossy Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(62, 39, 35, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--brown-dark);
    box-shadow: var(--shadow-gold), inset 0 2px 0 rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text h1 {
    font-size: 1.6rem;
    color: var(--brown-dark);
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--brown-dark), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .tagline {
    font-size: 0.75rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    gap: 4px;
    background: linear-gradient(135deg, rgba(62,39,35,0.05), rgba(212,175,55,0.1));
    padding: 5px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lang-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-medium);
}

.lang-btn.active {
    background: var(--gradient-gold);
    color: var(--brown-dark);
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
}

.lang-btn:hover:not(.active) {
    background: rgba(212, 175, 55, 0.2);
    color: var(--brown-dark);
}

.cta-btn {
    padding: 12px 28px;
    background: var(--gradient-gold);
    color: var(--brown-dark);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-gold-lg);
}

/* ===== Glossy Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 100px;
}





.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: float-slow 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    border-radius: 50%;
    animation: float-slow 15s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}

.hero-badge::before {
    content: '★';
    color: var(--gold);
}

.hero-content h2 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-shimmer));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-shimmer));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.5s both;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.3; filter: blur(20px); }
    100% { opacity: 0.6; filter: blur(30px); }
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

/* Hide image wrapper if image fails to load */
.hero-img[style*="display: none"] + .hero-img,
.hero-image-wrapper:empty {
    display: none;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-top: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Glossy Features Section ===== */
.features {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--brown-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(62, 39, 35, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 10px 40px rgba(62, 39, 35, 0.2);
    border-color: var(--brown-dark);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    color: var(--brown-dark);
    box-shadow: var(--shadow-gold), inset 0 2px 0 rgba(255,255,255,0.5);
    position: relative;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold-lg), inset 0 2px 0 rgba(255,255,255,0.6);
}

.feature-card h3 {
    margin-bottom: 16px;
    color: var(--brown-dark);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--gold-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Glossy Sell Gold Banner ===== */
.sell-gold-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f0a 0%, var(--brown-dark) 40%, var(--brown-medium) 100%);
    position: relative;
    overflow: hidden;
}

.sell-gold-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 40%);
    opacity: 1;
}

.sell-gold-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    animation: float-slow 20s ease-in-out infinite;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-image {
    position: relative;
}

.banner-image::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(25px);
    animation: glow 3s ease-in-out infinite alternate;
}

.banner-img {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.banner-text {
    color: var(--white);
}

.banner-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.9;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.banner-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.banner-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.banner-feature i {
    color: var(--gold);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

/* ===== Customised Jewellery Section ===== */
.custom-jewellery {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f0a 0%, var(--brown-dark) 40%, var(--brown-medium) 100%);
    position: relative;
    overflow: hidden;
}

.custom-jewellery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 80% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 40%);
}

.jewellery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.jewellery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.jewellery-badge i {
    color: var(--gold);
}

.jewellery-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jewellery-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
}

.jewellery-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.jewellery-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.jewellery-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.jewellery-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.jewellery-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.jewellery-image-wrapper {
    position: relative;
    max-width: 480px;
}

.jewellery-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(25px);
    animation: glow 3s ease-in-out infinite alternate;
}

.jewellery-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.jewellery-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--brown-dark);
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.floating-title {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.floating-desc {
    font-size: 1rem;
    color: var(--brown-dark);
    font-weight: 700;
}

/* ===== Glossy Services Section ===== */
.services {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,0.8) 100%);
    padding: 45px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-glossy);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--gold);
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.3), inset 0 2px 0 rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.4), inset 0 2px 0 rgba(255,255,255,0.3);
}

.service-card h3 {
    margin-bottom: 14px;
    color: var(--brown-dark);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--gold-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* ===== Glossy How It Works ===== */
.how-it-works {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brown-dark);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-gold), inset 0 2px 0 rgba(255,255,255,0.5);
    position: relative;
    transition: all 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-lg), inset 0 2px 0 rgba(255,255,255,0.6);
}

.step-content h3 {
    margin-bottom: 12px;
    color: var(--brown-dark);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.step:hover .step-content h3 {
    color: var(--gold-dark);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.step-connector {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin-top: 35px;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    position: relative;
}

.step-connector::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 12px solid var(--gold);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ===== Glossy Testimonials ===== */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,0.9) 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-rating {
    margin-bottom: 18px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.author-info h4 {
    color: var(--brown-dark);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 500;
}

/* ===== Glossy Contact Section ===== */
.contact {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--off-white), var(--cream));
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--brown-dark);
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--brown-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--off-white), var(--cream));
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--brown-dark);
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.badge i {
    color: var(--gold-dark);
    font-size: 1rem;
}

/* ===== Glossy Contact Form ===== */
.contact-form-wrapper {
    background: linear-gradient(180deg, var(--off-white), var(--cream));
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--brown-dark);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-primary);
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1), inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23795548' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

/* ===== Glossy Footer ===== */
.footer {
    background: linear-gradient(135deg, #0d0806 0%, var(--brown-dark) 50%, var(--brown-medium) 100%);
    color: var(--white);
    padding: 80px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .tagline {
    color: var(--gold);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 18px;
    line-height: 1.9;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(8px);
}

.footer-social h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--brown-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold-lg);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== Glossy WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), inset 0 2px 0 rgba(255,255,255,0.3);
    z-index: 999;
    transition: all 0.3s ease;
    animation: bounce-in 0.5s ease 1s both;
}

@keyframes bounce-in {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--brown-dark);
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold-lg);
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .banner-image {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    .banner-features {
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
        --container-width: 100%;
    }
    
    html {
        font-size: 15px;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .language-switcher {
        flex: 1;
    }
    
    .lang-btn {
        flex: 1;
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        overflow: visible;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        justify-items: center;
        overflow: visible;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: visible;
    }
    
    .hero-content * {
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-badge {
        align-self: center;
        justify-self: center;
        font-size: 0.7rem;
        padding: 8px 16px;
        letter-spacing: 1px;
    }
    
    .hero-content h2 {
        text-align: center;
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        max-width: 100%;
        text-align: center;
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px 20px;
        flex: 0 1 auto;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
        padding: 0 10px;
    }
    
    .hero-cta .btn {
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 14px 20px;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: visible;
    }
    
    .hero-image-wrapper {
        max-width: 320px;
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .banner-text h2 {
        font-size: 2.2rem;
    }
    
    .banner-img {
        max-width: 400px;
    }
    
    .jewellery-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .jewellery-text h2 {
        font-size: 2.2rem;
    }
    
    .jewellery-features {
        align-items: center;
    }
    
    .jewellery-feature:hover {
        transform: translateX(0) translateY(-3px);
    }
    
    .jewellery-cta {
        justify-content: center;
    }
    
    .jewellery-image {
        order: -1;
    }
    
    .jewellery-floating-card {
        left: 20px;
        bottom: -15px;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        width: 4px;
        height: 40px;
        margin: 0 auto;
    }
    
    .step-connector::before {
        display: none;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.7rem; }
    
    .container {
        padding: 0 16px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .logo-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .cta-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .hero {
        padding-top: 90px;
        min-height: auto;
        overflow: visible;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        justify-items: center;
        overflow: visible;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: visible;
    }
    
    .hero-content h2 {
        font-size: 1.7rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 8px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .stat-item {
        padding: 14px 16px;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .hero-cta .btn {
        font-size: 0.85rem;
        padding: 12px 16px;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: visible;
    }
    
    .hero-image-wrapper {
        max-width: 260px;
        width: 85%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .jewellery-text h2 {
        font-size: 1.8rem;
    }
    
    .jewellery-subtitle {
        font-size: 1rem;
    }
    
    .jewellery-feature {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .jewellery-floating-card {
        left: 10px;
        bottom: -10px;
        padding: 14px 18px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .floating-title {
        font-size: 0.7rem;
    }
    
    .floating-desc {
        font-size: 0.9rem;
    }
    
    .banner-content {
        gap: 30px;
    }
    
    .banner-text h2 {
        font-size: 1.8rem;
    }
    
    .banner-img {
        max-width: 300px;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 30px 24px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-item {
        padding: 16px;
    }
    
    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 85px;
        right: 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2::after {
        width: 60px;
        height: 3px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .header-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .language-switcher {
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-cta .btn {
        font-size: 0.8rem;
        padding: 10px 14px;
    }
}

/* ===== RTL Support for Kannada ===== */
[dir="rtl"] {
    text-align: right;
}

/* ===== Print Styles ===== */
@media print {
    .header, .whatsapp-btn, .back-to-top {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    body {
        background: white;
    }
}
