/* ============================================
   AURA STUDIO — Premium Hair Salon
   Feminine, elegant, modern design
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
    /* Colors */
    --rose-50: #fdf2f4;
    --rose-100: #fce4e8;
    --rose-200: #f9c9d2;
    --rose-300: #f4a3b3;
    --rose-400: #ec7a91;
    --rose-500: #e05070;
    --rose-nude: #d4a5a5;
    --rose-nude-light: #e8cec6;
    --rose-nude-soft: #f0ddd5;
    
    --beige-50: #faf8f5;
    --beige-100: #f5f0ea;
    --beige-200: #ece4da;
    --beige-300: #ddd0c1;
    --beige-warm: #c9b99a;
    
    --gold: #c9a96e;
    --gold-light: #d4b87c;
    --gold-soft: #e8d5a8;
    
    --white: #ffffff;
    --cream: #fdfbf8;
    --dark: #2a2027;
    --dark-soft: #3d3340;
    --text: #4a3f4d;
    --text-light: #7a6e7d;
    --text-muted: #a89aab;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(42, 32, 39, 0.06);
    --shadow-md: 0 8px 30px rgba(42, 32, 39, 0.08);
    --shadow-lg: 0 20px 60px rgba(42, 32, 39, 0.1);
    --shadow-card: 0 4px 20px rgba(42, 32, 39, 0.06);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out);
}

/* --- CONTAINER --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

em {
    font-style: italic;
    color: var(--gold);
}

p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- SECTION TAG --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 1.5px;
    background: var(--gold);
}

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

.section-tag-light::before {
    background: var(--gold-light);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(42, 32, 39, 0.2);
}

.btn-primary:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42, 32, 39, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--beige-300);
}

.btn-secondary:hover {
    background: var(--beige-100);
    border-color: var(--beige-warm);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background: var(--beige-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.05rem;
}

/* --- SECTION HEADER --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header p {
    margin-top: 16px;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

/* --- IMAGE FRAME --- */
.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold-soft);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(253, 251, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(42, 32, 39, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 500;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease-out);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark);
}

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

.nav-cta {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 24px;
    background: var(--dark);
    color: var(--white);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

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

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s var(--ease-out);
    border-radius: 2px;
}

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

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

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 32, 39, 0.7) 0%,
        rgba(42, 32, 39, 0.4) 50%,
        rgba(42, 32, 39, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    animation: heroFadeIn 1.2s var(--ease-out) forwards;
}

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

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    margin-bottom: 24px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.2s both;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.3s both;
}

.hero h1 em {
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 500px;
    animation: heroFadeIn 1.2s var(--ease-out) 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeIn 1.2s var(--ease-out) 0.5s both;
}

.hero-buttons .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    animation: scrollBounce 2s var(--ease-in-out) infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.about-image .image-frame {
    aspect-ratio: 4/3;
}

.about-image .image-frame img {
    object-position: top center;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
    margin-top: -40px;
    position: relative;
    z-index: 2;
    max-width: 380px;
    margin-left: auto;
    margin-right: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--beige-200);
}

.about-content {
    padding-right: 20px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rose-50);
    border-radius: 12px;
    color: var(--rose-nude);
    transition: all 0.3s var(--ease-out);
}

.feature:hover .feature-icon {
    background: var(--rose-100);
    transform: scale(1.05);
}

.feature h4 {
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--beige-50);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.services-image .image-frame {
    aspect-ratio: 3/4;
    max-height: 600px;
    position: sticky;
    top: 120px;
}

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

.service-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease-out);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-soft), var(--rose-nude-light));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rose-50), var(--beige-100));
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--rose-nude);
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--rose-100), var(--beige-200));
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    padding: 4px 12px;
    background: var(--beige-100);
    border-radius: 100px;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(42, 32, 39, 0.85) 0%,
        rgba(42, 32, 39, 0.6) 50%,
        rgba(42, 32, 39, 0.3) 100%
    );
}

.experience-content {
    position: relative;
    z-index: 2;
    padding: var(--section-padding) 0;
    width: 100%;
}

.experience-text {
    max-width: 560px;
}

.experience-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.experience-text h2 em {
    color: var(--gold-light);
}

.experience-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.experience-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.highlight-icon {
    color: var(--gold-light);
    font-size: 0.8rem;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1.6rem;
    color: var(--gold);
}

.star.half {
    background: linear-gradient(90deg, var(--gold) 50%, var(--beige-200) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.review-card {
    background: var(--beige-50);
    padding: 36px 30px;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out);
    position: relative;
    border: 1px solid var(--beige-100);
}

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

.review-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--gold-soft);
    line-height: 1;
    margin-bottom: -10px;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--rose-nude-light), var(--gold-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
}

.review-name {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--beige-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    color: var(--rose-nude);
    box-shadow: var(--shadow-sm);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

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

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-map {
    height: 100%;
    min-height: 450px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #3d2d3a 50%, var(--dark-soft) 100%);
    position: relative;
    overflow: hidden;
}

.cta-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content h2 em {
    color: var(--gold-light);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
}

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

.footer h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease-out);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold-light);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.3s var(--ease-out);
    animation: floatPulse 3s ease-in-out infinite;
}

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

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}

.booking-float {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(42, 32, 39, 0.3);
    z-index: 998;
    transition: all 0.5s var(--ease-out);
    opacity: 0;
    visibility: hidden;
}

.booking-float.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.booking-float:hover {
    background: var(--dark-soft);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 40px rgba(42, 32, 39, 0.35);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-image .image-frame {
        position: static;
        max-height: 400px;
        aspect-ratio: 16/9;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }
    
    /* Navbar Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 251, 248, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s var(--ease-out);
        z-index: 999;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        font-family: var(--font-serif);
        color: var(--dark);
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        margin-right: 0;
        max-width: 100%;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-rating {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        justify-content: center;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Floating Buttons Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    
    .booking-float {
        bottom: 20px;
        left: 20px;
        right: 80px;
        transform: translateX(0) translateY(100px);
        text-align: center;
        justify-content: center;
    }
    
    .booking-float.visible {
        transform: translateX(0) translateY(0);
    }
    
    .booking-float:hover {
        transform: translateX(0) translateY(-2px);
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .review-card {
        padding: 28px 24px;
    }
    
    .about-stats {
        padding: 20px 24px;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .cta-final {
        padding: 64px 0;
    }
}
