/* ============================================
   Golden Pasture Agro — Design System
   ============================================ */

:root {
    --color-gold: #D4AF37;
    --color-gold-light: #E8C96A;
    --color-navy: #1a2a3a;
    --color-navy-light: #2a3f55;
    --color-cream: #F7F3EB;
    --color-sage: #4A6741;
    --color-sage-light: #6B8F62;
    --color-charcoal: #2C2C2C;
    --color-white: #ffffff;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card: 0 4px 24px rgba(26, 42, 58, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(26, 42, 58, 0.14);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.35);
    --nav-height: 72px;
    --section-padding: clamp(3rem, 6vw, 5rem);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

ul {
    list-style: none;
}

/* Grain texture overlay */
.grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-navy);
}

.title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-sage));
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-lead {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    color: var(--color-navy-light);
    font-size: 1.05rem;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(26, 42, 58, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(1.25rem, 5vw, 6%);
    z-index: 1000;
    transition: background 0.4s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo),
                height 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(26, 42, 58, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    height: 64px;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--color-white);
}

.logo-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out-expo);
}

.logo-icon {
    font-size: 1rem;
    color: var(--color-gold);
}

.logo:hover .logo-icon-wrap {
    transform: rotate(-8deg) scale(1.05);
}

.logo-agro {
    font-size: 0.75em;
    opacity: 0.85;
    letter-spacing: 0.12em;
}

.logo span {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

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

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

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

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out-expo),
                opacity 0.35s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    margin-top: var(--nav-height);
    min-height: clamp(420px, 70vh, 640px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.75) 0%, rgba(74, 103, 65, 0.55) 100%),
                url('../images/Agro.jpeg') center/cover no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.hero--compact {
    min-height: clamp(280px, 40vh, 380px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 6%);
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.25rem, 6vw, 4rem);
    color: var(--color-white);
    margin-bottom: 1rem;
    max-width: 14ch;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-deco {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(180px, 25vw, 320px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-gold);
    padding: 0.85rem 1.75rem;
    color: var(--color-navy);
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--color-gold);
    cursor: pointer;
    transition: transform 0.3s var(--ease-out-expo),
                box-shadow 0.3s var(--ease-out-expo),
                background 0.3s ease,
                color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    background: var(--color-gold-light);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: none;
}

.btn--outline-dark {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.btn--outline-dark:hover {
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: none;
}

.btn--full {
    width: 100%;
}

/* Section divider */
.section-divider {
    display: block;
    width: 100%;
    height: 48px;
    color: var(--color-cream);
    margin-top: -1px;
}

.section-divider--flip {
    transform: scaleY(-1);
    margin-top: 0;
    margin-bottom: -1px;
}

/* ============================================
   Layout & Sections
   ============================================ */
main {
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--section-padding) clamp(1.25rem, 5vw, 6%);
    text-align: center;
}

.container--offset {
    margin-top: var(--nav-height);
}

.process-section {
    padding: var(--section-padding) clamp(1.25rem, 5vw, 6%);
    text-align: center;
    background: var(--color-white);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-sage), var(--color-gold), var(--color-sage));
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 2.5rem;
}

/* Cards */
.card {
    background: var(--color-white);
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    text-align: left;
    transition: transform 0.4s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo);
}

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

.card-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-sage);
    transition: transform 0.4s var(--ease-out-expo), color 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
    color: var(--color-gold);
}

.card-image-wrap {
    overflow: hidden;
    position: relative;
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.card:hover img {
    transform: scale(1.03);
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

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

.card--text-only {
    padding: 2rem 1.75rem;
}

.card--text-only .card-body {
    padding: 0;
}

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: var(--container-width);
    margin: 2.5rem auto 0;
}

.step {
    padding: 2rem 1.5rem;
    background: var(--color-cream);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.4s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo);
}

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

.step-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.25rem;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-card);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--color-gold);
    color: var(--color-navy);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

.step-icon {
    font-size: 1.6rem;
    color: var(--color-sage);
}

.step.is-visible .step-badge::before {
    animation: pulse-ring 2s var(--ease-out-expo) infinite;
}

.step-badge::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    opacity: 0;
}

.step h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--color-navy-light);
}

/* Values */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--section-padding) clamp(1.25rem, 5vw, 6%);
    background: var(--color-cream);
}

.value-item {
    background: var(--color-white);
    padding: 2rem 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    text-align: center;
    border-top: 3px solid var(--color-gold);
    transition: transform 0.4s var(--ease-out-expo),
                box-shadow 0.4s var(--ease-out-expo);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.value-icon {
    display: block;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
    color: var(--color-sage);
    transition: transform 0.4s var(--ease-out-expo), color 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.12);
    color: var(--color-gold);
}

.value-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-navy);
    font-size: 1.15rem;
    font-family: var(--font-display);
}

.value-item p,
.value-item {
    color: var(--color-navy-light);
    font-size: 0.95rem;
}

/* ============================================
   Contact
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: left;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s var(--ease-out-expo);
}

.contact-card:hover {
    transform: translateX(4px);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.12);
    border-radius: 10px;
}

.contact-card a {
    color: var(--color-navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.contact-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-sage);
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--color-navy);
}

.contact-form-wrap {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.form-intro-title {
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.form-intro-lead {
    font-size: 0.9rem;
    color: var(--color-navy-light);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-charcoal);
    background: var(--color-cream);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: border-color 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2a3a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.card-body--icon {
    padding-bottom: 0;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    background: var(--color-cream);
    color: var(--color-sage);
    border-radius: 4px;
    letter-spacing: 0.02em;
}

/* Hero eyebrow */
.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
}

/* Stats bar */
.stats-bar {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 2.5rem clamp(1.25rem, 5vw, 6%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.85rem;
    opacity: 0.75;
}

/* Why section */
.why-section {
    padding: var(--section-padding) clamp(1.25rem, 5vw, 6%);
    background: var(--color-white);
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-width);
    margin: 2.5rem auto 0;
}

.why-item {
    padding: 1.75rem 1.5rem;
    text-align: left;
    border-radius: 12px;
    background: var(--color-cream);
    transition: transform 0.4s var(--ease-out-expo);
}

.why-item:hover {
    transform: translateY(-4px);
}

.why-item i {
    font-size: 1.5rem;
    color: var(--color-sage);
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--color-navy-light);
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 6%);
    text-align: center;
}

.cta-banner h2 {
    color: var(--color-white);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.cta-banner p {
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 1.75rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

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

.btn--whatsapp:hover {
    background: #1fb855;
    border-color: #1fb855;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    color: var(--color-white);
}

/* About story */
.story-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.story-section p {
    margin-bottom: 1.25rem;
    color: var(--color-navy-light);
}

.story-list {
    margin: 1.5rem 0;
    padding-left: 0;
}

.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: var(--color-navy-light);
    font-size: 0.95rem;
}

.story-list i {
    color: var(--color-gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    color: var(--color-white);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse-ring 2s var(--ease-out-expo) infinite;
    opacity: 0;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-navy-light);
    text-align: center;
    margin-top: 0.75rem;
}

.form-note a {
    color: var(--color-sage);
    font-weight: 600;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 6%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2.5rem;
    max-width: var(--container-width);
    margin: 0 auto 2rem;
    text-align: left;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 360px;
    opacity: 0.75;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.footer-contact-item i {
    width: 18px;
    text-align: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-ring {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

.hero-content .reveal {
    opacity: 0;
    animation: fade-up 0.8s var(--ease-out-expo) forwards;
}

.hero-content .reveal:nth-child(1) { animation-delay: 0.1s; }
.hero-content .reveal:nth-child(2) { animation-delay: 0.25s; }
.hero-content .reveal:nth-child(3) { animation-delay: 0.4s; }
.hero-content .reveal:nth-child(4) { animation-delay: 0.55s; }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out-expo),
                transform 0.7s var(--ease-out-expo);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* SVG icon hover in cards */
.icon-animate {
    transition: transform 0.4s var(--ease-out-expo);
}

.card:hover .icon-animate,
.step:hover .icon-animate {
    transform: scale(1.08);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-deco {
        display: none;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        background: var(--color-navy);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out-expo);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    }

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

    .nav-links a {
        font-size: 1.1rem;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-brand p {
        max-width: none;
        margin: 0 auto;
    }

    .footer-contact,
    .footer-links {
        align-items: center;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .card img {
        height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .hero-content .reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
