:root {
    --chocolate-900: #3D2315;
    --chocolate-800: #5C3317;
    --chocolate-700: #6B3A2A;
    --chocolate-600: #7A4B33;
    --chocolate-500: #8B5E3C;
    --chocolate-400: #A67B5B;
    --chocolate-300: #C9A07C;
    --chocolate-200: #E0C4A8;
    --chocolate-100: #F0DDD0;
    --chocolate-50: #FFF8F3;
    --orange-600: #D4662A;
    --orange-500: #E8783A;
    --orange-400: #F09050;
    --orange-300: #F4A870;
    --orange-200: #F8C8A0;
    --orange-100: #FDE8D8;
    --cream: #FFFAF5;
    --white: #FFFFFF;
    --dark: #2A1508;
    --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', ui-serif, Georgia, serif;
    --shadow-sm: 0 1px 2px 0 rgba(61,35,21,0.05);
    --shadow-md: 0 4px 12px -2px rgba(61,35,21,0.1);
    --shadow-lg: 0 12px 32px -4px rgba(61,35,21,0.12);
    --shadow-xl: 0 24px 48px -8px rgba(61,35,21,0.15);
    --shadow-glow: 0 0 30px rgba(232,120,58,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--chocolate-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--orange-500);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--chocolate-700);
}

ul { list-style: none; }

::selection {
    background: var(--orange-200);
    color: var(--chocolate-900);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange-500);
    background: var(--orange-100);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--chocolate-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--chocolate-500);
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--orange-500);
    color: var(--white);
    border-color: var(--orange-500);
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(232,120,58,0);
}

.btn-primary:hover {
    background: var(--orange-600);
    border-color: var(--orange-600);
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 13px;
    padding: 10px 20px;
}

.btn-lg {
    font-size: 16px;
    padding: 16px 32px;
}

.btn-full {
    width: 100%;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(61,35,21,0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--chocolate-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-400);
    border-radius: 1px;
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--chocolate-600);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--chocolate-900);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 13px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 4px;
    transition: color var(--transition);
}

.navbar.scrolled .mobile-toggle {
    color: var(--chocolate-900);
}

.mobile-toggle .menu-close { display: none; }
.mobile-toggle.active .menu-open { display: none; }
.mobile-toggle.active .menu-close { display: block; }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42,21,8,0.5) 0%,
        rgba(92,51,23,0.45) 40%,
        rgba(139,94,60,0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.hero-title em {
    font-style: italic;
    color: var(--orange-300);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 36px;
    
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    margin-left: -10px;
    object-fit: cover;
}

.avatar:first-child { margin-left: 0; }

.hero-proof-text {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.hero-proof-text strong {
    color: var(--orange-300);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.6);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ABOUT */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    
    box-shadow: var(--shadow-lg);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--orange-500);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.big-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.big-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--chocolate-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--orange-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange-500);
}

.feature-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.about-feature strong {
    display: block;
    font-size: 15px;
    color: var(--chocolate-900);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 13px;
    color: var(--chocolate-500);
}

/* SERVICES */
.section-services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(61,35,21,0.06);
    transition: all var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: rgba(232,120,58,0.2);
}

.service-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.08);
}

.service-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    color: var(--chocolate-800);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.service-body {
    padding: 24px;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--chocolate-900);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 14px;
    color: var(--chocolate-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--chocolate-400);
}

.meta-icon {
    width: 14px;
    height: 14px;
}

.service-popular {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange-500);
    background: var(--orange-100);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.service-tag-soft {
    font-size: 12px;
    font-weight: 500;
    color: var(--chocolate-400);
    background: var(--chocolate-50);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* STATS BAR */
.stats-bar {
    background: var(--chocolate-900);
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 700;
    color: var(--orange-400);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--orange-400);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--chocolate-300);
    margin-top: 8px;
    font-weight: 400;
}

/* EXPERIENCE */
.section-experience {
    background: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
}

.exp-card {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.exp-step {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--orange-100);
    line-height: 1;
    margin-bottom: 16px;
}

.exp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange-500);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(232,120,58,0.3);
}

.exp-icon svg {
    width: 24px;
    height: 24px;
}

.exp-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--chocolate-900);
    margin-bottom: 8px;
}

.exp-card p {
    font-size: 14px;
    color: var(--chocolate-500);
    line-height: 1.7;
}

.exp-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    color: var(--chocolate-200);
}

.exp-connector svg {
    width: 24px;
    height: 24px;
}

/* TESTIMONIALS */
.section-testimonials {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(61,35,21,0.06);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--orange-400);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--chocolate-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--chocolate-900);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--chocolate-400);
}

/* BOOKING */
.section-booking {
    background: var(--white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(61,35,21,0.08);
}

.booking-visual {
    position: relative;
    min-height: 600px;
}

.booking-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--chocolate-800);
    box-shadow: var(--shadow-md);
}

.booking-visual-badge svg {
    width: 16px;
    height: 16px;
    color: var(--orange-500);
}

.booking-form-wrap {
    padding: 48px 40px;
    overflow-y: auto;
    max-height: 700px;
}

.booking-form-wrap .section-tag {
    margin-bottom: 8px;
}

.booking-form-wrap .section-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.booking-subtitle {
    font-size: 15px;
    color: var(--chocolate-500);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--chocolate-800);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--chocolate-900);
    background: var(--white);
    border: 2px solid var(--chocolate-100);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--chocolate-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange-400);
    box-shadow: 0 0 0 4px rgba(232,120,58,0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-note {
    text-align: center;
    font-size: 12px;
    color: var(--chocolate-400);
    margin-top: 16px;
}

.booking-success {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.booking-success h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--chocolate-900);
    margin-bottom: 12px;
}

.booking-success p {
    font-size: 16px;
    color: var(--chocolate-500);
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto;
}

.booking-form-wrap {
    padding: 0;
    overflow: hidden;
    height: 900px;
    background: var(--white);
}

.booking-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Tablet */
@media (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-visual {
        min-height: 400px;
    }

    .booking-form-wrap {
        height: 800px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .booking-visual {
        min-height: 800px;
    }

    .booking-form-wrap {
        height: 800px;
    }
}

/* LOCATION */

/* LOCATION */
.section-location {
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

/* MAP */
.location-map {
    width: 100%;
}

.location-map iframe {
    width: 100%;
    min-height: 500px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* INFO */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.loc-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.loc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--orange-100);
    color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-icon svg {
    width: 20px;
    height: 20px;
}

.loc-item strong {
    display: block;
    font-size: 15px;
    color: var(--chocolate-900);
    margin-bottom: 4px;
}

.loc-item p {
    font-size: 14px;
    color: var(--chocolate-500);
    line-height: 1.6;
}

.loc-item a {
    color: var(--orange-500);
    font-weight: 500;
    word-break: break-word;
}

/* TABLET */
@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-map iframe {
        min-height: 450px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .location-map iframe {
        min-height: 350px;
    }

    .location-info {
        gap: 24px;
    }

    .loc-item {
        gap: 12px;
    }

    .loc-icon {
        width: 40px;
        height: 40px;
    }

    .loc-item strong {
        font-size: 14px;
    }

    .loc-item p {
        font-size: 13px;
    }
}

/* SMALL PHONES */
@media (max-width: 480px) {
    .location-map iframe {
        min-height: 300px;
    }
}


/* CTA SECTION */
.section-cta {
    padding: 64px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--chocolate-800) 0%, var(--chocolate-600) 100%);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,120,58,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-text {
    font-size: 17px;
    color: var(--chocolate-200);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: var(--chocolate-300);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--chocolate-400);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    color: var(--chocolate-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-socials a:hover {
    background: var(--orange-500);
    color: var(--white);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

.footer-links-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 14px;
    color: var(--chocolate-400);
    transition: color var(--transition);
}

.footer-links-col a:hover {
    color: var(--orange-400);
}

.footer-links-col p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--chocolate-400);
}

.footer-contact a {
    color: var(--orange-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: var(--chocolate-500);
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }
}

.whatsapp-message {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    font-size: 14px;
    z-index: 9998;
    max-width: 180px;
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        gap: 40px;
    }
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .exp-connector { display: none; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(61,35,21,0.08);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        color: var(--chocolate-700) !important;
        padding: 12px 0;
        font-size: 16px;
    }
    .nav-links a::after { display: none; }
    .btn-nav {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: clamp(30px, 7vw, 44px);
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-main img {
        height: 360px;
    }
    .about-img-float {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -10px;
    }
    .about-badge-float {
        top: -12px;
        left: -8px;
        padding: 12px 16px;
    }
    .big-number { font-size: 26px; }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .stat-number { font-size: 36px; }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .exp-card {
        padding: 24px 16px;
        border-bottom: 1px solid var(--chocolate-100);
    }
    .exp-card:last-child {
        border-bottom: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    .booking-visual {
        min-height: 260px;
    }
    .booking-form-wrap {
        padding: 32px 24px;
        max-height: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    .hero-social-proof {
        flex-direction: column;
        gap: 8px;
    }
    .stats-grid {
        gap: 20px;
    }
    .stat-number { font-size: 30px; }
    .stat-plus { font-size: 24px; }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

.reviews-fullwidth {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 40px 0;
}