/* =====================================================
   BEAUTY PERFECT — Luxury Swiss-Minimalist Stylesheet
   ===================================================== */

/* --- Custom Properties --- */
:root {
    --gold: #C9A961;
    --gold-light: #D4B97A;
    --gold-dark: #A88B3E;
    --copper: #D4845C;
    --copper-light: #E09B77;
    --cream: #F7F5F0;
    --cream-dark: #EDE9E0;
    --dark: #1E1E1E;
    --dark-soft: #2C2C2C;
    --text: #3A3A3A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --border: #E0DCD4;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-gold: 0 8px 30px rgba(201,169,97,0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark);
    font-weight: 600;
}

/* --- CTA Buttons --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.cta-button.primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.cta-button.primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.cta-button.outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}

.cta-button.outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.cta-button.full {
    width: 100%;
}

/* --- Promo Banner --- */
.promo-banner {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.promo-inner p {
    margin: 0;
    letter-spacing: 0.5px;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
}

.promo-link:hover {
    background: #20BD5A;
}

.promo-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.6;
    padding: 0 4px;
    line-height: 1;
}

.promo-close:hover {
    opacity: 1;
}

.promo-banner.hidden {
    display: none;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 0;
}

.navbar.has-promo {
    top: 40px;
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled.has-promo {
    top: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--dark);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: var(--transition);
}

.lang-toggle:hover {
    border-color: var(--gold);
}

.lang-label {
    color: var(--text-light);
    transition: var(--transition);
}

.lang-label.lang-active {
    color: var(--dark);
}

.lang-label.lang-inactive {
    opacity: 0.4;
}

.lang-sep {
    color: var(--border);
    margin: 0 2px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, rgba(201,169,97,0.08) 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201,169,97,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video + .hero-inner {
    z-index: 2;
}

.hero:has(.hero-video) .hero-bg {
    background: rgba(30, 30, 30, 0.55);
    z-index: 1;
}

.hero:has(.hero-video) .hero-bg::after {
    display: none;
}

.hero:has(.hero-video) .hero-tagline,
.hero:has(.hero-video) .hero-desc,
.hero:has(.hero-video) .hero-urgency {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero:has(.hero-video) h1 {
    color: var(--gold) !important;
    text-shadow: 0 3px 20px rgba(0,0,0,0.7);
}

.hero:has(.hero-video) .hero-urgency {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-color: rgba(255,255,255,0.2);
}

.hero:has(.hero-video) .cta-button.outline {
    border-color: var(--white);
    color: var(--white);
}

.hero:has(.hero-video) .cta-button.outline:hover {
    background: var(--white);
    color: var(--dark);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212,132,92,0.08);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--copper);
    font-weight: 500;
}

.hero-urgency i {
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-frame {
    width: 400px;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-placeholder i {
    font-size: 3rem;
    color: var(--gold);
}

.hero-image-placeholder p {
    font-size: 0.9rem;
}

.hero-float-card {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
    text-align: center;
}

.float-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.hero-float-card p {
    font-size: 0.85rem;
    color: var(--text);
}

.hero-float-card strong {
    color: var(--gold-dark);
}

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

/* --- Trust Bar --- */
.trust-bar {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.trust-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* --- Services --- */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.service-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-benefits {
    margin-bottom: 28px;
    flex: 1;
}

.service-benefits li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-benefits li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 0.9rem;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.service-cta:hover {
    color: #25D366;
}

/* --- Service Detail Sections --- */
.service-detail {
    padding: 80px 0;
    background: var(--cream);
}

.service-detail:nth-of-type(even) {
    background: var(--white);
}

.detail-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.detail-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.detail-tab {
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.detail-tab:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.detail-tab.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.detail-tab.active i {
    color: var(--gold);
}

.detail-tab i {
    font-size: 0.9rem;
}

.detail-panel {
    animation: detailFadeIn 0.4s ease;
}

.detail-panel.hidden {
    display: none;
}

@keyframes detailFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.detail-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-detail:nth-of-type(even) .detail-card {
    background: var(--cream);
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.detail-card-wide {
    grid-column: span 3;
}

.detail-icon {
    display: none;
}

.detail-icon i {
    color: var(--white);
    font-size: 1.1rem;
}

.detail-icon-info {
    background: linear-gradient(135deg, #5b9bd5, #7ec8e3);
}

.detail-icon-success {
    background: linear-gradient(135deg, #6bb86b, #8fd68f);
}

.detail-icon-warning {
    background: linear-gradient(135deg, #e8a838, #f0c060);
}

.detail-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.detail-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card ul li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.detail-card ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-list-warning li::before {
    content: '✕';
    color: #d45b5b;
}

/* Detail Zones (3-column inside wide card) */
.detail-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.detail-zone h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-zone h5 i {
    color: var(--gold);
    font-size: 0.95rem;
}

.detail-zone ul li {
    font-size: 0.85rem;
    padding: 4px 0;
}

/* Detail Gallery (integrated) */
.detail-gallery {
    margin-top: 50px;
    margin-bottom: 50px;
}

.detail-gallery > h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.detail-gallery > h4 i {
    color: var(--gold);
    margin-right: 8px;
}

/* Modern Gallery Grid */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 200px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.gallery-item.gallery-hero {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.gallery-hero .gallery-overlay {
    opacity: 1;
    padding: 24px;
}

.gallery-item.gallery-hero .gallery-overlay span {
    font-size: 1rem;
    background: rgba(201,169,97,0.9);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.detail-gallery .gallery-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

/* Detail Summary */
.detail-summary {
    text-align: center;
    background: linear-gradient(135deg, var(--dark), #2a2a2a);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    color: var(--white);
}

.detail-summary h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.detail-summary p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 24px;
}

.detail-summary-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.detail-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    padding: 8px 18px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 30px;
}

.detail-tag i {
    font-size: 0.9rem;
}

.detail-cta {
    margin-top: 24px;
    display: inline-flex;
}

.detail-icon-accent {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.detail-list-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.detail-list-steps li {
    counter-increment: step-counter;
}

.detail-list-steps li::before {
    content: counter(step-counter);
    background: var(--gold);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.detail-zone small {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

/* --- Treatment Gallery --- */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-tab {
    background: none;
    border: 1px solid var(--border);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.gallery-tab.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* Treatment Showcase */
.treatment-showcase {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    transition: var(--transition);
}

.treatment-showcase.hidden {
    display: none;
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px 36px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.showcase-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.showcase-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.showcase-tagline {
    color: var(--text-light);
    font-size: 0.9rem;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Showcase Images */
.showcase-images {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-right: 1px solid var(--border);
}

.showcase-img.main {
    height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: var(--cream-dark);
}

.showcase-img.main img,
.showcase-img.small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream-dark), #D6D0C5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.img-placeholder i {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
}

.img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(30,30,30,0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.showcase-img-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.showcase-img.small {
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.showcase-img.small:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.showcase-img.small .img-placeholder {
    gap: 4px;
    font-size: 0.7rem;
}

.showcase-img.small .img-placeholder i {
    font-size: 1.1rem;
}

/* Showcase Process Steps */
.showcase-process {
    padding: 30px;
}

.showcase-process h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-process h4 i {
    color: var(--gold);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    position: relative;
}

.step:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 2px;
}

.step-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 6px;
}

.step-duration {
    font-size: 0.75rem;
    color: var(--copper);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Process Results */
.process-results {
    margin-top: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.process-results h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-results h5 i {
    color: var(--gold);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.result-item {
    font-size: 0.83rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.result-item i {
    color: #25D366;
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.showcase-cta {
    padding: 24px 36px;
    background: var(--white);
    border-top: 1px solid var(--border);
    text-align: center;
}

.gallery-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* --- Pricing --- */
.pricing {
    padding: 100px 0;
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 4px 20px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.savings {
    display: inline-block;
    background: rgba(212,132,92,0.1);
    color: var(--copper);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.features {
    text-align: left;
    padding: 24px 0;
    margin-bottom: 8px;
    border-top: 1px solid var(--border);
}

.features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features li i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* --- Pricing Extras --- */
.pricing-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.price-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 12px 0 8px;
}

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

.price-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.pricing-extras {
    margin-top: 48px;
}

.extras-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 24px;
}

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

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.extra-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.extra-info h4 {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.extra-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.extra-price {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.extra-price span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.testimonials .section-label {
    color: var(--gold-light);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

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

.quote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-service {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

/* --- Team --- */
.team {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.team-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-placeholder i {
    color: var(--white);
    font-size: 2.2rem;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-role {
    color: var(--gold-dark);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.team-exp {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.team-specialties {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.team-specialties span {
    background: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
}

.team-certs {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-certs i {
    color: var(--gold);
    margin-right: 4px;
}

.team-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
}

.team-cta:hover {
    background: #20BD5A;
    transform: translateY(-2px);
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-label {
    text-align: left;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-philosophy {
    color: var(--dark) !important;
    font-size: 1.05rem !important;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    display: inline;
}

.stat span {
    font-size: 1.2rem;
    color: var(--gold);
}

.stat p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 6px;
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-question i {
    font-size: 0.75rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-card > i {
    font-size: 1.3rem;
    color: var(--gold);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-action {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

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

.contact-card.whatsapp-card {
    border-color: #25D366;
    background: rgba(37,211,102,0.04);
}

.contact-card.whatsapp-card > i {
    color: #25D366;
    font-size: 1.5rem;
}

.contact-card.whatsapp-card .contact-action {
    color: #25D366;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 350px;
    border: 1px solid var(--border);
}

.contact-map iframe {
    display: block;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-img {
    width: 50px;
    height: 50px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
    display: block;
    font-size: 0.9rem;
    padding: 4px 0;
    opacity: 0.7;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--gold-light);
}

.footer-contact a i {
    margin-right: 8px;
    width: 16px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0.7;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* --- Mobile Sticky CTA --- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--white);
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mobile-cta .cta-button {
    padding: 14px 24px;
    font-size: 1rem;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.3);
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =====================
   RESPONSIVE DESIGN
   ===================== */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-desc {
        max-width: 100%;
    }

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

    .showcase-content {
        grid-template-columns: 1fr;
    }

    .showcase-images {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

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

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

    .detail-card-wide {
        grid-column: span 2;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ========================
   MOBILE — PRIMARY TARGET
   ======================== */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    body {
        font-size: 15px;
    }

    .container {
        padding: 0 18px;
    }

    /* -- Promo Banner Mobile -- */
    .promo-banner {
        padding: 8px 0;
    }

    .promo-inner {
        font-size: 0.72rem;
        gap: 8px;
        padding: 0 12px;
    }

    .promo-inner p {
        line-height: 1.4;
        text-align: center;
    }

    .promo-link {
        display: none;
    }

    .navbar.has-promo {
        top: 34px;
    }

    /* -- Navbar Mobile -- */
    .nav-container {
        height: 64px;
        padding: 0 16px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1.05rem;
    }

    .service-detail {
        padding: 50px 0;
    }

    .detail-tabs {
        gap: 6px;
        margin-bottom: 35px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .detail-tabs::-webkit-scrollbar {
        display: none;
    }

    .detail-tab {
        padding: 10px 16px;
        font-size: 0.78rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .detail-intro {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .detail-gallery .gallery-grid-modern {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 160px 160px;
    }

    .gallery-item.gallery-hero {
        grid-column: span 2;
        grid-row: span 1;
    }

    .detail-card-wide {
        grid-column: span 1;
    }

    .detail-zones {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .detail-summary {
        padding: 30px 20px;
    }

    .detail-summary-tags {
        gap: 12px;
    }

    .detail-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 20px;
        gap: 0;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 16px 4px;
        font-size: 1.05rem;
        font-weight: 500;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .lang-toggle {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    /* -- Hero Mobile -- */
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .hero-actions .cta-button {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        justify-content: center;
    }

    .hero-urgency {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    /* -- Trust Bar Mobile -- */
    .trust-bar {
        padding: 24px 0;
    }

    .trust-items {
        gap: 16px;
        justify-content: flex-start;
    }

    .trust-item {
        font-size: 0.78rem;
        gap: 6px;
        flex: 0 0 auto;
    }

    .trust-item i {
        font-size: 0.95rem;
    }

    /* -- Services Mobile -- */
    .services {
        padding: 60px 0;
    }

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

    .service-card {
        padding: 28px 22px;
    }

    .service-card:hover {
        transform: none;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }

    .service-highlights {
        gap: 8px;
    }

    .service-highlight {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .service-actions {
        flex-direction: column;
        gap: 10px;
    }

    .service-learn-more {
        font-size: 0.8rem;
    }

    .service-benefits li {
        font-size: 0.85rem;
        padding: 5px 0;
    }

    .service-cta {
        font-size: 0.88rem;
        padding: 14px 0;
    }

    /* -- Gallery Mobile -- */
    .gallery {
        padding: 60px 0;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .gallery-tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .gallery-tabs::-webkit-scrollbar {
        display: none;
    }

    .gallery-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .showcase-header {
        padding: 18px 20px;
        gap: 14px;
    }

    .showcase-icon {
        width: 42px;
        height: 42px;
    }

    .showcase-icon i {
        font-size: 1.1rem;
    }

    .showcase-header h3 {
        font-size: 1.2rem;
    }

    .showcase-tagline {
        font-size: 0.82rem;
    }

    .showcase-images {
        padding: 16px;
    }

    .showcase-img.main {
        height: 200px;
        border-radius: var(--radius-sm);
    }

    .showcase-img-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .showcase-img.small {
        height: 65px;
    }

    .showcase-process {
        padding: 18px;
    }

    .showcase-process h4 {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .step {
        padding: 14px 0;
        gap: 12px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.8rem;
    }

    .step-content h5 {
        font-size: 0.9rem;
    }

    .step-content p {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .step-duration {
        font-size: 0.72rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .result-item {
        font-size: 0.8rem;
    }

    .process-results {
        padding: 16px;
        margin-top: 16px;
    }

    .showcase-cta {
        padding: 18px 20px;
    }

    .showcase-cta .cta-button {
        width: 100%;
        padding: 14px 20px;
    }

    .gallery-note {
        font-size: 0.75rem;
    }

    /* -- Pricing Mobile -- */
    .pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 24px;
    }

    .pricing-card:hover {
        transform: none;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
        border-width: 2px;
    }

    .pricing-card.featured:hover {
        transform: none;
    }

    .price {
        font-size: 2.5rem;
    }

    .features li {
        font-size: 0.88rem;
        padding: 7px 0;
    }

    .extras-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .extra-item {
        padding: 16px 18px;
    }

    .extras-title {
        font-size: 1.2rem;
    }

    .pricing-extras {
        margin-top: 32px;
    }

    .price-options {
        gap: 16px;
    }

    /* -- Testimonials Mobile -- */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .quote {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* -- Team Mobile -- */
    .team {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }

    .team-card {
        padding: 30px 24px;
    }

    .team-card:hover {
        transform: none;
    }

    .team-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .team-card h3 {
        font-size: 1.15rem;
    }

    .team-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
    }

    /* -- About Mobile -- */
    .about {
        padding: 60px 0;
    }

    .about-layout {
        gap: 32px;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.93rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .stat {
        padding: 22px 16px;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    /* -- FAQ Mobile -- */
    .faq {
        padding: 60px 0;
    }

    .faq-question {
        padding: 18px 0;
        font-size: 0.93rem;
        gap: 12px;
    }

    .faq-answer p {
        font-size: 0.88rem;
    }

    /* -- Contact Mobile -- */
    .contact {
        padding: 60px 0;
    }

    .contact-card {
        padding: 16px 18px;
        gap: 12px;
    }

    .contact-card h4 {
        font-size: 0.9rem;
    }

    .contact-card p {
        font-size: 0.82rem;
    }

    .contact-action {
        font-size: 0.8rem;
    }

    .contact-map {
        min-height: 280px;
        border-radius: var(--radius-sm);
    }

    /* -- Footer Mobile -- */
    .footer {
        padding: 40px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    /* -- Section Headers Mobile -- */
    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-label {
        font-size: 0.78rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    /* -- CTA Buttons Mobile -- */
    .cta-button {
        padding: 14px 24px;
        font-size: 0.93rem;
    }

    .cta-button:hover {
        transform: none;
    }

    /* -- Mobile Sticky CTA -- */
    .mobile-cta {
        display: block;
        padding: 10px 16px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-cta .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    /* -- WhatsApp Float Mobile -- */
    .whatsapp-float {
        bottom: 78px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* -- Popup Mobile -- */
    .popup-overlay {
        padding: 16px;
        align-items: flex-end;
    }

    .popup-modal {
        max-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) var(--radius-md) var(--radius-md);
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-visual {
        padding: 32px 20px;
    }

    .popup-icon-wrap {
        width: 64px;
        height: 64px;
    }

    .popup-icon-wrap i {
        font-size: 1.6rem;
    }

    .popup-body {
        padding: 24px 20px;
    }

    .popup-body h3 {
        font-size: 1.25rem;
    }

    .popup-text {
        font-size: 0.85rem;
    }

    .popup-perks {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .popup-perk {
        font-size: 0.8rem;
    }

    .popup-cta {
        padding: 16px 20px;
        font-size: 1rem;
    }

    /* -- Music Player Mobile -- */
    .music-player {
        display: block;
        bottom: 140px;
        right: 16px;
        left: auto;
    }

    .music-label {
        display: none;
    }

    .music-toggle {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .music-toggle i {
        font-size: 1.2rem;
    }

    .music-panel {
        min-width: 210px;
        padding: 14px;
        bottom: 52px;
    }

    .music-title {
        font-size: 0.85rem;
    }

    .music-play {
        width: 34px;
        height: 34px;
    }
}

/* ========================
   EXTRA SMALL (< 380px)
   ======================== */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .trust-items {
        gap: 12px;
    }

    .trust-item {
        font-size: 0.72rem;
    }

    .service-card {
        padding: 24px 18px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .pricing-card {
        padding: 26px 18px;
    }

    .team-card {
        padding: 26px 18px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat {
        padding: 18px 14px;
    }

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

    .showcase-img.small {
        height: 80px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    .gallery-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .gallery-grid-modern {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 140px 140px;
    }

    .gallery-item.gallery-hero {
        grid-column: span 2;
        grid-row: span 1;
    }

    .step-content p {
        font-size: 0.78rem;
    }

    .faq-question {
        font-size: 0.88rem;
    }

    .contact-card {
        flex-wrap: wrap;
    }

    .contact-action {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
        justify-content: center;
        background: var(--cream);
        padding: 10px;
        border-radius: var(--radius-sm);
    }
}

/* --- Popup Modal --- */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.popup-overlay.active .popup-modal {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.popup-visual {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 40%, var(--gold-dark) 100%);
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.popup-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    top: -50%;
    right: -20%;
    border-radius: 50%;
}

.popup-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popup-bounce 2s ease-in-out infinite;
}

.popup-icon-wrap i {
    font-size: 2rem;
    color: var(--white);
}

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

.popup-body {
    padding: 32px 30px;
    text-align: center;
}

.popup-label {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.popup-body h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 14px;
}

.popup-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.popup-text strong {
    color: var(--copper);
}

.popup-perks {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.popup-perk {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
}

.popup-perk i {
    color: #25D366;
    font-size: 0.85rem;
}

.popup-cta {
    margin-bottom: 12px;
}

.popup-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup-instagram:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.popup-skip {
    font-size: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.popup-skip:hover {
    color: var(--dark);
}

/* --- Music Player --- */
.music-player {
    position: fixed;
    bottom: 30px;
    left: 24px;
    z-index: 999;
}

.music-toggle {
    width: auto;
    height: 44px;
    padding: 0 16px 0 14px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
}

.music-toggle:hover {
    background: var(--dark-soft);
    border-color: var(--gold);
}

.music-toggle i {
    font-size: 0.95rem;
    color: var(--gold);
}

.music-toggle.playing i {
    animation: music-pulse 1.5s ease-in-out infinite;
}

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

.music-label {
    letter-spacing: 0.5px;
}

.music-panel {
    position: absolute;
    bottom: 54px;
    left: 0;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 18px;
    min-width: 240px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.music-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.music-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.music-eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
}

.music-eq span {
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
    height: 6px;
    transition: height 0.3s ease;
}

.music-eq.playing span:nth-child(1) { animation: eq-bar 0.8s ease-in-out infinite; }
.music-eq.playing span:nth-child(2) { animation: eq-bar 0.6s ease-in-out infinite 0.1s; }
.music-eq.playing span:nth-child(3) { animation: eq-bar 0.9s ease-in-out infinite 0.2s; }
.music-eq.playing span:nth-child(4) { animation: eq-bar 0.7s ease-in-out infinite 0.15s; }

@keyframes eq-bar {
    0%, 100% { height: 6px; }
    50% { height: 22px; }
}

.music-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.music-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.music-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.music-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.music-play:hover {
    background: var(--gold-dark);
    transform: scale(1.08);
}

.music-volume {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.music-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 2px solid var(--dark);
}

.music-volume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 2px solid var(--dark);
}
