:root {
    --gold: #f1d68a;
    --gold-dark: #a68742;
    --brown: #664411;
    --bg-dark: #0a0a0f;
    --bg: #0a0a0f;
    --bg-elevated: #0f0f18;
    --surface: #151520;
    --border: #1f1f30;
    --border-light: #2a2a3d;
    --text: #f5f4f1;
    --text-secondary: #bbb9b1;
    --text-muted: #7d7b74;
    --accent: #f1d68a;
    --accent-hover: #f7e2a8;
    --accent-dark: #a68742;
    --accent-soft: rgba(241, 214, 138, 0.07);
    --accent-glow: rgba(241, 214, 138, 0.14);
    --gold-gradient: linear-gradient(135deg, #f1d68a 0%, #c9983a 40%, #a68742 70%, #664411 100%);
    --gold-gradient-light: linear-gradient(135deg, #f7e2a8 0%, #f1d68a 40%, #d4a745 70%, #b8862b 100%);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    --radius: 20px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    --cutomtext: #0a0a0f;
    --siteservicetabbg: #ffe19e;
    --siteservicetabcolor: #000000;
    --logorevealbg: #0a0a0f;

}

[data-theme="light"] {
    --bg: #fafaf7;
    --bg-elevated: #f3f1ea;
    --surface: #ffffff;
    --border: #e5e0d5;
    --border-light: #eee9df;
    --text: #1a1815;
    --text-secondary: #5c5850;
    --text-muted: #8b8680;
    --accent: #a68742;
    --accent-hover: #b8954e;
    --accent-dark: #664411;
    --accent-soft: rgba(166, 135, 66, 0.08);
    --accent-glow: rgba(166, 135, 66, 0.12);
    --gold-gradient: linear-gradient(135deg, #a68742 0%, #8b6b2e 40%, #664411 70%, #4a2e08 100%);
    --gold-gradient-light: linear-gradient(135deg, #c9983a 0%, #b8862b 40%, #a07028 70%, #8b5e20 100%);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    --cutomtext: #ffffff;
    --siteservicetabbg: #000000;
    --siteservicetabcolor: #ffe19e;
    --logorevealbg: #F3F1EA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw; 
    overflow-x: hidden;  /* ✅ HTML pe rakh */
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    /* overflow-x: hidden;  ← ❌ BODY SE HATAO */
    width: 100%;
    max-width: 100vw;
    transition: background 0.5s, color 0.5s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img, video { display: block; max-width: 100%; height: auto; }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }
.fade-in-delay-4 { transition-delay: 0.48s; }

.float-anim { animation: floatY 4s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }

.pulse-anim { animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

.shimmer { position: relative; overflow: hidden; }
.shimmer::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(241, 214, 138, 0.08) 50%, transparent 60%);
    animation: shimmerMove 3s infinite;
}
@keyframes shimmerMove { 0% { transform: translateX(-100%) translateY(-100%); } 100% { transform: translateX(100%) translateY(100%); } }

/* Top Bar */
.top-bar { background: #a68742; color: #fff; font-size: 18px; position: relative; z-index: 1001; width: 100%; }
.top-bar-inner { max-width: 1400px; margin: auto; padding: 10px 30px; display: flex; align-items: center; justify-content: space-between; width: 100%; box-sizing: border-box; }
.top-bar-left { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.top-bar-left a, .top-bar-left span { color: #fff; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.top-bar-left a:hover { opacity: .85; }
.top-bar-right { display: flex; align-items: center; }
.top-contact-btn { background: #fff; color: #a68742; padding: 8px 18px; border-radius: 30px; font-weight: 700; transition: .3s; white-space: nowrap; }
.top-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .12); }

/* Nav */
.nav { position: sticky; top: 0; left: 0; width: 100%; z-index: 9999; background: rgba(10, 10, 15, 0.78); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); border-bottom: 1px solid var(--border); padding: 12px 32px; transition: all 0.4s; box-sizing: border-box; }
.nav.scrolled { position: fixed; top: 0; background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(20px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }
[data-theme="light"] .nav { background: rgba(250, 250, 247, 0.82); }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; width: 100%; box-sizing: border-box; }
.nav-logo { display: flex; align-items: center; gap: 14px; position: relative; }
.nav-logo-dice-wrap { position: relative; width: 75px; height: 75px; perspective: 400px; flex-shrink: 0; }
.nav-logo-dice { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; animation: diceContinuous 6s linear infinite; }
@keyframes diceContinuous { 0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); } 25% { transform: rotateX(180deg) rotateY(90deg) rotateZ(45deg); } 50% { transform: rotateX(360deg) rotateY(180deg) rotateZ(90deg); } 75% { transform: rotateX(540deg) rotateY(270deg) rotateZ(135deg); } 100% { transform: rotateX(720deg) rotateY(360deg) rotateZ(180deg); } }
.dice-face { position: absolute; width: 75px; height: 75px; display: flex; align-items: center; justify-content: center; backface-visibility: hidden; border-radius: 10px; border: 2px solid var(--gold); overflow: hidden; background: #0a0a0f; }
.dice-face img { width: 72%; height: 72%; object-fit: contain; }
.dice-front { transform: translateZ(37px); border-color: #f1d68a; box-shadow: 0 0 20px rgba(241,214,138,0.5); }
.dice-back { transform: rotateY(180deg) translateZ(37px); border-color: #a68742; box-shadow: 0 0 20px rgba(166,135,66,0.5); }
.dice-right { transform: rotateY(90deg) translateZ(37px); border-color: #664411; box-shadow: 0 0 20px rgba(102,68,17,0.5); }
.dice-left { transform: rotateY(-90deg) translateZ(37px); border-color: #f1d68a; box-shadow: 0 0 20px rgba(241,214,138,0.5); }
.dice-top { transform: rotateX(90deg) translateZ(37px); border-color: #a68742; box-shadow: 0 0 20px rgba(166,135,66,0.5); }
.dice-bottom { transform: rotateX(-90deg) translateZ(37px); border-color: #664411; box-shadow: 0 0 20px rgba(102,68,17,0.5); }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 2.05rem; letter-spacing: 0.06em; background: var(--gold-gradient-light); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; }
.nav-brand-sub { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); font-weight: 600; font-family: var(--font-body); }
.nav-links { display: flex; gap: 3px; align-items: center; background: var(--surface); border-radius: 50px; padding: 5px; border: 1px solid var(--border); }
.nav-links a { padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: 1.25rem; color: var(--text-secondary); letter-spacing: 0.02em; font-family: var(--font-body); position: relative; overflow: hidden; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--accent); transition: all 0.3s ease; transform: translateX(-50%); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active, .nav-links a:hover { background: var(--accent); color: var(--cutomtext); font-weight: 700; box-shadow: 0 4px 16px var(--accent-glow); }
.nav-links a.active::after, .nav-links a:hover::after { width: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-btn { background: var(--surface); border: 1.5px solid var(--border); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.05rem; color: var(--text-secondary); transition: var(--transition); animation: pulse 3s ease-in-out infinite; }
.theme-btn:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 18px var(--accent-glow); animation: none; }
.nav-cta { background: var(--gold-gradient); color: #ffffff !important; padding: 11px 22px !important; border-radius: 50px; font-weight: 700; font-size: 1.25rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 7px; box-shadow: 0 4px 16px rgba(241, 214, 138, 0.2); font-family: var(--font-body); letter-spacing: 0.03em; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); animation: glowPulse 2.5s ease-in-out infinite; }
@keyframes glowPulse { 0%, 100% { box-shadow: 0 4px 16px rgba(241, 214, 138, 0.2); } 50% { box-shadow: 0 8px 30px rgba(241, 214, 138, 0.45); } }
.nav-cta:hover { box-shadow: 0 8px 28px rgba(241, 214, 138, 0.35); transform: translateY(-2px); color: #ffffff !important; animation: none; }
.menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 10px; }
.menu-btn span { width: 26px; height: 2.5px; background: var(--accent); border-radius: 3px; transition: 0.3s; display: block; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 10000; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.3rem; color: var(--text); font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.04em; }
.mobile-menu .nav-cta { margin-top: 14px; font-size: 1.1rem; padding: 14px 30px; color: #ffffff !important; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }
.mobile-close { position: absolute; top: 24px; right: 32px; font-size: 2.5rem; cursor: pointer; color: var(--text); background: none; border: none; line-height: 1; }

/* Logo Reveal Overlay */
.logo-reveal-overlay { position: fixed; inset: 0; background: var(--logorevealbg); z-index: 10000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; animation: overlayFadeOut 0.5s ease 3s forwards; pointer-events: all; }
@keyframes overlayFadeOut { to { opacity: 0; pointer-events: none; } }
.logo-reveal-container { perspective: 900px; width: 170px; height: 170px; }
.logo-reveal-cube { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; animation: diceRoll 2.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
@keyframes diceRoll { 0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.5); opacity: 0; } 15% { transform: rotateX(180deg) rotateY(120deg) rotateZ(45deg) scale(1); opacity: 1; } 35% { transform: rotateX(360deg) rotateY(240deg) rotateZ(135deg) scale(1.05); } 55% { transform: rotateX(540deg) rotateY(360deg) rotateZ(225deg) scale(1); } 75% { transform: rotateX(720deg) rotateY(540deg) rotateZ(315deg) scale(1.02); } 90% { transform: rotateX(720deg) rotateY(720deg) rotateZ(350deg) scale(1.01); } 100% { transform: rotateX(720deg) rotateY(720deg) rotateZ(360deg) scale(1); opacity: 1; } }
.cube-face { position: absolute; width: 170px; height: 170px; display: flex; align-items: center; justify-content: center; backface-visibility: hidden; border-radius: 18px; border: 3px solid var(--gold); overflow: hidden; background: #0a0a0f; }
.cube-face img { width: 78%; height: 78%; object-fit: contain; }
.cube-front { transform: translateZ(85px); border-color: #f1d68a; box-shadow: 0 0 45px rgba(241,214,138,0.5); }
.cube-back { transform: rotateY(180deg) translateZ(85px); border-color: #a68742; box-shadow: 0 0 45px rgba(166,135,66,0.5); }
.cube-right { transform: rotateY(90deg) translateZ(85px); border-color: #664411; box-shadow: 0 0 45px rgba(102,68,17,0.5); }
.cube-left { transform: rotateY(-90deg) translateZ(85px); border-color: #f1d68a; box-shadow: 0 0 45px rgba(241,214,138,0.5); }
.cube-top { transform: rotateX(90deg) translateZ(85px); border-color: #a68742; box-shadow: 0 0 45px rgba(166,135,66,0.5); }
.cube-bottom { transform: rotateX(-90deg) translateZ(85px); border-color: #664411; box-shadow: 0 0 45px rgba(102,68,17,0.5); }
.reveal-text { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; letter-spacing: 0.1em; background: var(--gold-gradient-light); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; opacity: 0; animation: revealTextIn 0.7s ease 0.8s forwards, revealTextOut 0.5s ease 2.7s forwards; z-index: 10001; white-space: nowrap; }
@keyframes revealTextIn { to { opacity: 1; } }
@keyframes revealTextOut { to { opacity: 0; } }
.reveal-subtitle { font-family: var(--font-body); font-weight: 500; font-size: 0.875rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); opacity: 0; animation: revealTextIn 0.7s ease 1.1s forwards, revealTextOut 0.5s ease 2.7s forwards; z-index: 10001; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--bg); overflow: hidden; width: 100%; box-sizing: border-box; }
.hero-bg-particles { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.hero-bg-particles span { position: absolute; width: 2.5px; height: 2.5px; background: var(--accent); border-radius: 50%; animation: particleFloat 7s infinite ease-in-out; }
@keyframes particleFloat { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0; } 20% { opacity: 0.9; } 50% { transform: translateY(-70px) translateX(25px); opacity: 0.25; } 70% { opacity: 0.7; } }
.hero-image { position: absolute; top: 0; right: 0; width: 50%; height: 100%; object-fit: cover; mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 25%, rgba(0,0,0,0) 100%); -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 25%, rgba(0,0,0,0) 100%); z-index: 0; }
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 0 44px; margin-left: 6%; box-sizing: border-box; }
.badge { display: inline-flex; align-items: center; gap: 10px; background: var(--accent-soft); border: 1px solid rgba(241, 214, 138, 0.18); border-radius: 40px; padding: 7px 20px; font-size: 0.925rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 26px; font-family: var(--font-body); }
.badge-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: dotPulse 1.8s infinite; }
@keyframes dotPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(241,214,138,0.7); } 50% { box-shadow: 0 0 0 12px rgba(241,214,138,0); } }
.hero h1 { font-size: clamp(2.6rem, 8.5vw, 5rem); line-height: 1.06; margin-bottom: 20px; font-weight: 700; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 700; }
.hero p { font-size: 1.35rem; color: var(--text-secondary); max-width: 520px; margin-bottom: 34px; line-height: 1.5; font-weight: 400; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 1.25rem; transition: var(--transition); border: none; cursor: pointer; font-family: var(--font-body); letter-spacing: 0.03em; }
.btn-primary { background: var(--gold-gradient); color: #ffffff; box-shadow: 0 6px 22px rgba(241, 214, 138, 0.22); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); animation: glowPulse 2.5s ease-in-out infinite; position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%); animation: shimmerMove 3s infinite; }
.btn-primary:hover { box-shadow: 0 12px 36px rgba(241, 214, 138, 0.4); transform: translateY(-3px); color: #ffffff; animation: none; }
.btn-outline { background: transparent; border: 2px solid var(--accent-dark); color: var(--accent); font-weight: 600; font-size: 1.25rem; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 6px 20px var(--accent-soft); }

/* Sections */
.section { padding: 110px 36px; width: 100%; box-sizing: border-box; }
.section-alt { background: var(--bg-elevated); }
.container { max-width: 1340px; margin: 0 auto; width: 100%; box-sizing: border-box; }
.section-tag { display: inline-flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 12px; font-family: var(--font-body); }
.section-tag::before { content: ''; width: 26px; height: 1.5px; background: var(--accent); animation: tagLinePulse 2s ease-in-out infinite; }
@keyframes tagLinePulse { 0%, 100% { width: 26px; opacity: 1; } 50% { width: 40px; opacity: 0.5; } }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.16; margin-bottom: 18px; font-weight: 700; }
.section-title em { font-style: italic; color: var(--accent); font-weight: 700; }
.specialist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* Image Frame */
.img-frame { position: relative; display: inline-block; width: 100%; }
.img-frame .frame-outer { position: absolute; inset: -16px -16px 16px 16px; border: 2.5px solid rgba(241, 214, 138, 0.5); border-radius: 24px; z-index: 1; pointer-events: none; animation: framePulse 3s ease-in-out infinite; }
@keyframes framePulse { 0%, 100% { border-color: rgba(241,214,138,0.5); } 50% { border-color: rgba(241,214,138,0.8); } }
.img-frame .frame-inner { position: absolute; inset: 16px 16px -16px -16px; border: 1.5px solid rgba(166, 135, 66, 0.35); border-radius: 24px; z-index: 1; pointer-events: none; }
.img-frame .dot-tl { position: absolute; top: -20px; left: -20px; width: 10px; height: 10px; background: #f1d68a; border-radius: 50%; z-index: 3; opacity: 0.9; box-shadow: 0 0 14px rgba(241,214,138,0.6); animation: dotBlink 2s ease-in-out infinite; }
@keyframes dotBlink { 0%, 100% { opacity: 0.9; box-shadow: 0 0 14px rgba(241,214,138,0.6); } 50% { opacity: 0.4; box-shadow: 0 0 24px rgba(241,214,138,0.9); } }
.img-frame .dot-br { position: absolute; bottom: 10px; right: -20px; width: 8px; height: 8px; background: #a68742; border-radius: 50%; z-index: 3; opacity: 0.7; box-shadow: 0 0 10px rgba(166,135,66,0.4); animation: dotBlink 2s ease-in-out 0.5s infinite; }
.img-frame .line-right { position: absolute; top: 35%; right: -28px; width: 28px; height: 1.5px; background: linear-gradient(to left, #f1d68a, transparent); z-index: 3; opacity: 0.7; }
.img-frame .line-left { position: absolute; bottom: 35%; left: -28px; width: 28px; height: 1.5px; background: linear-gradient(to right, #a68742, transparent); z-index: 3; opacity: 0.7; }
.img-frame img, .img-frame video { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 20px; display: block; position: relative; z-index: 2; transition: transform 0.6s ease; }
.img-frame:hover img, .img-frame:hover video { transform: scale(1.02); }

/* Services Tabs */
.services-tabs-nav { display: flex; justify-content: center; gap: 8px; margin-bottom: 46px; flex-wrap: wrap; }
.services-tabs-nav button { background: var(--surface); border: 1.5px solid var(--border); border-radius: 50px; padding: 11px 24px; font-weight: 600; font-size: 1.05rem; color: var(--text-secondary); cursor: pointer; transition: var(--transition); font-family: var(--font-body); letter-spacing: 0.03em; position: relative; overflow: hidden; }
.services-tabs-nav button.active, .services-tabs-nav button:hover { background: var(--siteservicetabbg); color: var(--siteservicetabcolor); border-color: transparent; box-shadow: 0 5px 18px var(--accent-glow); font-weight: 700; }
.services-tab-content { display: none; }
.services-tab-content.active { display: block; animation: fadeSlideIn 0.45s ease; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; background: var(--surface); border-radius: var(--radius); padding: 38px; border: 1px solid var(--border); box-shadow: var(--shadow); box-sizing: border-box; }
.service-detail-info h3 { font-size: 2rem; margin-bottom: 12px; font-weight: 700; }
.service-detail-info h3 em { font-style: italic; color: var(--accent); }
.service-detail-info p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 10px; }
.service-detail-info ul { list-style: none; padding: 0; color: var(--text-secondary); columns: 2; margin-bottom: 16px; }
.service-detail-info ul li { margin-bottom: 6px; }
.service-detail-info ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; color: var(--accent); margin-right: 7px; font-weight: 900; font-size: 0.9rem; }
.read-more-btn { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 700; font-size: 1.1rem; border-bottom: 1.5px solid transparent; padding-bottom: 3px; transition: var(--transition); cursor: pointer; background: none; border-top: none; border-left: none; border-right: none; font-family: var(--font-body); letter-spacing: 0.03em; }
.read-more-btn:hover { border-bottom-color: var(--accent); gap: 11px; }

/* Rope Showcase */
.rope-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.rope-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rope-gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform 0.4s ease; }
.rope-gallery-item:hover { transform: translateY(-4px); }
.rope-gallery-item img, .rope-gallery-item video { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.rope-gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(10, 10, 15, 0.88); color: var(--accent); text-align: center; padding: 9px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; backdrop-filter: blur(6px); font-family: var(--font-body); }
.rope-content ul { list-style: none; padding: 0; color: var(--text-secondary); columns: 2; margin-bottom: 16px; }
.rope-content ul li { margin-bottom: 6px; transition: transform 0.3s ease, color 0.3s ease; cursor: default; }
.rope-content ul li:hover { transform: translateX(4px); color: var(--accent); }
.rope-content ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; color: var(--accent); margin-right: 7px; font-weight: 900; font-size: 0.9rem; }

/* USP Grid */
.usp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.usp-card { background: var(--surface); border-radius: var(--radius); padding: 30px 18px; text-align: center; border: 1px solid var(--border); transition: var(--transition); cursor: pointer; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); box-sizing: border-box; }
[data-theme="light"] .usp-card { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); }
.usp-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 14px 38px var(--accent-glow); }
.usp-icon { width: 48px; height: 48px; background: var(--accent-soft); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.56rem; color: var(--accent); transition: var(--transition); }
.usp-card:hover .usp-icon { background: var(--accent); color: #ffffff; animation: iconBounce 0.5s ease; }
@keyframes iconBounce { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.usp-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; margin-bottom: 5px; letter-spacing: 0.02em; }
.usp-card p { font-size: 1rem; color: var(--text-muted); }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; box-sizing: border-box; }
.blog-card:hover { border-color: var(--accent); transform: translateY(-7px); box-shadow: 0 18px 46px var(--accent-glow); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-card-body .blog-date { font-size: 0.925rem; color: var(--text-muted); margin-bottom: 7px; font-family: var(--font-body); letter-spacing: 0.04em; }
.blog-card-body h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.31rem; margin-bottom: 9px; letter-spacing: 0.01em; }
.blog-card-body p { color: var(--text-secondary); font-size: 1.075rem; line-height: 1.6; margin-bottom: 11px; }
.text-link { color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 7px; border-bottom: 1.5px solid transparent; padding-bottom: 2px; transition: var(--transition); font-size: 1.075rem; font-family: var(--font-body); letter-spacing: 0.03em; }
.text-link:hover { border-bottom-color: var(--accent); gap: 11px; }

/* Testimonial */
.testimonial-card { max-width: 620px; margin: 34px auto 0; background: var(--surface); border-radius: var(--radius); padding: 44px 36px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); box-sizing: border-box; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-soft); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.875rem; color: var(--accent); font-weight: 700; animation: floatY 3s ease-in-out infinite; }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.contact-card { background: var(--surface); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); border: 1px solid var(--border); display: flex; flex-direction: column; height: 100%; box-sizing: border-box; }
.contact-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.375rem; margin-bottom: 20px; color: var(--accent); letter-spacing: 0.04em; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; transition: transform 0.3s ease; }
.contact-info-item:hover { transform: translateX(3px); }
.contact-icon-circle { width: 42px; height: 42px; background: var(--accent-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); font-size: 1.187rem; transition: var(--transition); }
.contact-info-item:hover .contact-icon-circle { background: var(--accent); color: #ffffff; }
.contact-info-text h5 { font-family: var(--font-body); font-size: 1.325rem; margin-bottom: 2px; font-weight: 600; letter-spacing: 0.03em; }
.contact-form { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea { background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 14px 17px; font-family: var(--font-body); color: var(--text); transition: var(--transition); resize: vertical; font-size: 1.125rem; box-sizing: border-box; width: 100%; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.contact-form textarea { flex: 1; min-height: 110px; }
.contact-form button { background: var(--gold-gradient); color: #ffffff; border: none; border-radius: 50px; padding: 14px 28px; font-weight: 700; font-family: var(--font-body); cursor: pointer; align-self: flex-start; letter-spacing: 0.04em; box-shadow: 0 4px 16px rgba(241, 214, 138, 0.18); transition: var(--transition); font-size: 1.25rem; }
.contact-form button:hover { box-shadow: 0 10px 30px rgba(241,214,138,0.35); transform: translateY(-2px); }
.map-wrap { margin-top: 16px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 180px; border: none; }

/* CTA Section */
.cta-section { position: relative; padding: 130px 36px; overflow: hidden; display: flex; align-items: center; justify-content: center; width: 100%; box-sizing: border-box; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; animation: slowZoom 20s ease-in-out infinite; }
@keyframes slowZoom { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.8) 50%, rgba(10,10,15,0.95) 100%); }
.cta-content { position: relative; z-index: 2; max-width: 700px; text-align: center; }
.cta-content h2 { color: #f5f4f1; margin-bottom: 30px; font-size: clamp(2rem, 3.75vw, 3rem); font-weight: 700; }

/* Footer */
.footer { background: #0a0a0f; color: #b0b0b0; padding: 54px 36px 22px; border-top: 1px solid #1f1f30; width: 100%; box-sizing: border-box; }
[data-theme="light"] .footer { background: #1a1815; color: #c0bdb5; }
.footer-grid { max-width: 1340px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 38px; margin-bottom: 30px; width: 100%; box-sizing: border-box; }
.footer-logo-img { height: 90px; filter: brightness(1.2); animation: floatY 4s ease-in-out infinite; }
.footer h5 { color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 13px; font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: #ccc; font-size: 1.3125rem; font-weight: 400; transition: var(--transition); }
.footer ul li a:hover { color: var(--accent); padding-left: 4px; }
.social-icons { display: flex; gap: 9px; margin-top: 12px; }
.social-icons a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 1.025rem; transition: var(--transition); }
.social-icons a:hover { background: var(--accent); color: #ffffff; transform: translateY(-3px); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 20px; font-size: 1rem; color: #888; max-width: 1340px; margin: 0 auto; font-family: var(--font-body); letter-spacing: 0.03em; width: 100%; box-sizing: border-box; }
.footer-bottom .designer { color: var(--accent); font-weight: 600; }

/* Video Gallery */
.video-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.video-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition); cursor: pointer; box-sizing: border-box; }
.video-card:hover { border-color: var(--accent); transform: translateY(-7px); box-shadow: 0 18px 46px var(--accent-glow); }
.video-card-frame { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.video-card-frame video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; pointer-events: none; }
.video-card:hover .video-card-frame video { transform: scale(1.05); }
.video-card-overlay { position: absolute; inset: 0; background: rgba(10, 10, 15, 0.5); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; }
.video-card:hover .video-card-overlay { background: rgba(10, 10, 15, 0.7); }
.video-card-overlay i { font-size: 3.5rem; color: var(--accent); text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6); transition: transform 0.3s ease; }
.video-card:hover .video-card-overlay i { transform: scale(1.15); }
.video-card-body { padding: 22px; text-align: center; }
.video-card-body h4 { font-family: var(--font-heading); font-weight: 600; font-size: 1.31rem; margin-bottom: 7px; letter-spacing: 0.01em; color: var(--accent); }
.video-card-body p { color: var(--text-secondary); font-size: 1.075rem; line-height: 1.6; }

/* Video Popup */
.video-popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); z-index: 10000; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; }
.video-popup-overlay.active { display: flex; }
.video-popup { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; max-width: 900px; width: 100%; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8); animation: popIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; box-sizing: border-box; }
@keyframes popIn { from { opacity: 0; transform: scale(0.85) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.video-popup-close { position: absolute; top: 10px; right: 18px; font-size: 2.5rem; cursor: pointer; color: var(--text); background: none; border: none; line-height: 1; z-index: 2; transition: color 0.3s ease; }
.video-popup-close:hover { color: var(--accent); }
.video-popup-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; margin-bottom: 20px; color: var(--accent); text-align: center; padding-right: 30px; }
.video-popup-container { width: 100%; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: #000; }
.video-popup-container video { width: 100%; height: 100%; object-fit: contain; }

/* Responsive */
@media(max-width:1378px) { .nav-cta { font-size: .85rem; } .nav-links a { font-size: 1rem; } .nav-brand-name { font-size: 1.65rem; } .nav-brand-sub { font-size: .75rem; } }
@media(max-width:768px) { 
    .top-bar-inner { flex-direction: column; gap: 5px; padding: 10px 15px; width: 100%; box-sizing: border-box; } 
    .top-bar-left { justify-content: center; gap: 7px; text-align: center; width: 100%; box-sizing: border-box; } 
    .top-bar-right { width: 100%; box-sizing: border-box; justify-content: center; } 
}
@media (max-width: 1100px) {
    .hero-image { width: 48%; } .blog-grid { grid-template-columns: repeat(2, 1fr); } .usp-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; } .rope-showcase { grid-template-columns: 1fr; } .service-detail-grid { grid-template-columns: 1fr; }
    .specialist-grid { grid-template-columns: 1fr; gap: 34px; } .nav-brand-name { font-size: 1.25rem; } .nav-links a { font-size: .85rem; }
    .nav-logo-dice-wrap { width: 55px; height: 55px; } .dice-face { width: 55px; height: 55px; }
    .dice-front { transform: translateZ(27px); } .dice-back { transform: rotateY(180deg) translateZ(27px); }
    .dice-right { transform: rotateY(90deg) translateZ(27px); } .dice-left { transform: rotateY(-90deg) translateZ(27px); }
    .dice-top { transform: rotateX(90deg) translateZ(27px); } .dice-bottom { transform: rotateX(-90deg) translateZ(27px); }
    .video-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
    .hero { min-height: 90vh; width: 100%; box-sizing: border-box; } .footer-logo-img { margin: 0 auto; }
    .nav-links { display: none; } .nav-cta.desktop-cta { display: none; } .menu-btn { display: flex; }
    .hero-content { margin-left: 0; text-align: center; max-width: 100%; padding: 0 22px; box-sizing: border-box; }
    .hero p { margin: 0 auto 34px; } .btn-group { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; } .blog-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; } .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; } .social-icons { justify-content: center; }
    .form-row { grid-template-columns: 1fr; } .rope-gallery { grid-template-columns: 1fr 1fr; }
    .rope-content ul, .service-detail-info ul { columns: 1; }
    .img-frame .frame-outer, .img-frame .frame-inner, .img-frame .dot-tl, .img-frame .dot-br, .img-frame .line-right, .img-frame .line-left { display: none; }
    .specialist-grid { grid-template-columns: 1fr; } .section { padding: 80px 20px; width: 100%; box-sizing: border-box; }
    .container { padding: 10px; width: 100%; box-sizing: border-box; } .nav { padding: 12px 20px; width: 100%; box-sizing: border-box; }
    .video-gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
    .blog-grid { grid-template-columns: 1fr; } .usp-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero h1 { font-size: 2rem; } .section { padding: 56px 16px; width: 100%; box-sizing: border-box; }
    .rope-gallery { grid-template-columns: 1fr; }
    .nav-logo-dice-wrap { width: 42px; height: 42px; } .dice-face { width: 42px; height: 42px; }
    .dice-front { transform: translateZ(21px); } .dice-back { transform: rotateY(180deg) translateZ(21px); }
    .dice-right { transform: rotateY(90deg) translateZ(21px); } .dice-left { transform: rotateY(-90deg) translateZ(21px); }
    .dice-top { transform: rotateX(90deg) translateZ(21px); } .dice-bottom { transform: rotateX(-90deg) translateZ(21px); }
    .logo-reveal-container { width: 120px; height: 120px; } .cube-face { width: 120px; height: 120px; }
    .cube-front { transform: translateZ(60px); } .cube-back { transform: rotateY(180deg) translateZ(60px); }
    .cube-right { transform: rotateY(90deg) translateZ(60px); } .cube-left { transform: rotateY(-90deg) translateZ(60px); }
    .cube-top { transform: rotateX(90deg) translateZ(60px); } .cube-bottom { transform: rotateX(-90deg) translateZ(60px); }
    .reveal-text { font-size: 1.25rem; } .reveal-subtitle { font-size: 0.725rem; }
    .nav { padding: 10px 15px; width: 100%; box-sizing: border-box; }
}
@media (max-width: 360px) {
    .nav-brand-name { font-size: 1rem; } .nav-brand-sub { font-size: .45rem; }
}

/* ========== PAGE BANNER ========== */
/* ========== ULTRA PREMIUM BANNER ========== */
.premium-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

/* Animated Grid Pattern */
.premium-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(241,214,138,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(241,214,138,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 15s linear infinite;
    pointer-events: none;
}

[data-theme="light"] .premium-grid {
    background-image: 
        linear-gradient(rgba(166,135,66,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(166,135,66,0.04) 1px, transparent 1px);
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Background Image */
.premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.premium-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: premiumZoom 25s ease-in-out infinite;
}

@keyframes premiumZoom {
    0%, 100% { transform: scale(1.08); }
    50% { transform: scale(1.18); }
}

/* Overlay */
.premium-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(241,214,138,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(166,135,66,0.04) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10,10,15,0.82) 0%, rgba(10,10,15,0.7) 50%, rgba(10,10,15,0.85) 100%);
}

[data-theme="light"] .premium-overlay {
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(166,135,66,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(241,214,138,0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(250,250,247,0.78) 50%, rgba(245,244,241,0.88) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Floating Geometric Shapes */
.premium-shape {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    opacity: 0.06;
}

[data-theme="light"] .premium-shape {
    opacity: 0.08;
}

.premium-shape svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
}

.shape-1 {
    width: 180px;
    height: 180px;
    top: -50px;
    left: -40px;
    animation: shapeMorph1 12s ease-in-out infinite;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 5%;
    animation: shapeMorph2 10s ease-in-out 1s infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 10%;
    animation: shapeMorph1 14s ease-in-out 2s infinite;
}

.shape-4 {
    width: 140px;
    height: 140px;
    bottom: -40px;
    right: -30px;
    animation: shapeMorph2 11s ease-in-out 0.5s infinite;
}

@keyframes shapeMorph1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(15px, -20px) rotate(5deg) scale(1.1); }
    66% { transform: translate(-10px, 10px) rotate(-3deg) scale(0.95); }
}

@keyframes shapeMorph2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-20px, -15px) rotate(-8deg) scale(1.15); }
}

/* Floating Particles */
.premium-particle {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    border-radius: 50%;
    background: var(--accent);
}

.particle-1 { width: 2px; height: 2px; top: 15%; left: 20%; animation: particleFloat1 8s ease-in-out infinite; }
.particle-2 { width: 3px; height: 3px; top: 25%; right: 15%; animation: particleFloat2 9s ease-in-out 1s infinite; }
.particle-3 { width: 1.5px; height: 1.5px; bottom: 30%; left: 30%; animation: particleFloat1 7s ease-in-out 2s infinite; }
.particle-4 { width: 2.5px; height: 2.5px; bottom: 20%; right: 25%; animation: particleFloat2 10s ease-in-out 0.5s infinite; }
.particle-5 { width: 1px; height: 1px; top: 40%; left: 60%; animation: particleFloat1 11s ease-in-out 3s infinite; }
.particle-6 { width: 2px; height: 2px; top: 60%; right: 40%; animation: particleFloat2 8.5s ease-in-out 1.5s infinite; }

@keyframes particleFloat1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.2; }
    25% { transform: translate(30px, -30px); opacity: 1; }
    50% { transform: translate(10px, -15px); opacity: 0.4; }
    75% { transform: translate(25px, 10px); opacity: 0.8; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    33% { transform: translate(-25px, -20px); opacity: 0.9; }
    66% { transform: translate(-15px, 15px); opacity: 0.5; }
}

/* Content */
.premium-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    padding: 0 24px;
}

/* Luxury Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(241,214,138,0.18);
    border-radius: 2px;
    background: rgba(241,214,138,0.03);
    animation: badgeReveal 0.8s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
    opacity: 0;
    transform: translateY(25px);
}

[data-theme="light"] .premium-badge {
    border-color: rgba(166,135,66,0.2);
    background: rgba(166,135,66,0.04);
    color: #8b6b2e;
}

@keyframes badgeReveal {
    to { opacity: 1; transform: translateY(0); }
}

.badge-diamond {
    width: 5px;
    height: 5px;
    background: var(--accent);
    transform: rotate(45deg);
    animation: diamondPulse 2s ease-in-out infinite;
}

@keyframes diamondPulse {
    0%, 100% { opacity: 0.5; transform: rotate(45deg) scale(1); }
    50% { opacity: 1; transform: rotate(45deg) scale(1.5); }
}

.badge-line {
    width: 15px;
    height: 1px;
    background: rgba(241,214,138,0.3);
}

[data-theme="light"] .badge-line {
    background: rgba(166,135,66,0.3);
}

/* Title */
.premium-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(3.2rem, 8vw, 6rem);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #dac488;
    animation: titleReveal 0.9s cubic-bezier(0.25,0.46,0.45,0.94) 0.1s forwards;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

@keyframes titleReveal {
    to { opacity: 1; transform: translateY(0); }
}

[data-theme="light"] .premium-title {
    color: #1a1815;
    text-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ========== PREMIUM BREADCRUMB V2 ========== */
.premium-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    animation: breadcrumbReveal 0.9s cubic-bezier(0.25,0.46,0.45,0.94) 0.25s forwards;
    opacity: 0;
    transform: translateY(20px);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes breadcrumbReveal {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.premium-breadcrumb:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(241, 214, 138, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 30px rgba(241, 214, 138, 0.06);
    transform: translateY(-3px);
}

[data-theme="light"] .premium-breadcrumb {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(166, 135, 66, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .premium-breadcrumb:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(166, 135, 66, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 0 30px rgba(166, 135, 66, 0.05);
}

/* Home Link Button */
.crumb-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.crumb-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(241, 214, 138, 0.12);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.crumb-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.crumb-link i {
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.crumb-link:hover {
    color: #ffffff;
}

.crumb-link:hover i {
    transform: translateX(-3px) scale(1.1);
    color: var(--accent);
}

[data-theme="light"] .crumb-link {
    color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .crumb-link::before {
    background: rgba(166, 135, 66, 0.1);
}

[data-theme="light"] .crumb-link:hover {
    color: #1a1815;
}

[data-theme="light"] .crumb-link:hover i {
    color: #8b6b2e;
}

/* Separator Section */
.crumb-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: relative;
}

.separator-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(241, 214, 138, 0.5);
    font-size: 0.65rem;
    animation: separatorPulse 2s ease-in-out infinite;
}

[data-theme="light"] .separator-icon {
    color: rgb(166 135 66 / 74%);
}

@keyframes separatorPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.separator-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(241, 214, 138, 0.15);
    border-radius: 50%;
    animation: ringRotate 4s linear infinite;
}

[data-theme="light"] .separator-ring {
    border-color: rgb(166 135 66 / 39%);
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Current Page - Active Pill */
.crumb-current {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 10px 22px;
    background: rgba(241, 214, 138, 0.15);
    border-radius: 50px;
    border: 1px solid rgba(241, 214, 138, 0.2);
    position: relative;
    overflow: hidden;
}

.crumb-current::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 214, 138, 0.2) 0%, transparent 70%);
    animation: activeGlow 3s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% { transform: translate(-10%, -10%); opacity: 0.5; }
    50% { transform: translate(10%, 10%); opacity: 1; }
}

.crumb-current-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(241, 214, 138, 0.6);
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

[data-theme="light"] .crumb-current {
    color: #1a1815;
    background: rgba(166, 135, 66, 0.12);
    border-color: rgba(166, 135, 66, 0.2);
}

[data-theme="light"] .crumb-current::before {
    background: radial-gradient(circle, rgba(166, 135, 66, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .crumb-current-dot {
    background: #8b6b2e;
    box-shadow: 0 0 8px rgba(166, 135, 66, 0.4);
}

/* Multi-layer Wave */
.premium-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 5;
    line-height: 0;
}

.premium-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

.wave-layer-1 {
    animation: waveDrift1 8s ease-in-out infinite;
}

.wave-layer-2 {
    fill: var(--bg);
}

.wave-layer-3 {
    fill: var(--bg);
}

[data-theme="dark"] .wave-layer-2,
[data-theme="dark"] .wave-layer-3 {
    fill: #0a0a0f;
}

[data-theme="light"] .wave-layer-2,
[data-theme="light"] .wave-layer-3 {
    fill: #fafaf7;
}

@keyframes waveDrift1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

/* Responsive */
@media (max-width: 800px) {
    .premium-banner {
        min-height: 400px;
    }
    
    .premium-wave svg {
        height: 60px;
    }
    
    .shape-1 { width: 100px; height: 100px; top: -30px; left: -20px; }
    .shape-2 { width: 80px; height: 80px; }
    .shape-3 { width: 60px; height: 60px; }
    .shape-4 { width: 90px; height: 90px; bottom: -20px; right: -15px; }
    
    .premium-badge {
        font-size: 0.7rem;
        gap: 8px;
        padding: 6px 15px;
    }
}

@media (max-width: 500px) {
    .premium-banner {
        min-height: 340px;
    }
    
    .premium-wave svg {
        height: 40px;
    }
    
    .premium-breadcrumb {
        font-size: 0.78rem;
        padding: 4px;
    }
    
    .crumb-link {
        padding: 8px 14px;
        gap: 5px;
    }
    
    .crumb-separator {
        width: 24px;
        height: 24px;
    }
    
    .separator-icon {
        width: 14px;
        height: 14px;
        font-size: 0.55rem;
    }
    
    .crumb-current {
        padding: 8px 16px;
    }
}