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

:root {
    --primary: #0a8a78;
    --primary-dark: #066d5e;
    --primary-light: #14b8a6;
    --accent: #f97316;
    --accent-light: #fb923c;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --dark: #0f1e2e;
    --gray-900: #1f2937;
    --gray-800: #374151;
    --gray-700: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --bg-cream: #fef9f4;
    --bg-mint: #f0fdfa;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(15, 30, 46, 0.08);
    --shadow-md: 0 4px 14px rgba(15, 30, 46, 0.08);
    --shadow-lg: 0 12px 32px rgba(15, 30, 46, 0.12);
    --shadow-xl: 0 24px 60px rgba(10, 138, 120, 0.18);
    --gradient: linear-gradient(135deg, #0a8a78 0%, #14b8a6 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-soft: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    --gradient-cream: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-lg: 24px;
}

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

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: var(--gradient-soft);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-700);
    font-size: 1.05rem;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.97rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(10, 138, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(10, 138, 120, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

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

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.btn-block { width: 100%; }

.wa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background: var(--dark);
    color: var(--gray-200);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-info, .top-contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-contact a {
    transition: var(--transition);
}

.top-contact a:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.logo-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 10px rgba(10, 138, 120, 0.28));
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-accent {
    color: var(--primary);
    font-weight: 800;
}

.logo-text small {
    font-size: 0.62rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.logo-light { color: var(--white); }
.logo-light .logo-accent { color: var(--primary-light); }
.logo-light .logo-text small { color: rgba(255,255,255,0.6); }

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

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.nav-btn {
    padding: 11px 24px;
    background: var(--gradient);
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(10, 138, 120, 0.3);
    font-size: 0.9rem;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10, 138, 120, 0.4);
}

.nav-btn::after { display: none; }

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

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(10, 138, 120, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--white);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.hero-content h1 {
    margin-bottom: 22px;
    line-height: 1.1;
}

.hero-content > p {
    font-size: 1.08rem;
    color: var(--gray-700);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-avatars {
    display: flex;
}

.ta {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: -12px;
}

.ta:first-child { margin-left: 0; }
.ta.a1 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.ta.a2 { background: linear-gradient(135deg, #0a8a78, #14b8a6); }
.ta.a3 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.ta.a4 { background: var(--dark); }

.hero-trust p {
    color: var(--gray-700);
    font-size: 0.92rem;
}

.hero-trust strong {
    color: var(--dark);
    font-weight: 700;
}

.hero-image {
    position: relative;
    height: 540px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 420px;
    height: 420px;
    background: var(--gradient);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-inner-shape {
    width: 340px;
    height: 340px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='white' stroke-width='1.5' opacity='0.4'%3E%3Ccircle cx='100' cy='100' r='90'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='50'/%3E%3C/g%3E%3Cg fill='white'%3E%3Ccircle cx='100' cy='40' r='18'/%3E%3Crect x='90' y='60' width='20' height='55' rx='8'/%3E%3Crect x='65' y='75' width='15' height='40' rx='6' transform='rotate(-15 72 95)'/%3E%3Crect x='120' y='75' width='15' height='40' rx='6' transform='rotate(15 127 95)'/%3E%3Crect x='85' y='115' width='10' height='50' rx='5'/%3E%3Crect x='105' y='115' width='10' height='50' rx='5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card-1 { top: 40px; left: -10px; }
.card-2 { bottom: 80px; right: -20px; animation-delay: 1.5s; }
.card-3 { bottom: 0; left: 20px; animation-delay: 3s; }

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-soft);
    color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.card-2 .card-icon { background: var(--gradient-cream); color: var(--accent); }
.card-3 .card-icon { background: #fce7f3; color: #db2777; }

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

.floating-card p {
    font-size: 0.78rem;
    color: var(--gray-500);
}

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

/* ==========================================================================
   Marquee Strip
   ========================================================================== */
.marquee {
    background: var(--dark);
    color: var(--white);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 50px;
    animation: scroll 40s linear infinite;
}

.marquee-track span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-200);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

.about-image-wrapper {
    position: relative;
    height: 560px;
}

.about-bg-shape {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bg-shape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='white' opacity='0.06'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='80' cy='80' r='2'/%3E%3Ccircle cx='120' cy='40' r='2'/%3E%3Ccircle cx='160' cy='100' r='2'/%3E%3Ccircle cx='40' cy='120' r='2'/%3E%3Ccircle cx='100' cy='160' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.about-portrait {
    width: 240px;
    height: 240px;
    background: var(--white);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--white);
    padding: 22px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 4px solid var(--bg-mint);
}

.experience-badge h3 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1;
}

.experience-badge p {
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 500;
}

.award-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background: var(--white);
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gray-100);
}

.award-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.award-badge h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.award-badge p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.about-content h2 {
    margin: 16px 0 18px;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 18px;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.about-content > p {
    color: var(--gray-700);
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}

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

.feat-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-soft);
    color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.about-feature h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.about-feature p {
    color: var(--gray-700);
    font-size: 0.93rem;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
    padding: 100px 0;
    background: var(--bg-mint);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card > * { position: relative; z-index: 1; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.service-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 12px 32px rgba(10, 138, 120, 0.15);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-soft);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--gradient);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray-700);
    margin-bottom: 18px;
    font-size: 0.93rem;
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    color: var(--gray-700);
    font-size: 0.88rem;
    padding-left: 22px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ==========================================================================
   Conditions
   ========================================================================== */
.conditions {
    padding: 100px 0;
    background: var(--white);
}

.conditions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.condition-chip {
    padding: 12px 22px;
    background: var(--bg-mint);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: default;
}

.condition-chip:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 138, 120, 0.3);
    border-color: transparent;
}

/* ==========================================================================
   Process
   ========================================================================== */
.process {
    padding: 100px 0;
    background: var(--bg-cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    position: relative;
}

.process-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.process-num {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
}

.process-card h3 {
    margin-bottom: 12px;
}

.process-card p {
    color: var(--gray-700);
    font-size: 0.93rem;
}

/* ==========================================================================
   Why Us
   ========================================================================== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

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

.why-content h2 {
    margin: 16px 0 18px;
}

.why-content p {
    color: var(--gray-700);
    font-size: 1.02rem;
}

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

.why-card {
    background: var(--bg-mint);
    padding: 28px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(10, 138, 120, 0.08);
}

.why-card:nth-child(even) {
    background: var(--bg-cream);
    border-color: rgba(249, 115, 22, 0.1);
    transform: translateY(20px);
}

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

.why-card:nth-child(even):hover {
    transform: translateY(14px);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.why-card:nth-child(even) .why-icon {
    color: var(--accent);
}

.why-card h4 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.why-card p {
    color: var(--gray-700);
    font-size: 0.9rem;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    background: var(--dark);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card.featured .price-desc,
.pricing-card.featured ul li {
    color: var(--gray-300);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-warm);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.4);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 1.6rem;
    font-weight: 600;
}

.price small {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-card.featured .price {
    background: linear-gradient(135deg, #14b8a6, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-desc {
    color: var(--gray-700);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.pricing-card ul {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-card ul li {
    color: var(--gray-700);
    font-size: 0.93rem;
}

.pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--dark);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--gradient-warm);
    color: var(--white);
}

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

.testimonial-slider {
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-mint);
    padding: 50px 44px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    border: 1px solid rgba(10, 138, 120, 0.08);
}

.rating {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 32px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.author-avatar.a1 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.author-avatar.a2 { background: linear-gradient(135deg, #0a8a78, #14b8a6); }
.author-avatar.a3 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.author-avatar.a4 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }

.testimonial-author h4 {
    margin-bottom: 2px;
    font-size: 1.02rem;
}

.testimonial-author span {
    color: var(--gray-700);
    font-size: 0.85rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-btn:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    background: var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots span.active {
    width: 32px;
    border-radius: 5px;
    background: var(--gradient);
}

/* ==========================================================================
   Reviews & Ratings
   ========================================================================== */
.reviews {
    padding: 100px 0;
    background: var(--bg-mint);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 48px;
}

.rating-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 138, 120, 0.08);
}

.overall-rating {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 22px;
}

.big-rating {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.big-stars {
    color: #fbbf24;
    font-size: 1.6rem;
    letter-spacing: 4px;
    margin: 10px 0 6px;
}

.overall-rating p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar {
    display: grid;
    grid-template-columns: 28px 1fr 36px;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.rating-bar .bar-track {
    height: 8px;
    background: var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
}

.rating-bar .bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 138, 120, 0.08);
}

.review-form h3 { margin-bottom: 6px; }
.review-form .form-sub {
    color: var(--gray-700);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.rating-label {
    display: block;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.star-input {
    display: inline-flex;
    gap: 6px;
    font-size: 2rem;
    line-height: 1;
    color: var(--gray-300);
    cursor: pointer;
    user-select: none;
}

.star-input .star {
    transition: color 0.15s ease, transform 0.15s ease;
}

.star-input .star:hover,
.star-input .star.hover,
.star-input .star.selected {
    color: #fbbf24;
}

.star-input .star:hover {
    transform: scale(1.12);
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.review-item {
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 138, 120, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-item .review-stars {
    color: #fbbf24;
    letter-spacing: 3px;
    font-size: 0.95rem;
}

.review-item .review-text {
    color: var(--gray-800);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-meta-text h5 {
    font-size: 0.95rem;
    margin-bottom: 1px;
    color: var(--dark);
}

.review-meta-text span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

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

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

.faq-intro h2 {
    margin: 16px 0 18px;
}

.faq-intro > p {
    color: var(--gray-700);
    margin-bottom: 32px;
}

.faq-contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--whatsapp);
}

.faq-contact-card h4 {
    margin-bottom: 8px;
}

.faq-contact-card p {
    color: var(--gray-700);
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

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

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

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-soft);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 26px 22px;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

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

.contact-info > p {
    color: var(--gray-700);
    margin-bottom: 36px;
}

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

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

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-soft);
    color: var(--primary-dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray-700);
    font-size: 0.93rem;
    line-height: 1.6;
}

.contact-item a {
    color: inherit;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 240px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form {
    background: var(--bg-mint);
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 138, 120, 0.08);
}

.contact-form h3 {
    margin-bottom: 6px;
    font-size: 1.5rem;
}

.form-sub {
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px 12px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 138, 120, 0.1);
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    pointer-events: none;
    transition: var(--transition);
    background: var(--white);
    padding: 0 6px;
    font-size: 0.92rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.76rem;
    color: var(--primary);
    font-weight: 600;
}

.form-group textarea + label {
    top: 22px;
    transform: none;
}

.form-group .static-label {
    top: -8px;
    transform: none;
    font-size: 0.76rem;
    color: var(--primary);
    font-weight: 600;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.form-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-check label {
    font-size: 0.88rem;
    color: var(--gray-700);
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-message {
    margin-top: 18px;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 0.92rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

.form-message.info {
    display: block;
    background: #e0f2fe;
    color: #075985;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-banner::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-banner::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 80px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col p {
    color: var(--gray-500);
    line-height: 1.7;
    margin: 18px 0;
    font-size: 0.93rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1.05rem;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.93rem;
}

.footer-col ul a {
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.contact-list li {
    color: var(--gray-500);
    line-height: 1.7;
}

.contact-list a {
    color: var(--gray-300);
}

.contact-list a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--gray-500);
    font-size: 0.88rem;
}

.footer-policy {
    display: flex;
    gap: 24px;
}

.footer-policy a {
    transition: var(--transition);
}

.footer-policy a:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.float-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

.float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--whatsapp);
    animation: pulse 2s ease-out infinite;
}

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

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container,
    .about-grid,
    .why-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image { height: 460px; }
    .hero-circle { width: 360px; height: 360px; }
    .hero-inner-shape { width: 280px; height: 280px; }

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

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

@media (max-width: 768px) {
    .top-bar { font-size: 0.78rem; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .top-info, .top-contact { justify-content: center; gap: 16px; }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 76px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active { right: 0; }

    .hero { padding: 60px 0; }
    .hero-image { height: 380px; }
    .hero-circle { width: 300px; height: 300px; }
    .hero-inner-shape { width: 240px; height: 240px; }

    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }

    .services, .about, .why-us, .pricing, .testimonials, .reviews, .faq, .contact, .conditions, .process {
        padding: 70px 0;
    }

    .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
    .rating-summary, .review-form { padding: 28px 22px; }
    .big-rating { font-size: 3.2rem; }

    .about-image-wrapper { height: 480px; }
    .about-portrait { width: 200px; height: 200px; font-size: 4rem; }
    .experience-badge { right: 0; bottom: 20px; padding: 16px 22px; }
    .experience-badge h3 { font-size: 1.8rem; }
    .award-badge { left: 0; top: 20px; padding: 12px 16px; }

    .why-cards { grid-template-columns: 1fr; }
    .why-card:nth-child(even) { transform: none; }
    .why-card:nth-child(even):hover { transform: translateY(-6px); }

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

    .contact-form { padding: 30px 24px; }

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

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

    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { width: 100%; }

    .testimonial-card { padding: 36px 24px; }
    .testimonial-card p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .container, .nav-container, .hero-container { padding: 0 18px; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }

    .pricing-card { padding: 30px 24px; }
    .price { font-size: 2.4rem; }

    .float-whatsapp { width: 50px; height: 50px; right: 20px; bottom: 80px; }
    .back-to-top { width: 44px; height: 44px; right: 20px; bottom: 24px; }
}
