@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --navy: #0B1936;
  --navy-mid: #142147;
  --navy-light: #1e3060;
  --gold: #C9A84C;
  --gold-light: #e4c472;
  --gold-dark: #a8872e;
  --white: #ffffff;
  --cream: #f8f4ed;
  --text-muted: #9aafc7;
  --border: rgba(201,168,76,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ORNAMENTS */
.ornament { display: flex; align-items: center; gap: 16px; justify-content: center; margin: 12px 0; }
.ornament-line { flex: 1; max-width: 80px; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.ornament-line.right { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* TYPOGRAPHY */
.section-label { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.heading-display { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; font-weight: 700; color: var(--white); }
.heading-display em { font-style: italic; color: var(--gold); }
.heading-section { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; line-height: 1.2; }
.heading-section em { font-style: italic; color: var(--gold); }
.body-serif { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; line-height: 1.8; color: #c8d6e8; font-weight: 300; }
.body-text { font-size: 0.88rem; line-height: 1.8; color: #9aafc7; font-weight: 300; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 5%; background: rgba(11,25,54,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; }
.nav-logo-sub { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link { padding: 8px 14px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; display: inline-block; position: relative; transition: color 0.2s; }
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta { padding: 9px 20px; border: 1px solid var(--gold); background: transparent; color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.25s ease; border-radius: 2px; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); display: block; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(11,25,54,0.99); z-index: 999; padding: 24px 5% 32px; border-bottom: 1px solid var(--border); flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-nav-link { padding: 14px 0; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; display: block; border-bottom: 1px solid rgba(201,168,76,0.1); transition: color 0.2s; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; background: var(--gold); color: var(--navy); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 2px; transition: all 0.25s ease; text-decoration: none; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: transparent; color: var(--white); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; border-radius: 2px; transition: all 0.25s ease; text-decoration: none; }
.btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }

/* SECTIONS */
.section { padding: 90px 5%; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }

/* PAGE BANNER */
.page-banner { padding: 120px 5% 60px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; overflow: hidden; text-align: center; border-bottom: 1px solid var(--border); }
.page-banner::after { content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: linear-gradient(135deg, rgba(20,33,71,0.9), rgba(14,26,61,0.9)); border: 1px solid var(--border); padding: 36px 32px; position: relative; overflow: hidden; transition: all 0.3s ease; text-decoration: none; display: block; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.5); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--gold); }
.service-number { position: absolute; top: 24px; right: 28px; font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: rgba(201,168,76,0.08); line-height: 1; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.service-desc { font-size: 0.83rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { padding: 4px 10px; border: 1px solid rgba(201,168,76,0.25); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); border-radius: 1px; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: rgba(20,33,71,0.7); border: 1px solid var(--border); padding: 28px; position: relative; transition: all 0.3s ease; }
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.testimonial-meta { flex: 1; }
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.testimonial-location { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars span { color: var(--gold); font-size: 0.85rem; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; line-height: 1.75; color: #c8d6e8; font-style: italic; }
.testimonial-quote { position: absolute; top: 20px; right: 24px; font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(201,168,76,0.1); line-height: 1; }
.testimonial-service { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(201,168,76,0.15); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* STEPS */
.steps-container { position: relative; }
.steps-line { position: absolute; left: 32px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); }
.step-item { display: grid; grid-template-columns: 64px 1fr; gap: 32px; margin-bottom: 48px; align-items: start; }
.step-node { width: 64px; height: 64px; position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-node-inner { width: 48px; height: 48px; background: var(--navy-mid); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); position: relative; z-index: 1; }
.step-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.step-content { padding-top: 8px; }
.step-desc { font-size: 0.85rem; line-height: 1.8; color: var(--text-muted); }
.step-badge { display: inline-block; margin-top: 12px; padding: 5px 12px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.value-card { padding: 24px 20px; border: 1px solid var(--border); background: rgba(20,33,71,0.5); }
.value-icon { color: var(--gold); margin-bottom: 12px; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.value-text { font-size: 0.8rem; line-height: 1.7; color: var(--text-muted); }
.mission-block { padding: 36px; border: 1px solid var(--border); background: rgba(20,33,71,0.5); margin-bottom: 24px; }
.mission-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.mission-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1.75; color: #c8d6e8; }
.coverage-banner { background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05)); border: 1px solid rgba(201,168,76,0.3); padding: 28px 32px; display: flex; align-items: center; gap: 20px; margin-top: 32px; }
.coverage-icon { color: var(--gold); flex-shrink: 0; }
.coverage-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.coverage-text span { font-size: 0.8rem; color: var(--text-muted); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 1px solid var(--border); background: rgba(20,33,71,0.5); text-decoration: none; transition: all 0.25s; }
.contact-method:hover { border-color: rgba(201,168,76,0.5); transform: translateX(4px); }
.contact-method-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
.contact-method-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.contact-method-value { font-size: 0.9rem; font-weight: 500; color: var(--white); margin-top: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea { background: rgba(20,33,71,0.7); border: 1px solid rgba(201,168,76,0.2); color: var(--white); padding: 13px 16px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; outline: none; transition: border-color 0.2s; width: 100%; border-radius: 0; -webkit-appearance: none; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(154,175,199,0.5); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--navy-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 10px; text-align: center; }
.schedule-banner { background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04)); border: 1px solid rgba(201,168,76,0.3); padding: 24px 28px; margin-bottom: 24px; display: flex; align-items: center; gap: 20px; }
.schedule-banner svg { color: var(--gold); flex-shrink: 0; }
.schedule-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.schedule-text span { color: var(--text-muted); font-size: 0.8rem; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); overflow: hidden; }
.faq-question { width: 100%; padding: 20px 24px; background: rgba(20,33,71,0.5); border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; text-align: left; }
.faq-question-text { font-size: 0.88rem; font-weight: 500; color: var(--white); line-height: 1.4; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; padding: 0 24px; font-size: 0.83rem; line-height: 1.8; color: var(--text-muted); }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* FOOTER */
footer { background: rgba(7,15,35,0.95); border-top: 1px solid var(--border); padding: 64px 5% 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; }
.footer-brand-desc { font-size: 0.82rem; line-height: 1.8; color: var(--text-muted); margin-top: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social-link { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; text-decoration: none; }
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; display: block; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-text { font-size: 0.72rem; color: var(--text-muted); }
.footer-bottom-gold { color: var(--gold); font-weight: 600; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; text-decoration: none; animation: floatBounce 3s ease-in-out infinite; transition: transform 0.2s; }
.whatsapp-float:hover { transform: scale(1.1) !important; animation: none; }
.whatsapp-tooltip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: rgba(11,25,54,0.95); border: 1px solid var(--border); padding: 8px 14px; white-space: nowrap; font-size: 0.75rem; font-weight: 500; color: var(--white); pointer-events: none; opacity: 0; transition: opacity 0.2s; border-radius: 2px; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* CTA BANNER */
.cta-banner { padding: 80px 5%; background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* PULSE ANIMATION */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
@keyframes floatBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .step-item { grid-template-columns: 48px 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
