/* ============================================================
   AURA Luxury Salon – Modern Redesign
   ============================================================ */

:root {
    --primary: #C97B84;
    --primary-hover: #b56870;
    --primary-light: #f0d5d8;
    --primary-glow: rgba(201, 123, 132, 0.28);
    --gold: #C9A96E;
    --gold-light: rgba(201, 169, 110, 0.2);
    --bg-light: #FDFAF7;
    --bg-card: #FFFFFF;
    --bg-cream: #F5EDE8;
    --bg-dark: #0A0808;
    --bg-dark-2: #130F0F;
    --text-dark: #1A1614;
    --text-muted: #7A6E6A;
    --text-light: rgba(255, 255, 255, 0.75);
    --transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.22s ease;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    --shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 8px 32px var(--primary-glow);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;
    --radius-pill: 100px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.3px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 110px 0;
}

/* ---- Custom Cursor ---- */
.cursor-dot,
.cursor-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--primary);
    transition: width 0.2s ease, height 0.2s ease, transform 0.08s linear;
    opacity: 0.6;
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ---- Scroll-to-top button ---- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
}

/* ---- Translation Widget ---- */
.translate-widget {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 998;
}

.translate-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: var(--bg-card);
    color: var(--text-dark);
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 123, 132, 0.24);
    cursor: pointer;
    transition: var(--transition-fast);
}

.translate-toggle img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid rgba(201, 123, 132, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.translate-toggle:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.translate-panel {
    position: absolute;
    left: 0;
    bottom: 56px;
    min-width: 210px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid #E8E0DA;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: var(--transition-fast);
}

.translate-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#google_translate_element {
    min-height: 36px;
}

#google_translate_element .goog-te-gadget {
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
}

#google_translate_element .goog-te-combo {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #E8E0DA;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.82rem;
    outline: none;
}

#google_translate_element .goog-te-combo:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ---- Section Title ---- */
.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title.text-left {
    text-align: left;
    margin-bottom: 28px;
}

.section-title span {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

.section-title span::before,
.section-title span::after {
    content: '—';
    margin: 0 8px;
    opacity: 0.5;
}

.section-title.text-left span::before,
.section-title.text-left span::after {
    display: none;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--text-dark);
    line-height: 1.1;
    font-weight: 400;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 24px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px var(--primary-glow);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---- Navigation ---- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
    background: transparent;
}

header.scrolled {
    background: rgba(253, 250, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 123, 132, 0.12);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
    transition: height 0.35s ease;
}

header.scrolled .navbar {
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #fff;
    transition: color 0.35s ease;
    position: relative;
    z-index: 2;
}

header.scrolled .logo {
    color: var(--text-dark);
}

.footer-logo {
    color: #fff !important;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 38px;
}

.nav-links a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

header.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary);
}

header.scrolled .nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    font-size: 0.72rem !important;
    padding: 10px 22px !important;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 2;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

header.scrolled .hamburger span {
    background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero Section ---- */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(145deg, rgba(10, 8, 8, 0.72) 0%, rgba(10, 8, 8, 0.55) 100%),
        url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Animated background orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 123, 132, 0.18) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.14) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: -3s;
    animation-duration: 10s;
}

.hero-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 123, 132, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -6s;
    animation-duration: 12s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 88px;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.06);
}

.hero-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 400;
}

.hero-content p {
    font-size: 0.95rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ---- Marquee Strip ---- */
.marquee-strip {
    background: var(--bg-dark);
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(201, 123, 132, 0.15);
    border-bottom: 1px solid rgba(201, 123, 132, 0.15);
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.marquee-strip:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding: 0 28px;
}

.marquee-track .dot {
    color: var(--primary);
    font-size: 0.6rem;
    padding: 0;
    letter-spacing: 0;
    line-height: 2;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- About Section ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-img::before {
    content: '';
    position: absolute;
    inset: -16px -16px 16px 16px;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.5;
    transition: var(--transition);
}

.about-img:hover::before {
    inset: -20px -20px 20px 20px;
    opacity: 0.8;
}

.about-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--primary);
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 28px var(--primary-glow);
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}

.badge-label {
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 4px;
    padding: 0 8px;
    line-height: 1.3;
    text-align: center;
}

.about-text .section-title h2 {
    font-size: 2.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 22px;
    font-size: 0.92rem;
}

/* ---- Stats Section ---- */
.stats-section {
    background: var(--bg-dark-2);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201, 123, 132, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1;
    color: var(--primary);
}

.stat-plus {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    vertical-align: super;
    font-weight: 300;
    line-height: 1;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-weight: 500;
}

/* ---- Services Section ---- */
.services {
    background-color: var(--bg-cream);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.service-card:hover .service-card-glow {
    opacity: 1;
    transform: scale(1.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.95);
}

.service-card .icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(201, 169, 110, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.87rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.service-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.service-book {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-book i {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.service-book:hover {
    color: var(--primary);
}

.service-book:hover i {
    transform: translateX(4px);
}

/* ---- Gallery Section ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 340px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(0.92);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 8, 8, 0.85) 0%, rgba(10, 8, 8, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: #fff;
}

.gallery-overlay-content {
    transform: translateY(16px);
    transition: transform 0.4s ease;
}

.gallery-overlay-content h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.gallery-overlay-content span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

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

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

/* ---- Team Section ---- */
.team-section {
    background: var(--bg-cream);
}

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

.team-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
}

.team-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(16px);
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.team-info {
    padding: 24px 26px 26px;
    position: relative;
}

.team-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 1px;
    background: linear-gradient(to right, var(--primary), transparent);
}

.team-info h3 {
    font-size: 1.45rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.team-info p {
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ---- Testimonials ---- */
.testimonials {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(201, 123, 132, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-title span,
.testimonials .section-title h2 {
    color: #fff;
}

.testimonials .section-title span {
    color: var(--primary);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 40px 36px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 123, 132, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.75;
}

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

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.client-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    letter-spacing: 1px;
}

/* ---- Booking Section ---- */
.booking-section {
    background: var(--bg-light);
}

.booking-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 60px;
    border: 1px solid rgba(201, 123, 132, 0.08);
}

/* Floating label form */
.form-field {
    position: relative;
    margin-bottom: 22px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 20px 16px 8px;
    border: 1.5px solid #E8E0DA;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.form-field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E6A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: #fff;
}

.form-field label {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.22s ease;
    letter-spacing: 0.3px;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label {
    top: 6px;
    font-size: 0.68rem;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.4;
    cursor: pointer;
}

.contact-info h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.contact-sub {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 36px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.info-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.contact-map {
    margin-top: 12px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid #E8E0DA;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid #EFE6E1;
    font-size: 0.72rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-fast);
}

.map-link i {
    font-size: 0.72rem;
}

.map-link:hover {
    background: var(--primary-light);
    color: var(--primary-hover);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #F0E8E4;
}

.contact-social a {
    width: 42px;
    height: 42px;
    border: 1.5px solid #E8E0DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.contact-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* ---- Footer ---- */
footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 72px 0 32px;
    position: relative;
    overflow: hidden;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.87rem;
    line-height: 1.75;
    margin-top: 18px;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 22px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 1.5px;
    background: var(--primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.86rem;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---- Scroll Reveal Animations ---- */
.reveal {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.fade-up {
    transform: translateY(40px);
}

.reveal.fade-left {
    transform: translateX(-40px);
}

.reveal.fade-right {
    transform: translateX(40px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Hero staggered reveal */
.reveal-hero {
    opacity: 0;
    transform: translateY(28px);
    animation: heroReveal 0.8s ease forwards;
}

.hero-badge.reveal-hero { animation-delay: 0.3s; }
.hero-content h1.reveal-hero { animation-delay: 0.55s; }
.hero-content p.reveal-hero { animation-delay: 0.75s; }
.hero-actions.reveal-hero { animation-delay: 0.95s; }

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

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .about-grid,
    .booking-contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .about-img-badge {
        right: 12px;
        bottom: -16px;
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        transform: translateX(-100%);
        transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 3px;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-cta { display: none; }

    .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .services-grid { grid-template-columns: 1fr; }

    .team-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .booking-contact-grid { padding: 32px 24px; }

    .contact-map iframe { height: 200px; }

    .translate-widget {
        bottom: 22px;
        left: 16px;
    }

    .translate-toggle {
        padding: 11px 14px;
        letter-spacing: 1.2px;
    }

    .translate-panel {
        min-width: 190px;
        bottom: 52px;
    }

    .section-padding { padding: 80px 0; }

    .section-title h2 { font-size: 2.3rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }

    .hero-actions { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom { flex-direction: column; text-align: center; }
}