@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #FBF8F4;
    --bg-alt: #F3EDE4;
    --card: #FFFFFF;
    --card-hover: #FFFCF8;
    --border: #E8DFD3;
    --border-light: #F0E9DF;
    --gold: #B8860B;
    --gold-light: #D4A843;
    --gold-dark: #8B6508;
    --gold-glow: rgba(184, 134, 11, 0.08);
    --gold-glow-md: rgba(184, 134, 11, 0.12);
    --gold-glow-strong: rgba(184, 134, 11, 0.18);
    --rose: #C4956A;
    --cream: #F5EDE0;
    --text: #2C2420;
    --text-secondary: #6B5E54;
    --text-muted: #A39B93;
    --white: #FFFFFF;
    --green: #25D366;
    --shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.06);
    --shadow: 0 4px 16px rgba(44, 36, 32, 0.08);
    --shadow-lg: 0 12px 40px rgba(44, 36, 32, 0.1);
    --shadow-xl: 0 24px 60px rgba(44, 36, 32, 0.12);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.25);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--green);
    color: var(--white);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.8;
}

.page-header {
    padding: 110px 0 30px;
    text-align: center;
}

.page-header::before { display: none; }

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

.navbar.scrolled {
    background: rgba(251, 248, 244, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.5;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.nav-links a.active {
    background: var(--gold-glow);
}

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.8rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

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

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cream);
    background-image:
        radial-gradient(ellipse at 70% 30%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(196, 149, 106, 0.05) 0%, transparent 40%);
}

.hero .container {
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.hero-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 520px;
    justify-self: center;
    align-self: center;
}

.collage-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
}

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

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-1 { }
.collage-2 { }
.collage-3 { }
.collage-4 { }

.hero-title { color: var(--text); }
.hero-desc { color: var(--text-secondary); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: var(--gold);
    stroke-width: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-title span {
    display: inline;
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
    background: linear-gradient(90deg, var(--gold) 0%, #DAA520 40%, #FFD700 50%, #DAA520 60%, var(--gold) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 480px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-stat { position: relative; }

.hero-stat::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

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

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* FEATURES STRIP */
.features-strip {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

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

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.feature-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* SERVICES PREVIEW */
.services-preview {
    padding: 60px 0;
}

.services-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

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

.service-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

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

.service-card-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
}

/* CTA SECTION */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--text) 0%, #3D2E26 100%);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box .section-title { margin-bottom: 16px; color: var(--white); }
.cta-box .section-subtitle { margin: 0 auto 36px; color: rgba(255,255,255,0.7); }

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

/* SERVICES PAGE */
.services-full { padding: 0 0 60px; }

.service-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.cat-btn:hover, .cat-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    border-color: var(--border);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.service-item-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.service-item-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* GALLERY */
.gallery-section { padding: 0 0 60px; }

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

.gallery-item {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
}

.gallery-placeholder svg {
    width: 32px;
    height: 32px;
    stroke: var(--border);
    fill: none;
    stroke-width: 1;
}

.gallery-placeholder span { font-size: 0.75rem; }

/* ABOUT */
.about-content-section { padding: 0 0 40px; }

.about-home-section { padding: 60px 0; }

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

.about-image {
    aspect-ratio: 1/1;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
}

.about-image-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--border);
    fill: none;
    stroke-width: 1;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text);
}

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

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

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

.value-item .check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item .check-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* TEAM */
.team-section {
    padding: 60px 0 80px;
    border-top: 1px solid var(--border-light);
}

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

.team-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.team-photo {
    aspect-ratio: 1;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo svg {
    width: 48px;
    height: 48px;
    stroke: var(--border);
    fill: none;
    stroke-width: 1;
}

.team-info { padding: 24px; }

.team-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.team-info p {
    font-size: 0.8rem;
    color: var(--gold);
}

/* MAP & INFO */
.location-section { padding: 60px 0 80px; }

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

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

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.info-card-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.info-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.info-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-card a { color: var(--gold); }

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* BOOKING */
.booking-section { padding: 0 0 60px; }

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.booking-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text);
}

.booking-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.booking-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.booking-form {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow-md);
}

.form-group select option { background: var(--card); }

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

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

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

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

.review-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    stroke: none;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.review-author span {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.8rem;
}

/* FOOTER */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.8);
}

.footer-main { padding: 48px 0 32px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer .logo-text { color: #fff; }
.footer .gold { color: var(--gold); }

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

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

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-light);
    fill: none;
    stroke-width: 1.5;
    min-width: 16px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold-light);
    background: rgba(184, 134, 11, 0.15);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255,255,255,0.5);
    fill: none;
    stroke-width: 1.5;
}

.footer-social a:hover svg { stroke: var(--gold-light); }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 96px;
    width: 52px;
    height: 52px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

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

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .hero-grid { gap: 30px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .services-list { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-height: 400px; }
    .location-grid { grid-template-columns: 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(251, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        z-index: 100;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 24px;
        color: var(--text);
    }

    .nav-toggle { display: flex; }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .hero-title { font-size: 2.5rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 80px 0 40px; }
    .hero-content { max-width: 100%; }
    .hero-collage { max-width: 400px; margin: 0 auto; }
    .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
    .hero-stats { justify-content: center; gap: 24px; flex-wrap: wrap; }
    .section-title { font-size: 2rem; }

    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .services-preview-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-section { padding: 60px 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .about-home-section { padding: 40px 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; }

    .booking-form { padding: 24px; }

    .cta-box { padding: 48px 24px; }
    .cta-actions { flex-direction: column; align-items: center; }

    .whatsapp-float { right: 20px; bottom: 20px; }

    .page-header { padding: 110px 0 30px; }

    .map-wrapper { min-height: 280px; }
    .map-wrapper iframe { min-height: 280px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-stat-value { font-size: 1.5rem; }
    .hero-stat::after { display: none; }
    .hero-collage { max-width: 100%; gap: 10px; }
    .services-preview-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .service-card { padding: 24px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-text h3 { font-size: 1.3rem; }
    .reviews-section { padding: 40px 0; }
}
