/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #2c2c2c; background: #f5f0e8; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  --dark: #1a2626;
  --dark-green: #243434;
  --gold: #c5a55a;
  --gold-hover: #d4b76a;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --text-dark: #1a1a1a;
  --text-light: #e8e0d0;
  --text-muted: #8a8578;
  --border-gold: rgba(197, 165, 90, 0.3);
  --shadow: 0 4px 30px rgba(0,0,0,0.15);
  --section-pad: 100px 0;
  --container: 1200px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.3px; }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
p { line-height: 1.75; font-size: 1rem; }
.gold { color: var(--gold); }

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

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 0; font-size: 0.95rem; font-weight: 600; transition: all 0.3s ease; letter-spacing: 0.5px; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(197,165,90,0.35); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--cream); }
.btn-dark:hover { background: var(--dark-green); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: all 0.4s ease; }
.navbar.scrolled { background: rgba(26,38,38,0.97); backdrop-filter: blur(12px); padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; object-fit: contain; }
.nav-logo span { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: #fff; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: color 0.3s; letter-spacing: 0.5px; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { padding: 10px 24px !important; font-size: 0.85rem !important; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 5px; }
.mobile-toggle span { width: 24px; height: 2px; background: #fff; transition: 0.3s; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(26,38,38,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.4rem; font-family: 'Cormorant Garamond', serif; }
.mobile-menu .close-menu { position: absolute; top: 24px; right: 24px; background: none; color: #fff; font-size: 2rem; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }

/* ===== HERO CAROUSEL ===== */
.hero-carousel { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,25,25,0.92) 0%, rgba(15,25,25,0.82) 35%, rgba(15,25,25,0.4) 65%, rgba(15,25,25,0.05) 100%); }
.hero-dots { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.hero-dot { width: 28px; height: 3px; border-radius: 0; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: all 0.35s ease; padding: 0; }
.hero-dot.active { background: var(--gold); width: 48px; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; min-height: 100vh; padding-top: 100px; padding-bottom: 60px; }
.hero-content { max-width: 600px; }
.hero-subtitle { font-size: 0.82rem; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.hero h1 { color: #fff; margin-bottom: 22px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-text { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 16px; line-height: 1.85; }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 20px 0 32px; }
.hero-bullets li { color: rgba(255,255,255,0.8); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.hero-bullets li::before { content: '✦'; color: var(--gold); font-size: 0.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-phone { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 16px; }
.hero-phone a { color: var(--gold); font-weight: 600; }

/* ===== ABOUT / LAWYER ===== */
.about { padding: var(--section-pad); background: var(--cream); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content h2 { margin-bottom: 8px; }
.about-subtitle { color: var(--gold); font-size: 1.05rem; font-weight: 500; letter-spacing: 1px; margin-bottom: 28px; font-family: 'Cormorant Garamond', serif; font-style: italic; }
.about-content p { color: #555; margin-bottom: 16px; }
.about-photo { position: relative; }
.about-photo-frame { border: 3px solid var(--gold); padding: 12px; position: relative; }
.about-photo-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.about-photo-frame::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%; border: 1.5px solid var(--border-gold); z-index: -1; }
.about-badge-img { position: absolute; bottom: -20px; left: -20px; width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--gold); background: #fff; object-fit: contain; padding: 10px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); z-index: 2; }

/* ===== WHY CHOOSE US ===== */
.why-us { padding: var(--section-pad); background: var(--dark); }
.why-us h2 { color: #fff; text-align: center; margin-bottom: 12px; }
.why-us .section-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 50px; }
.why-narrative { max-width: 850px; margin: 0 auto; text-align: center; background: var(--cream-light); border: 1px solid var(--border-gold); padding: 50px 60px; box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.why-narrative p { color: #444; font-size: 1.1rem; line-height: 1.85; margin-bottom: 24px; }
.why-narrative p:last-child { margin-bottom: 0; }
.why-intro { font-size: 1.45rem !important; color: var(--dark) !important; font-family: 'Cormorant Garamond', serif; line-height: 1.6 !important; margin-bottom: 36px !important; }
.why-intro strong { color: var(--gold); }

/* ===== SERVICES ===== */
.services { padding: var(--section-pad); background: var(--dark-green); position: relative; }
.services::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.02)" width="1" height="100"/></svg>') repeat; background-size: 40px; opacity: 0.5; }
.services .container { position: relative; z-index: 1; }
.services h2 { color: #fff; text-align: center; margin-bottom: 60px; }
.services h2::after { content: ''; display: block; width: 60px; height: 2px; background: var(--gold); margin: 16px auto 0; }
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-card { background: var(--cream-light); border: 1px solid var(--border-gold); padding: 48px 40px; position: relative; display: flex; flex-direction: column; }
.service-card:nth-child(2) { margin-left: 0; }
.service-card h3 { color: var(--dark); margin-bottom: 16px; font-size: 1.3rem; }
.service-card p { color: #555; font-size: 0.93rem; margin-bottom: 20px; }
.service-tagline { color: var(--gold) !important; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem !important; margin-bottom: 24px !important; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.service-list { list-style: none; padding: 0; margin: 0 0 32px 0; display: flex; flex-direction: column; flex: 1; }
.service-list li { color: var(--dark); font-size: 1.05rem; padding: 14px 0 14px 34px; position: relative; line-height: 1.6; border-bottom: 1px solid rgba(200, 175, 120, 0.2); font-weight: 500; }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '✦'; color: var(--gold); position: absolute; left: 4px; font-size: 1.1rem; top: 14px; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ===== CASE RESULTS ===== */
.results { padding: var(--section-pad); background: var(--cream); }
.results h2 { text-align: center; margin-bottom: 12px; color: var(--dark); }
.results .section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 50px; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.result-card { background: var(--cream-light); border: 1.5px solid rgba(26,38,38,0.35); padding: 36px 32px; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.result-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.result-tag { display: inline-block; background: var(--dark); color: var(--cream); padding: 5px 16px; border-radius: 0; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.result-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.result-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--dark); font-family: 'Inter', sans-serif; font-weight: 600; }
.result-card p { color: #555; font-size: 0.88rem; line-height: 1.7; }
.results-cta { text-align: center; margin-top: 48px; }
.results-cta p { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-muted); font-size: 1.2rem; margin-bottom: 20px; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 120px 0; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-bg::after { content: ''; position: absolute; inset: 0; background: rgba(26,38,38,0.7); }
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-label { font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 28px; font-style: italic; }
.cta-banner .btn { font-size: 1rem; padding: 16px 40px; }

/* ===== TESTIMONIALS ===== */
/* ===== RESEÑAS GOOGLE ===== */
.testimonials { padding: var(--section-pad); background: var(--dark); }
.testimonials .container { max-width: 1100px; }
.reviews-label { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; text-align: center; margin-bottom: 20px; }
.reviews-header { display: flex; align-items: center; justify-content: center; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.reviews-rating-summary { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.reviews-score { font-size: 3.5rem; font-weight: 700; color: #fff; font-family: 'Cormorant Garamond', serif; line-height: 1; }
.reviews-stars-big { color: #FBBC05; font-size: 1.4rem; letter-spacing: 2px; }
.reviews-count { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.google-logo-svg { width: 56px; height: 56px; opacity: 0.9; }
.reviews-carousel-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.reviews-track-outer { flex: 1; overflow: hidden; }
.reviews-track { display: flex; gap: 20px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.review-card { flex: 0 0 calc(33.333% - 14px); background: #fff; border: 1px solid rgba(255,255,255,0.12); padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; transition: box-shadow 0.3s, transform 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.review-card-top { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.reviewer-info { display: flex; flex-direction: column; }
.reviewer-info strong { color: var(--dark); font-size: 0.9rem; }
.reviewer-info span { color: rgba(0,0,0,0.4); font-size: 0.78rem; }
.review-stars { color: #FBBC05; font-size: 1rem; letter-spacing: 1px; }
.review-card p { color: #555; font-size: 0.88rem; line-height: 1.7; font-style: italic; }
.reviews-arrow { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: #fff; width: 42px; height: 42px; cursor: pointer; font-size: 1.1rem; transition: background 0.2s, border-color 0.2s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.reviews-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; }
.reviews-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: background 0.3s; padding: 0; }
.reviews-dot.active { background: var(--gold); width: 24px; }
.reviews-cta { text-align: center; }
.btn-reviews { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1.5px solid rgba(255,255,255,0.2); color: #fff; padding: 14px 28px; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.5px; transition: border-color 0.3s, background 0.3s; }
.btn-reviews:hover { border-color: var(--gold); background: rgba(197,165,90,0.1); color: var(--gold); }
@media (max-width: 900px) { .review-card { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 600px) { .review-card { flex: 0 0 100%; } .reviews-carousel-wrap { gap: 8px; } .reviews-arrow { width: 34px; height: 34px; font-size: 0.95rem; } }

/* ===== BLOG / NOTICIAS ===== */
.blog { padding: var(--section-pad); background: var(--cream); }
.blog .blog-label { font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; text-align: center; }
.blog-carousel-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.blog-track-outer { flex: 1; overflow: hidden; }
.blog-track { display: flex; gap: 24px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.blog-card { flex: 0 0 calc(33.333% - 16px); background: #fff; border: 1px solid rgba(0,0,0,0.07); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow 0.3s, transform 0.3s; cursor: default; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-card--link { cursor: pointer; }
.blog-read-more { font-size: 0.8rem; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; margin-top: 4px; }
.blog-tag { display: inline-block; padding: 4px 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; align-self: flex-start; }
.blog-card h3 { color: var(--dark); font-size: 1.05rem; line-height: 1.5; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; flex: 1; }
.blog-date { font-size: 0.78rem; color: #aaa; letter-spacing: 0.5px; margin-top: auto; }
.blog-card--placeholder { border-style: dashed; opacity: 0.82; }
.blog-card--placeholder h3 { color: var(--dark); opacity: 0.7; }
.blog-coming-badge { display: inline-block; margin-top: 8px; padding: 4px 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(197,165,90,0.1); color: var(--gold); border: 1px solid rgba(197,165,90,0.25); align-self: flex-start; }
.posts-loading { width: 100%; text-align: center; color: var(--text-muted); padding: 60px 0; font-size: 0.95rem; }
.blog-empty { text-align: center; max-width: 600px; margin: 0 auto; padding: 60px 0; }
.blog-coming-text { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin: 20px 0 32px; }
.btn-dark { background: var(--dark); color: var(--cream) !important; letter-spacing: 0.5px; }
.blog-arrow { background: rgba(26,38,38,0.07); border: 1px solid rgba(26,38,38,0.15); color: var(--dark); width: 42px; height: 42px; cursor: pointer; font-size: 1.1rem; transition: background 0.2s, border-color 0.2s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.blog-arrow:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.blog-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; }
.blog-dot { width: 8px; height: 8px; background: rgba(26,38,38,0.2); border: none; cursor: pointer; transition: background 0.3s, width 0.3s; padding: 0; }
.blog-dot.active { background: var(--gold); width: 24px; }
@media (max-width: 900px) { .blog-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 600px) { .blog-card { flex: 0 0 100%; } .blog-carousel-wrap { gap: 8px; } .blog-arrow { width: 34px; height: 34px; font-size: 0.95rem; } }

/* ===== CONTACT ===== */
.contact { display: flex; min-height: 700px; background: var(--dark-green); align-items: stretch; }
.contact-map-col { flex: 0 0 46%; display: flex; align-items: center; justify-content: center; padding: 50px 40px; }
.map-widget { width: 100%; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.map-header { background: rgba(15,25,25,0.95); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.map-header-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.map-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.map-name { color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; }
.map-divider { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.map-address { color: rgba(255,255,255,0.6); font-size: 0.82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.map-link { display: flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; white-space: nowrap; flex-shrink: 0; transition: opacity 0.2s; }
.map-link:hover { opacity: 0.75; }
.map-link svg { width: 14px; height: 14px; fill: var(--gold); }
.map-frame { height: 420px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-form-col { flex: 1; padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-form-col h2 { color: #fff; margin-bottom: 0; }
.contact-details-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: center; gap: 12px; }
.contact-detail svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
.contact-detail a, .contact-detail span { color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: color 0.3s; }
.contact-detail a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: #fff; padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 0.92rem; transition: border-color 0.3s; outline: none; border-radius: 0; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark-green); color: #fff; }
.form-group textarea { min-height: 100px; resize: vertical; }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.contact-btns .btn { flex: 1; justify-content: center; min-width: 140px; }

/* ===== FOOTER ===== */
.footer { padding: 50px 0 30px; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.08); }
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 42px; object-fit: contain; }
.footer-logo span { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; }
.footer-awards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 10px 0; }
.award-logo { height: 60px; object-fit: contain; border-radius: 4px; filter: grayscale(20%) contrast(110%); mix-blend-mode: multiply; }
.award-logo { mix-blend-mode: normal; background: #fff; padding: 5px; } /* Override mix-blend since dark bg */
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.8rem; text-align: center; }

/* ===== WHATSAPP STICKY ===== */
.whatsapp-sticky { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s; }
.whatsapp-sticky:hover { transform: scale(1.1); }
.whatsapp-sticky svg { width: 30px; height: 30px; fill: #fff; }

/* ===== 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); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .about .container { grid-template-columns: 1fr; gap: 50px; }
  .about-photo { max-width: 450px; margin: 0 auto; }
  .service-cards { grid-template-columns: 1fr; }
  /* contact stacks on tablet */
  .contact { flex-direction: column; min-height: auto; }
  .contact-map-col { flex: none; width: 100%; padding: 40px 24px 0; }
  .map-frame { height: 300px; }
  .contact-form-col { padding: 40px 24px 50px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero .container { padding-top: 120px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .service-card:nth-child(2) { margin-left: 0; }
  .testimonial-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  /* contact mobile */
  .contact { flex-direction: column; min-height: auto; }
  .contact-map-col { flex: none; width: 100%; padding: 32px 16px 0; }
  .map-widget { width: 100%; }
  .map-header { padding: 12px 14px; flex-wrap: wrap; gap: 8px; }
  .map-name { font-size: 0.68rem; letter-spacing: 1.5px; }
  .map-address { font-size: 0.75rem; }
  .map-frame { height: 240px; }
  .contact-form-col { padding: 32px 16px 48px; }
  .contact-form-col h2 { font-size: 2rem; }
  .contact-btns { flex-direction: column; }
  .contact-btns .btn { width: 100%; min-width: unset; }
}
