/* 
   Shri Balaji Jewellers - Premium Custom Stylesheet
   Theme: Luxury Obsidian & Liquid Gold
*/

/* Reset & Root Variables */
:root {
    --bg-primary: #070707;
    --bg-secondary: #0e0e0e;
    --bg-tertiary: #141414;
    --bg-glass: rgba(14, 14, 14, 0.75);
    
    --gold-light: #fdf6e2;
    --gold-primary: #d4af37;
    --gold-secondary: #c5a059;
    --gold-dark: #aa771c;
    --gold-glow: rgba(212, 175, 55, 0.18);
    --gold-gradient: linear-gradient(135deg, #aa771c 0%, #fdf6e2 50%, #aa771c 100%);
    
    --text-primary: #f5ebe6;
    --text-secondary: #b8b0ab;
    --text-dark: #121212;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
    
    --border-gold: 1px solid rgba(212, 175, 55, 0.2);
    --border-gold-heavy: 1px solid rgba(212, 175, 55, 0.5);
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.1);
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto; /* Handled by Lenis */
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Custom Cursor */
.custom-cursor {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.custom-cursor-glow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.cursor-hover {
    width: 12px;
    height: 12px;
    background-color: var(--gold-primary);
}

.cursor-glow-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-primary);
}

/* Structural Components */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
}

.p-0 {
    padding: 0 !important;
}

.text-center {
    text-align: center;
}

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

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    border: 1px solid transparent;
}

.btn-gold::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: 0.6s;
    z-index: -1;
}

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

.btn-gold:hover {
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: var(--border-gold-heavy);
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    z-index: -1;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    color: var(--text-dark);
    font-weight: 600;
}

.btn-outline:hover::after {
    transform: translateY(0);
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: var(--border-glass);
    transition: var(--transition-smooth);
}

.header-scrolled {
    padding: 0.5rem 0;
    background-color: rgba(7, 7, 7, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    transition: var(--transition-smooth);
}

.header-scrolled .header-container {
    padding: 0.8rem 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    color: var(--gold-secondary);
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-header {
    padding: 0.6rem 1.6rem;
    font-size: 0.75rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 105;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--gold-primary);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--gold-primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(7, 7, 7, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border-left: var(--border-gold);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--gold-primary);
    transform: scale(1.05);
}

.mobile-btn {
    margin-top: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 7rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-secondary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

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

.hero-image-card {
    position: relative;
    border: var(--border-gold);
    padding: 1.2rem;
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-image-card:hover .hero-img {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 70%, rgba(7, 7, 7, 0.8) 100%);
    pointer-events: none;
}

/* Stat Cards */
.stat-card {
    position: absolute;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--border-gold);
    padding: 1.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    z-index: 2;
    transition: border-color 0.4s ease;
}

.stat-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.stat-card-1 {
    bottom: -1.5rem;
    left: -2.5rem;
}

.stat-card-2 {
    top: 4rem;
    right: -2rem;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.stat-txt {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 0.4rem;
}

/* Section Header */
.section-header {
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-secondary);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.title-separator {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 0 auto;
}

/* Legacy Section */
.legacy-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.legacy-card {
    background-color: var(--bg-tertiary);
    border: var(--border-glass);
    padding: 3.5rem 2.5rem;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.legacy-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium), inset 0 0 30px rgba(212, 175, 55, 0.05);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.legacy-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.5) 0%, rgba(212, 175, 55, 0.03) 100%);
    transition: var(--transition-smooth);
}

.legacy-card:hover .legacy-icon {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
}

.legacy-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.legacy-card-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Collections Section */
.collections-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.collection-filters {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 4.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: var(--border-glass);
    color: var(--text-secondary);
    padding: 0.6rem 1.6rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
    font-weight: 600;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.collection-item {
    background-color: var(--bg-secondary);
    border: var(--border-glass);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    overflow: hidden;
}

.collection-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.collection-item:hover .collection-img {
    transform: scale(1.05);
}

.collection-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 7, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.collection-item:hover .collection-hover-overlay {
    opacity: 1;
}

.collection-view-btn {
    border: var(--border-gold);
    color: var(--gold-primary);
    padding: 0.7rem 1.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.collection-view-btn:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
}

.collection-info {
    padding: 2rem;
    border-top: var(--border-glass);
}

.collection-category {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-secondary);
    display: block;
    margin-bottom: 0.6rem;
}

.collection-item-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.collection-item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Gold Calculator Section */
.calculator-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.calc-bg-pattern {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.calc-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
}

.live-rates-display {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.rate-card {
    background-color: var(--bg-tertiary);
    border: var(--border-gold);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-shadow: var(--shadow-premium);
}

.rate-purity {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.rate-val {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.rate-val small {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.calc-update-note {
    font-size: 0.75rem;
    color: var(--gold-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calculator-widget {
    background-color: var(--bg-tertiary);
    border: var(--border-gold);
    padding: 3rem;
    box-shadow: var(--shadow-premium);
}

.widget-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: var(--border-glass);
    padding-bottom: 1rem;
}

.calc-group {
    margin-bottom: 1.5rem;
}

.calc-group label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.8rem;
}

.calc-input {
    width: 100%;
    background-color: var(--bg-secondary);
    border: var(--border-glass);
    color: var(--text-primary);
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    border-radius: 0;
    outline: none;
    transition: var(--transition-fast);
}

.calc-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

select.calc-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23d4af37' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.calc-summary {
    background-color: rgba(7, 7, 7, 0.4);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: var(--border-glass);
}

.calc-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.calc-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 1rem 0;
}

.total-row {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 0;
}

.calc-btn {
    border: none;
}

/* Showroom Section */
.showroom-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
}

.showroom-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.showroom-image-box {
    position: relative;
    border: var(--border-gold);
    padding: 1.2rem;
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.showroom-parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-img-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(7, 7, 7, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

.showroom-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.showroom-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
}

.feat-item i {
    font-size: 1.4rem;
    color: var(--gold-primary);
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.review-card {
    background-color: var(--bg-tertiary);
    border: var(--border-glass);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: "\201C";
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: rgba(212, 175, 55, 0.05);
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

.review-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.review-author {
    border-top: var(--border-glass);
    padding-top: 1.2rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.author-location {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-secondary);
}

/* Contact/Booking Section */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 480px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-bottom: 4rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
}

.item-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    width: 50px;
    height: 50px;
    border: var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
}

.item-text h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.item-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-link:hover {
    color: var(--gold-primary);
}

.contact-socials h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    color: var(--text-dark);
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-panel {
    background-color: var(--bg-secondary);
    border: var(--border-gold);
    padding: 4rem;
    box-shadow: var(--shadow-premium);
}

.form-title {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.form-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    background-color: var(--bg-tertiary);
    border: var(--border-glass);
    color: var(--text-primary);
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    border-radius: 0;
    outline: none;
    transition: var(--transition-fast);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.appointment-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23d4af37' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.appointment-submit {
    border: none;
    padding: 1.2rem;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    position: relative;
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
}

/* Footer Section */
.footer {
    background-color: var(--bg-secondary);
    border-top: var(--border-glass);
    padding: 6rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 320px;
}

.footer-certificates {
    display: flex;
    gap: 1rem;
}

.cert-badge {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
    border: var(--border-gold);
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-primary);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links ul a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links ul a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-addr {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-phone, .footer-email {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.footer-phone strong, .footer-email strong {
    color: var(--text-primary);
}

.footer-phone a:hover, .footer-email a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: var(--border-glass);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a:hover {
    color: var(--gold-primary);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 7, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: auto;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--text-secondary);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1010;
}

.lightbox-close:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.lightbox-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
    background-color: var(--bg-secondary);
    border: var(--border-gold);
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    animation: zoomIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.lightbox-content-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border: var(--border-glass);
}

.lightbox-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.lightbox-category {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-secondary);
    margin-bottom: 1rem;
}

.lightbox-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lightbox-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.lightbox-booking-btn {
    width: auto;
}

/* Success Modal */
.booking-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.success-modal-content {
    background-color: var(--bg-secondary);
    border: var(--border-gold);
    padding: 4rem;
    max-width: 550px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-premium);
    animation: zoomIn 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.success-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.success-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.success-text strong {
    color: var(--text-primary);
}

.btn-success-close {
    border: none;
    min-width: 160px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        margin: 0 auto 3rem auto;
    }
    
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stat-card-1 {
        left: -1rem;
    }
    
    .stat-card-2 {
        right: -1rem;
    }
    
    .legacy-grid,
    .collections-grid,
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .calculator-wrapper,
    .showroom-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .showroom-image-box {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .lightbox-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .lightbox-content-img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .btn-header {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .legacy-grid,
    .collections-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-panel {
        padding: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .calculator-widget {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stat-card {
        padding: 0.8rem 1.2rem;
    }
    
    .stat-num {
        font-size: 1.6rem;
    }
    
    .stat-card-1 {
        bottom: -1rem;
        left: -0.5rem;
    }
    
    .stat-card-2 {
        top: 2rem;
        right: -0.5rem;
    }
}
