/* ============================================
   GANEI HAZIKARON - Memorial Garden Services
   Elegant, Respectful Design System
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Color Palette - Soft purple, elegant and uplifting */
    --color-bg: #FAF8FC;
    --color-bg-warm: #F3EEF8;
    --color-bg-dark: #2A2535;
    --color-bg-darker: #1E1A28;

    --color-primary: #7B5EA7;
    --color-primary-light: #9B7EC7;
    --color-primary-dark: #5E4488;
    --color-primary-soft: rgba(123, 94, 167, 0.08);
    --color-primary-glow: rgba(123, 94, 167, 0.3);

    --color-accent: #B48ED4;
    --color-accent-light: #CBA8E8;
    --color-accent-soft: rgba(180, 142, 212, 0.15);

    --color-text: #2E2A35;
    --color-text-light: #5D5768;
    --color-text-lighter: #908A98;
    --color-text-on-dark: #EDE8F2;
    --color-text-on-dark-soft: #B5AEC0;

    --color-gold: #A88BD4;
    --color-gold-soft: rgba(168, 139, 212, 0.12);

    --color-success: #7A9B6D;
    --color-border: rgba(123, 94, 167, 0.12);
    --color-border-light: rgba(123, 94, 167, 0.06);

    /* Typography */
    --font-heading: 'Frank Ruhl Libre', 'David', serif;
    --font-body: 'Heebo', 'Arial', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-sm: 8px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 40, 37, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 40, 37, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 40, 37, 0.1);
    --shadow-xl: 0 16px 60px rgba(44, 40, 37, 0.12);
}

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

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

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

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
}

/* --- Section Styling --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--color-text);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    color: var(--color-primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--color-text-lighter);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-light);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-text);
    background: var(--color-primary-soft);
}

.nav-cta {
    background: var(--color-primary) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
}

.nav-cta:hover {
    background: var(--color-primary-dark) !important;
    color: #fff !important;
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #2A2535 0%, #352D45 30%, #3E3555 60%, #2A2535 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(180, 142, 212, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(123, 94, 167, 0.08) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(180, 142, 212, 0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-accent-light);
    background: rgba(180, 142, 212, 0.1);
    border: 1px solid rgba(180, 142, 212, 0.15);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge-icon {
    font-size: 0.6rem;
    opacity: 0.6;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--color-text-on-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.2rem, 6vw, 4rem);
}

.hero-title-accent {
    font-size: clamp(3rem, 8vw, 5.5rem) !important;
    font-weight: 500;
    background: linear-gradient(135deg, #CBA8E8, #E0C0F5, #B48ED4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 4px 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-on-dark-soft);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

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

.btn-glow {
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-arrow {
    transition: transform var(--transition-fast);
    font-size: 1.2em;
}

.btn:hover .btn-arrow {
    transform: translateX(-4px);
}

/* Hero Trust Bar */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-trust-item {
    text-align: center;
}

.hero-trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-light);
    line-height: 1;
}

.hero-trust-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-on-dark-soft);
    margin-top: 6px;
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.75rem;
    color: var(--color-text-on-dark-soft);
    letter-spacing: 0.1em;
}

.scroll-indicator {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--color-accent-light);
    border-radius: 3px;
    animation: scrollBounce 2s infinite;
}

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

/* ============================================
   EMOTIONAL BRIDGE
   ============================================ */
.emotional-bridge {
    padding: 80px 0;
    background: var(--color-bg-warm);
}

.bridge-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.bridge-quote {
    position: relative;
}

.quote-mark {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 16px;
}

.bridge-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text);
}

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

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

.about-lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--color-primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--color-text-lighter) !important;
    margin-bottom: 0 !important;
}

.about-visual {
    position: relative;
}

.about-image-frame {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.grave-illustration {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--color-bg-warm);
}

.grave-illustration img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-stat-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: #fff;
    padding: 24px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stat-card-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card-text {
    font-size: 0.8rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding);
    background: var(--color-bg-warm);
}

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

.service-card {
    position: relative;
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

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

.service-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding-right: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--section-padding);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    right: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-border), var(--color-primary), var(--color-border));
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 72px;
    min-width: 72px;
    height: 72px;
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    z-index: 1;
    transition: all var(--transition-base);
}

.process-step:hover .step-number {
    background: var(--color-primary);
    color: #fff;
}

.step-content {
    flex: 1;
    padding-top: 12px;
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   PLANS SECTION
   ============================================ */
.plans {
    padding: var(--section-padding);
    background: var(--color-bg-warm);
}

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

.plan-card {
    position: relative;
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    text-align: center;
}

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

.plan-featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
    z-index: 1;
}

.plan-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.plan-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 24px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-header {
    margin-bottom: 24px;
}

.plan-header h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-tagline {
    font-size: 0.85rem;
    color: var(--color-text-lighter);
}

.plan-price {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border-light);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text-lighter);
    vertical-align: super;
}

.price-period {
    font-size: 0.9rem;
    color: var(--color-text-lighter);
}

.plan-features {
    list-style: none;
    text-align: right;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.plan-features li svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--color-success);
}

.plan-features li.disabled {
    opacity: 0.4;
}

.plan-features li.disabled svg {
    color: var(--color-text-lighter);
}

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

.plans-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-lighter);
    margin-top: 40px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-padding);
}

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

.testimonial-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

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

.testimonial-stars {
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-stars span {
    color: var(--color-gold);
    font-size: 1rem;
}

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

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(180, 142, 212, 0.05) 0%, transparent 70%);
}

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

.cta-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--color-text-on-dark);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--color-text-on-dark-soft);
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--color-bg-warm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    background: var(--color-bg);
    color: var(--color-text);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-lighter);
}

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

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

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
    text-align: center;
    margin-top: -8px;
}

/* Contact Info */
.contact-info-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    border: 1px solid var(--color-border-light);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--color-primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-item a,
.info-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.contact-promise {
    background: var(--color-gold-soft);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-promise svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--color-gold);
}

.contact-promise p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-dark);
    padding: 60px 0 0;
    color: var(--color-text-on-dark-soft);
}

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

.footer-brand .logo-title {
    color: var(--color-text-on-dark);
}

.footer-brand .logo-subtitle {
    color: var(--color-text-on-dark-soft);
}

.footer-desc {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-on-dark-soft);
    line-height: 1.7;
    max-width: 360px;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-on-dark);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-on-dark-soft);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-on-dark-soft);
    opacity: 0.6;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-on-dark-soft);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-accent-light);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all var(--transition-base);
    animation: whatsapp-pulse 3s infinite;
}

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

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

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

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 40, 37, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 420px;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-base);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: rgba(122, 155, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-success);
}

.modal-icon svg {
    width: 32px;
    height: 32px;
}

.modal-content h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.process-step,
.plan-card,
.testimonial-card {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.services-grid .service-card:nth-child(1) { animation-delay: 0s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.24s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.32s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.4s; }

.plans-grid .plan-card:nth-child(1) { animation-delay: 0s; }
.plans-grid .plan-card:nth-child(2) { animation-delay: 0.1s; }
.plans-grid .plan-card:nth-child(3) { animation-delay: 0.2s; }

.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.2s; }

.process-step:nth-child(1) { animation-delay: 0s; }
.process-step:nth-child(2) { animation-delay: 0.12s; }
.process-step:nth-child(3) { animation-delay: 0.24s; }
.process-step:nth-child(4) { animation-delay: 0.36s; }

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

    .plan-featured {
        transform: none;
    }

    .plan-featured:hover {
        transform: translateY(-4px);
    }

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

    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--color-border-light);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform var(--transition-base);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links a {
        display: block;
        padding: 12px 16px !important;
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-trust {
        gap: 24px;
    }

    .hero-trust-divider {
        display: none;
    }

    .services-grid,
    .plans-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

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

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

    .process-timeline::before {
        right: 36px;
    }

    .about-stat-card {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

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

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

    .hero-trust {
        flex-direction: column;
    }

    .modal-content {
        margin: 24px;
        padding: 32px 24px;
    }
}
