/* ==========================================================================
   Pradip Brothers - Ultra Premium Jewellery Store
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #c9a84c;
    --gold-light: #e8d398;
    --gold-dark: #a07c1c;
    --gold-glow: rgba(201, 168, 76, 0.25);
    --gold-gradient: linear-gradient(135deg, #e8d398, #c9a84c, #a07c1c);
    --gold-gradient-subtle: linear-gradient(135deg, #c9a84c 0%, #e8d398 50%, #c9a84c 100%);
    --dark: #0b0b0b;
    --darker: #050505;
    --dark-card: #111111;
    --dark-border: rgba(255,255,255,0.06);
    --text-body: #555;
    --cream: #faf8f2;
    --cream-dark: #f2efe5;
    --heading: 'Cormorant Garamond', serif;
    --body: 'Poppins', sans-serif;
    --shadow-soft: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-gold: 0 8px 30px rgba(201,168,76,0.15);
    --shadow-dark: 0 8px 30px rgba(0,0,0,0.4);
    --radius: 2px;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: #333;
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: #fff;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* === Typography === */
.font-heading { font-family: var(--heading) !important; }

.text-gold { color: var(--gold) !important; }

.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gold { background-color: var(--gold) !important; }

.bg-dark-custom { background: var(--dark) !important; }

.bg-darker { background: var(--darker) !important; }

.bg-cream { background: var(--cream) !important; }

.bg-cream-dark { background: var(--cream-dark) !important; }

.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.ls-3 { letter-spacing: 3px; }
.ls-5 { letter-spacing: 5px; }

.section-subtitle {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: var(--heading);
    font-weight: 600;
    font-size: 2.8rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.section-heading-light {
    font-family: var(--heading);
    font-weight: 600;
    font-size: 2.8rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.heading-line {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1rem auto 0;
}

.heading-line-left {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1rem 0 0;
}

/* === Buttons === */
.btn-gold {
    background: var(--gold-gradient);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-gold::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}
.btn-gold:hover::after {
    width: 400px; height: 400px;
}
.btn-gold:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 35px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s ease;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

/* === Topbar === */
.topbar {
    background: var(--darker);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.topbar a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}
.topbar a:hover { color: var(--gold); }

/* === Navbar === */
.navbar-custom {
    background: rgba(11,11,11,0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 1rem 0;
}
.navbar-custom.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-bottom-color: rgba(201,168,76,0.15);
}
.navbar-custom .navbar-brand {
    padding: 0;
}
.navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.navbar-custom.scrolled .navbar-logo {
    height: 45px;
}
.navbar-custom .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}
.navbar-custom .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--gold) !important;
}
.navbar-custom .nav-link:hover::before,
.navbar-custom .nav-link.active::before {
    width: 60%;
}
.navbar-custom .dropdown-menu {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 0;
    padding: 0.5rem 0;
}
.navbar-custom .dropdown-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s;
}
.navbar-custom .dropdown-item:hover {
    background: rgba(201,168,76,0.1);
    color: var(--gold);
}

/* === Hero === */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1599643478524-fb66f70a00ea?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    text-align: center;
}
.hero-content h1 {
    font-family: var(--heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 550px;
    margin: 0 auto 2rem;
    opacity: 0.85;
}
.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
    opacity: 0.6;
}

/* === Stats === */
.stats-section {
    background: var(--dark);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}
.stat-number {
    font-family: var(--heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
}

/* === About Image === */
.about-img-wrapper {
    position: relative;
    z-index: 1;
}
.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
    transition: all 0.4s ease;
}
.about-img-wrapper:hover::before {
    top: -10px;
    left: -10px;
}
.about-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60%;
    height: 60%;
    background: var(--gold-glow);
    z-index: -2;
    filter: blur(40px);
}

/* === Cards === */
.card-luxury {
    background: #fff;
    border: none;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}
.card-luxury:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.card-luxury::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.card-luxury:hover::after {
    transform: scaleX(1);
}

.card-dark {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}
.card-dark:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-dark);
    border-color: rgba(201,168,76,0.3);
}

/* Image Zoom */
.img-zoom-wrap { overflow: hidden; }
.img-zoom-wrap img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.card-luxury:hover .img-zoom-wrap img,
.card-dark:hover .img-zoom-wrap img,
.gallery-cell:hover img {
    transform: scale(1.1);
}

/* === Process Steps === */
.process-step {
    position: relative;
    text-align: center;
    padding: 0 1rem;
}
.step-number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #fff;
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-gold);
}
.step-connector {
    position: absolute;
    top: 30px;
    left: 60%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* === Gallery === */
.gallery-cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-cell img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-cell:hover::before { opacity: 1; }
.gallery-cell .gallery-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: #fff;
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}
.gallery-cell:hover .gallery-text {
    transform: translateY(0);
    opacity: 1;
}

/* === Testimonial === */
.testimonial-quote {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-body);
}
.quote-mark {
    font-family: var(--heading);
    font-size: 5rem;
    color: var(--gold);
    line-height: 0.5;
    opacity: 0.3;
}

/* === Contact Form === */
.contact-form .form-control {
    background: var(--cream);
    border: 1px solid #e0dcd2;
    border-radius: 0;
    padding: 0.9rem 1.2rem;
    font-size: 0.88rem;
    transition: all 0.3s;
}
.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: #fff;
}
.contact-form .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}
.contact-form .form-check-input:focus {
    box-shadow: 0 0 0 3px var(--gold-glow);
    border-color: var(--gold);
}

.footer-main {
    background: var(--dark);
    border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-logo {
    height: 80px;
    width: auto;
}
.footer-bottom {
    background: var(--darker);
}
.footer-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-block;
}
.footer-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}
.social-circle {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.4s;
    font-size: 0.9rem;
}
.social-circle:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201,168,76,0.2);
}

/* === WhatsApp Float === */
.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: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* === Map === */
.map-wrapper {
    position: relative;
}
.map-wrapper iframe {
    filter: grayscale(30%) contrast(1.05);
    transition: filter 0.5s;
}
.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

/* === Page Header (policies) === */
.page-hero {
    background: var(--dark);
    padding: 10rem 0 4rem;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
}
.page-content h2 {
    font-family: var(--heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.page-content p, .page-content li {
    color: var(--text-body);
    line-height: 1.8;
}

/* === Responsive === */
@media (max-width: 991px) {
    .section-heading, .section-heading-light { font-size: 2.2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .step-connector { display: none; }
    .about-img-wrapper::before { top: -10px; left: -10px; }
}

@media (max-width: 767px) {
    .section-heading, .section-heading-light { font-size: 1.8rem; }
    .stat-number { font-size: 2rem; }
    .gallery-cell img { height: 200px; }
}
