/* ===================================
   SAKURA Hair Salon - Luxury Edition
   Premium Private Salon Stylesheet
   =================================== */

/* --- CSS Variables --- */
:root {
    --gold: #c9a96e;
    --gold-light: #dcc18f;
    --gold-dark: #a8873f;
    --gold-deep: #8b6d2b;
    --rose: #c9848a;
    --rose-light: #e8c4c4;
    --rose-pale: #f5e6e8;
    --bg: #fdfbf7;
    --bg-warm: #f8f3ec;
    --bg-cream: #faf6ef;
    --bg-dark: #1a1714;
    --bg-charcoal: #2a2520;
    --text: #2c2626;
    --text-light: #6b6060;
    --text-muted: #9a8e8e;
    --white: #fff;
    --black: #0d0b0a;
    --line-green: #06C755;

    --font-display: 'Cormorant Garamond', serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.10);
    --shadow-gold: 0 8px 32px rgba(201,169,110,0.25);

    --radius: 16px;
    --radius-lg: 24px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.8;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Loader --- */
.loader {
    position: fixed; inset: 0;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-sakura {
    font-size: 42px; color: var(--gold);
    animation: loaderPulse 2s ease-in-out infinite;
}
.loader-text {
    font-family: var(--font-display);
    font-size: 36px; letter-spacing: 14px;
    color: var(--gold); font-weight: 300; margin-top: 12px;
}
.loader-sub {
    font-family: var(--font-display);
    font-size: 12px; letter-spacing: 8px;
    color: var(--gold-light); font-weight: 300; margin-top: 4px;
    opacity: 0.7;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

/* --- Navigation --- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 20px 0;
    transition: all 0.5s var(--ease);
}
.navbar.scrolled {
    background: rgba(253,251,247,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 10px 0;
    box-shadow: 0 1px 40px rgba(0,0,0,0.06);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo-icon { font-size: 22px; color: var(--gold); }
.logo-text {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 400;
    letter-spacing: 6px; color: var(--white);
    transition: all 0.4s var(--ease);
}
.navbar.scrolled .logo-text { color: var(--gold-deep); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    font-size: 12px; font-weight: 400; letter-spacing: 1.5px;
    padding: 8px 16px; color: rgba(255,255,255,0.85);
    border-radius: 30px; transition: all 0.3s ease;
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active {
    color: var(--white); background: rgba(255,255,255,0.12);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--gold-dark); background: rgba(201,169,110,0.1);
}
.nav-link-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--white) !important;
    padding: 8px 24px !important; font-weight: 500; margin-left: 8px;
}
.nav-link-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-toggle span {
    width: 24px; height: 2px; background: var(--white);
    border-radius: 2px; transition: all 0.4s var(--ease);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    position: relative; width: 100%; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.15); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(13,11,10,0.5) 0%,
        rgba(13,11,10,0.2) 35%,
        rgba(13,11,10,0.3) 65%,
        rgba(13,11,10,0.7) 100%
    );
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 24px; }
.hero-badge {
    font-family: var(--font-display); font-size: 13px;
    letter-spacing: 10px; color: var(--gold-light); margin-bottom: 20px; font-weight: 300;
}
.hero-title { margin-bottom: 24px; }
.hero-title-en {
    display: block; font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 130px); font-weight: 300;
    letter-spacing: 16px; line-height: 1;
    background: linear-gradient(180deg, #fff 30%, var(--gold-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.hero-title-sub {
    display: block; font-family: var(--font-display);
    font-size: clamp(14px, 2.5vw, 22px); font-weight: 300;
    letter-spacing: 12px; color: var(--gold); margin-top: 8px;
}
.hero-tagline {
    font-size: clamp(13px, 1.8vw, 16px); font-weight: 300;
    letter-spacing: 4px; color: rgba(255,255,255,0.8); margin-bottom: 48px;
    line-height: 2;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll span {
    font-family: var(--font-display); font-size: 11px;
    letter-spacing: 3px; color: rgba(255,255,255,0.5); writing-mode: vertical-lr;
}
.hero-scroll-line {
    width: 1px; height: 50px; background: rgba(255,255,255,0.2);
    position: relative; overflow: hidden;
}
.hero-scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: var(--gold);
    animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 100%; } }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 36px; border-radius: 50px;
    font-family: var(--font-sans); font-size: 13px;
    font-weight: 500; letter-spacing: 2px; cursor: pointer;
    transition: all 0.4s var(--ease); border: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201,169,110,0.4);
}
.btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(201,169,110,0.5);
}
.btn-outline:hover {
    background: var(--gold); color: var(--white);
    border-color: var(--gold); transform: translateY(-2px);
}
.btn-white {
    background: var(--white); color: var(--gold-deep); font-weight: 600;
}
.btn-white:hover {
    transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.btn-line { background: var(--line-green); color: var(--white); font-weight: 600; }
.btn-line:hover {
    background: #05b34d; transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(6,199,85,0.35);
}
.btn-outline-white {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: var(--white); color: var(--text); transform: translateY(-2px);
}

/* --- Section Common --- */
.section { padding: 140px 0; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
    font-family: var(--font-display); font-size: 14px;
    letter-spacing: 8px; color: var(--gold); text-transform: uppercase; font-weight: 400;
}
.section-title {
    font-family: var(--font-serif); font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 400; color: var(--text); margin-top: 12px; letter-spacing: 4px;
}
.section-divider {
    display: flex; align-items: center; justify-content: center;
    margin-top: 20px; gap: 20px;
}
.section-divider::before,
.section-divider::after {
    content: ''; width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-divider span { color: var(--gold); font-size: 14px; }
.section-desc {
    font-size: 14px; color: var(--text-light); margin-top: 20px;
    font-weight: 300; letter-spacing: 1px; line-height: 2.2;
}

/* ===================================
   CONCEPT - Private Luxury Features
   =================================== */
.concept { background: var(--bg); }

.concept-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.concept-feature:last-child { margin-bottom: 0; }
.concept-feature-reverse { direction: rtl; }
.concept-feature-reverse > * { direction: ltr; }

.concept-feature-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
}
.concept-feature-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.concept-feature:hover .concept-feature-img img {
    transform: scale(1.05);
}
.concept-feature-badge {
    position: absolute; top: 24px; left: 24px;
    background: rgba(13,11,10,0.7); backdrop-filter: blur(10px);
    padding: 12px 20px; border-radius: 12px;
    border: 1px solid rgba(201,169,110,0.3);
}
.concept-feature-badge span {
    display: block; font-family: var(--font-display);
    font-size: 12px; letter-spacing: 6px; color: var(--gold-light);
    text-transform: uppercase; line-height: 1.4;
}

.concept-feature-content { padding: 20px 0; }
.concept-feature-num {
    font-family: var(--font-display); font-size: 56px;
    font-weight: 300; color: var(--gold); opacity: 0.3;
    line-height: 1; margin-bottom: 8px;
}
.concept-feature-content h3 {
    font-family: var(--font-serif); font-size: 24px;
    font-weight: 500; letter-spacing: 3px; color: var(--text);
    margin-bottom: 20px;
}
.concept-feature-content p {
    font-size: 14px; color: var(--text-light); line-height: 2.2;
    font-weight: 300; margin-bottom: 28px;
}
.concept-feature-list {
    display: flex; flex-direction: column; gap: 12px;
}
.concept-feature-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: var(--text); font-weight: 400;
}
.concept-feature-list li i {
    color: var(--gold); font-size: 11px;
    width: 24px; height: 24px;
    background: rgba(201,169,110,0.1);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ===================================
   SERVICES - Gorgeous Luxury Cards
   =================================== */
.services {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(201,169,110,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.services .section-label { color: var(--gold-light); }
.services .section-title { color: var(--white); }
.services .section-desc { color: rgba(255,255,255,0.6); }
.services .section-divider::before,
.services .section-divider::after {
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.service-luxury-card {
    background: var(--bg-charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.12);
    transition: all 0.5s var(--ease);
    position: relative;
}
.service-luxury-card::before {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(201,169,110,0.08), transparent 60%);
    opacity: 0; transition: opacity 0.5s ease; z-index: 0; pointer-events: none;
}
.service-luxury-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,169,110,0.3);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 40px rgba(201,169,110,0.08);
}
.service-luxury-card:hover::before { opacity: 1; }

.service-luxury-img {
    position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.service-luxury-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.service-luxury-card:hover .service-luxury-img img {
    transform: scale(1.06);
}
.service-luxury-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,11,10,0.1) 0%, rgba(13,11,10,0.6) 100%);
    display: flex; align-items: flex-start; justify-content: flex-end;
    padding: 24px;
}
.service-luxury-number {
    font-family: var(--font-display); font-size: 48px;
    font-weight: 300; color: rgba(255,255,255,0.15);
    line-height: 1;
}
.service-luxury-price-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(13,11,10,0.75); backdrop-filter: blur(12px);
    padding: 10px 20px; border-radius: 12px;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex; flex-direction: column; align-items: center;
}
.price-from {
    font-family: var(--font-display); font-size: 10px;
    letter-spacing: 3px; color: var(--gold-light); text-transform: uppercase;
}
.price-amount {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 500; color: var(--gold); letter-spacing: 2px;
}

.service-luxury-body {
    padding: 28px 24px 32px; position: relative; z-index: 1;
}
.service-luxury-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.service-luxury-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 16px; flex-shrink: 0;
}
.service-luxury-header h3 {
    font-family: var(--font-serif); font-size: 18px;
    font-weight: 500; letter-spacing: 3px; color: var(--white);
    display: flex; align-items: baseline; gap: 10px;
}
.service-luxury-header h3 span {
    font-family: var(--font-display); font-size: 12px;
    letter-spacing: 3px; color: var(--gold-light); font-weight: 300;
}
.service-luxury-body > p {
    font-size: 13px; color: rgba(255,255,255,0.6);
    line-height: 2; font-weight: 300; margin-bottom: 20px;
}
.service-luxury-details {
    display: flex; flex-wrap: wrap; gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(201,169,110,0.12);
}
.service-detail-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: var(--gold-light); letter-spacing: 0.5px;
}
.service-detail-item i { font-size: 12px; color: var(--gold); }

/* ===================================
   PRICE SECTION - Elegant Cards
   =================================== */
.price-section { background: var(--bg-warm); }

.price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease);
    border: 1px solid transparent;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}
.price-card-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-charcoal) 100%);
    color: var(--white); padding: 28px;
    display: flex; align-items: center; gap: 16px;
    position: relative; overflow: hidden;
}
.price-card-header::after {
    content: ''; position: absolute; top: -20px; right: -20px;
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(201,169,110,0.08);
}
.price-card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.price-card-header h3 {
    font-family: var(--font-serif); font-size: 18px;
    font-weight: 400; letter-spacing: 4px;
    display: flex; align-items: baseline; gap: 8px;
}
.price-card-header h3 span {
    font-family: var(--font-display); font-size: 11px;
    letter-spacing: 3px; color: var(--gold-light); font-weight: 300;
}
.price-card-body { padding: 8px 0; }
.price-item {
    display: flex; align-items: baseline; gap: 8px;
    padding: 15px 28px;
    transition: background 0.2s ease;
}
.price-item:hover { background: var(--bg-cream); }
.price-name {
    font-size: 13px; color: var(--text); font-weight: 400; white-space: nowrap;
}
.price-dots {
    flex: 1; border-bottom: 1px dotted var(--text-muted);
    margin: 0 4px; min-width: 20px; align-self: center;
    margin-bottom: 4px;
}
.price-value {
    font-family: var(--font-display); font-size: 17px;
    color: var(--gold-dark); font-weight: 600;
    letter-spacing: 1px; white-space: nowrap;
}

/* ===================================
   ACCESS SECTION
   =================================== */
.access-section { background: var(--bg); }
.access-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
.access-info { display: flex; flex-direction: column; gap: 32px; }
.access-detail { display: flex; gap: 20px; align-items: flex-start; }
.access-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--gold-dark); font-size: 18px;
    border: 1px solid rgba(201,169,110,0.15);
}
.access-detail h4 {
    font-family: var(--font-serif); font-size: 15px;
    font-weight: 500; letter-spacing: 2px; color: var(--text); margin-bottom: 6px;
}
.access-detail p { font-size: 13px; color: var(--text-light); line-height: 1.9; font-weight: 300; }
.text-accent { color: var(--rose); font-weight: 400; }
.access-map {
    height: 480px; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-md);
    border: 1px solid rgba(201,169,110,0.1);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-charcoal) 50%, var(--bg-dark) 100%);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: '❀'; position: absolute; top: -60px; right: -60px;
    font-size: 350px; opacity: 0.03; color: var(--gold);
}
.cta-section::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-title {
    font-family: var(--font-serif); font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 400; color: var(--white); letter-spacing: 4px;
    margin-top: 12px; margin-bottom: 20px;
}
.cta-desc {
    font-size: 14px; color: rgba(255,255,255,0.6);
    font-weight: 300; letter-spacing: 1px; line-height: 2.2; margin-bottom: 40px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black); color: rgba(255,255,255,0.6); padding: 80px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1.2fr 1fr 0.8fr;
    gap: 48px; padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--gold); font-size: 22px; }
.footer-brand-desc { font-size: 13px; line-height: 2; font-weight: 300; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    background: var(--gold); border-color: var(--gold);
    color: var(--white); transform: translateY(-2px);
}

.footer-info h4, .footer-hours h4, .footer-nav h4 {
    font-family: var(--font-display); font-size: 16px;
    font-weight: 400; color: var(--gold); letter-spacing: 4px;
    margin-bottom: 24px; position: relative; padding-bottom: 12px;
}
.footer-info h4::after, .footer-hours h4::after, .footer-nav h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 1px; background: var(--gold);
}
.footer-info ul { display: flex; flex-direction: column; gap: 14px; }
.footer-info li {
    font-size: 12px; line-height: 1.8;
    display: flex; gap: 10px; align-items: flex-start;
}
.footer-info li i { color: var(--gold); margin-top: 3px; width: 14px; flex-shrink: 0; font-size: 12px; }
.footer-info a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
    font-size: 12px; padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hours-table td:first-child { font-weight: 400; color: rgba(255,255,255,0.8); width: 70px; }
.hours-note { font-size: 11px !important; color: var(--rose) !important; padding-top: 12px !important; border-bottom: none !important; }

.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 12px; padding-left: 0; }
.footer-nav a:hover { color: var(--gold); padding-left: 8px; }

.footer-map-mini {
    padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.06); display: none;
}
.footer-bottom {
    text-align: center; padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 11px; letter-spacing: 2px; font-weight: 300; }

/* --- Back to Top --- */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white); border: none; cursor: pointer;
    font-size: 16px; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-gold); z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,169,110,0.4); }

/* --- AOS --- */
[data-aos] {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0) translateX(0); }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .services-showcase { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .concept-feature { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .section-header { margin-bottom: 56px; }

    .nav-links {
        position: fixed; inset: 0;
        background: rgba(253,251,247,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 4px; opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
    }
    .nav-links.active { opacity: 1; visibility: visible; }
    .nav-link { color: var(--text) !important; font-size: 15px; padding: 12px 32px; }
    .nav-link:hover, .nav-link.active { color: var(--gold-dark) !important; background: rgba(201,169,110,0.1) !important; }
    .nav-toggle { display: flex; }

    .concept-feature { grid-template-columns: 1fr; gap: 32px; }
    .concept-feature-reverse { direction: ltr; }
    .concept-feature-img { aspect-ratio: 4/3; }
    .concept-feature-num { font-size: 40px; }

    .services-showcase { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .price-grid { grid-template-columns: 1fr; }
    .access-grid { grid-template-columns: 1fr; gap: 32px; }
    .access-map { height: 300px; }

    .hero-actions, .cta-buttons { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-map-mini { display: block; }
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .section { padding: 64px 0; }
    .container { padding: 0 16px; }
    .concept-feature-content h3 { font-size: 20px; }
    .service-luxury-body { padding: 20px 16px 24px; }
    .price-item { padding: 12px 20px; }
    .price-name { font-size: 12px; }
    .price-value { font-size: 15px; }
    .btn { padding: 12px 28px; font-size: 12px; }
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
::selection { background: var(--rose-light); color: var(--text); }
