/* ============================================
   SPa MARBELLA — Custom Styles
   Vibrant Modern | Plum + Amber
   ============================================ */

/* --- Custom Properties --- */
:root {
    --plum-50: #faf5ff;
    --plum-100: #f3e8ff;
    --plum-200: #e9d5ff;
    --plum-300: #d8b4fe;
    --plum-400: #c084fc;
    --plum-500: #a855f7;
    --plum-600: #9333ea;
    --plum-700: #7e22ce;
    --plum-800: #6b21a8;
    --plum-900: #581c87;
    --plum-950: #3b0764;

    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;

    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-700: #292524;
    --stone-800: #1c1917;
    --stone-900: #0c0a09;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--stone-700);
    background: var(--stone-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
#nav {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#nav.scrolled {
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(107, 33, 168, 0.08);
    padding: 0;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

#nav.scrolled .nav-logo-text {
    color: var(--plum-800);
}

.nav-logo-dot {
    width: 10px;
    height: 10px;
    background: var(--amber-400);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-400);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

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

#nav.scrolled .nav-link {
    color: var(--stone-700);
}

#nav.scrolled .nav-link:hover {
    color: var(--plum-700);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--amber-400);
    text-decoration: none;
    border: 1.5px solid var(--amber-400);
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    background: var(--amber-400);
    color: var(--plum-900);
}

#nav.scrolled .nav-cta {
    color: var(--plum-700);
    border-color: var(--plum-700);
}

#nav.scrolled .nav-cta:hover {
    background: var(--plum-700);
    color: #fff;
}

/* Mobile menu button */
.nav-menu-btn {
    width: 28px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#nav.scrolled .nav-menu-btn span {
    background: var(--plum-800);
}

.nav-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu */
#mobile-menu {
    top: 72px !important;
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

#mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
#mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
#mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu-link:hover {
    color: var(--amber-400);
}

.mobile-menu-cta {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--amber-400);
    text-decoration: none;
    border: 1.5px solid var(--amber-400);
    padding: 12px 32px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s, background 0.3s ease, color 0.3s ease;
}

#mobile-menu.open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-cta:hover {
    background: var(--amber-400);
    color: var(--plum-900);
}

/* ============================================
   HERO
   ============================================ */
#hero {
    position: relative;
    background: linear-gradient(135deg, var(--plum-950) 0%, var(--plum-800) 30%, #9333ea 60%, var(--plum-700) 100%);
}

.hero-gradient {
    background: radial-gradient(ellipse at 30% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(147, 51, 234, 0.3) 0%, transparent 50%);
}

/* Geometric shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--amber-400);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--plum-300);
    top: 50%;
    left: -80px;
    transform: rotate(45deg);
    border-radius: 20px;
}

.hero-shape-3 {
    width: 180px;
    height: 180px;
    background: var(--amber-300);
    border-radius: 50%;
    bottom: 10%;
    right: 15%;
}

.hero-shape-4 {
    width: 120px;
    height: 120px;
    background: #fff;
    top: 20%;
    left: 10%;
    transform: rotate(30deg);
    border-radius: 16px;
}

.hero-shape-5 {
    width: 80px;
    height: 80px;
    background: var(--amber-400);
    border-radius: 50%;
    bottom: 25%;
    left: 5%;
}

/* Dots pattern */
.hero-dots {
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--amber-400);
    opacity: 0.2;
}

.hero-dot-1 { width: 8px; height: 8px; top: 15%; left: 20%; }
.hero-dot-2 { width: 12px; height: 12px; top: 30%; right: 25%; opacity: 0.15; }
.hero-dot-3 { width: 6px; height: 6px; bottom: 30%; left: 15%; opacity: 0.25; }
.hero-dot-4 { width: 10px; height: 10px; bottom: 20%; right: 10%; opacity: 0.18; }
.hero-dot-5 { width: 14px; height: 14px; top: 60%; left: 30%; opacity: 0.1; }
.hero-dot-6 { width: 6px; height: 6px; top: 10%; right: 40%; opacity: 0.2; }

/* Hero content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--amber-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-400);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber-400);
    color: var(--plum-900);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--amber-400);
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background: var(--amber-500);
    border-color: var(--amber-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.35);
}

.btn-primary-lg {
    padding: 18px 40px;
    font-size: 1.0625rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

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

/* ============================================
   SECTION COMMON
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--plum-600);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 36px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--amber-400);
}

.section-label-light {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(251, 191, 36, 0.7);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--stone-800);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-title-light {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services-deco-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--plum-100);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.5;
    pointer-events: none;
}

.services-deco-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--amber-300);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    opacity: 0.2;
    pointer-events: none;
}

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

.service-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--stone-200);
    transition: all 0.4s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(107, 33, 168, 0.12);
    border-color: var(--plum-200);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum-600), var(--amber-400));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card-accent {
    opacity: 1;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
    color: #fff;
    transform: scale(1.05);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stone-800);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-card-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about-deco-1 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--plum-100);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -80px;
    left: -80px;
    opacity: 0.4;
    pointer-events: none;
}

.about-deco-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--amber-300);
    border-radius: 50%;
    bottom: 10%;
    right: 5%;
    opacity: 0.15;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(107, 33, 168, 0.15);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber-400);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.4;
}

.about-floating-card {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-floating-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
}

.about-floating-label {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
    font-weight: 500;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--stone-800);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.about-body {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-700);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gallery-shape {
    position: absolute;
    opacity: 0.04;
}

.gallery-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--amber-400);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.gallery-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--plum-400);
    border-radius: 50%;
    bottom: -50px;
    right: 5%;
}

.gallery-shape-3 {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 20px;
    top: 50%;
    right: -30px;
    transform: rotate(45deg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 33, 168, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.gallery-item-1 { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item-2 { grid-column: 5 / 9; grid-row: 1; }
.gallery-item-3 { grid-column: 9 / 13; grid-row: 1; }
.gallery-item-4 { grid-column: 5 / 9; grid-row: 2; }
.gallery-item-5 { grid-column: 9 / 13; grid-row: 2; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.testimonials-shape {
    position: absolute;
    opacity: 0.06;
}

.testimonials-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--amber-400);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.testimonials-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--plum-300);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
}

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

.testimonial-card {
    position: relative;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

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

.testimonial-card-accent {
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-400), var(--plum-400));
    border-radius: 0 0 4px 4px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--plum-500), var(--amber-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9375rem;
}

.testimonial-author-location {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   CTA
   ============================================ */
.cta-bg-gradient {
    background: linear-gradient(135deg, var(--plum-800) 0%, var(--plum-700) 50%, #a855f7 100%);
}

.cta-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    opacity: 0.08;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--amber-400);
    border-radius: 50%;
    top: -80px;
    left: -80px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 30px;
    bottom: -50px;
    right: 10%;
    transform: rotate(30deg);
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--amber-300);
    border-radius: 50%;
    top: 20%;
    right: 5%;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.cta-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-deco-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--plum-100);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: 0.4;
    pointer-events: none;
}

.contact-deco-2 {
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--amber-300);
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    opacity: 0.2;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--stone-200);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--stone-100);
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    flex-shrink: 0;
}

.contact-info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 4px;
}

.contact-info-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--stone-700);
    line-height: 1.6;
}

.contact-info-value-hover {
    color: var(--plum-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value-hover:hover {
    color: var(--plum-500);
    text-decoration: underline;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--stone-200);
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--stone-700);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--stone-200);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: var(--stone-700);
    background: var(--stone-50);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--plum-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.08);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--plum-50), var(--plum-100));
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--plum-200);
}

.form-success-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--plum-500), var(--plum-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--plum-800);
    line-height: 1.5;
}

.hidden {
    display: none !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-dot {
    width: 10px;
    height: 10px;
    background: var(--amber-400);
    border-radius: 50%;
    display: inline-block;
}

.footer-desc {
    font-size: 0.875rem;
    color: #78716c;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    font-size: 0.875rem;
    color: #78716c;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--amber-400);
}

.footer-contact-item {
    font-size: 0.875rem;
    color: #78716c;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: #57534e;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 3rem;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .gallery-item-1 { grid-column: 1 / -1; grid-row: auto; }
    .gallery-item-2 { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item-3 { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item-4 { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item-5 { grid-column: 2 / 3; grid-row: auto; }

    .gallery-item { height: 280px; }
    .gallery-item-1 { height: 350px; }
}

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

    .about-image-wrapper img {
        height: 500px;
    }

    .about-floating-card {
        left: 1rem;
        bottom: 1rem;
    }

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

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

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

    .testimonials-grid .testimonial-card:last-child {
        max-width: none;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5 {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }

    .gallery-item-1 {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
