
:root {

    --navy: #0a1a2f;
  --gold: #FFE87C;
  --gold-light: #FDBD01;
  --gray-bg: #f8f7f4;
   --navy-dark: #050b1a;


}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', georgia;
  background: #fefcf8;
  overflow-x: hidden;
  color: #1e2f3e;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: #e0e0e0;
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(200, 168, 78, 0.3);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}

.contact-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.contact-line span:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.contact-line i {
  color: var(--gold);
  width: 20px;
  font-size: 0.9rem;
}

.contact-line a {
  color: #e0e0e0;
  text-decoration: none;
  transition: 0.2s;
}

.contact-line a:hover {
  color: var(--gold);
}

/* ===== NAVBAR ===== */
.main-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-placeholder {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy) 0%, var() 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.brand-text .title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.brand-text .tagline {
  font-size: clamp(0.6rem, 1.2vw, 0.7rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-link {
  font-weight: 600;
  color: #1e2f3e !important;
  margin: 0 4px;
  transition: 0.2s;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
}

.nav-link:hover {
  color: var(--gold-light) !important;
}

.nav-link.active-page {
  color: var(--gold-light) !important;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.btn-consult {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  border-radius: 40px;
  padding: clamp(6px, 1vw, 8px) clamp(14px, 2vw, 24px);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-consult:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(200, 168, 78, 0.4);
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  min-height: 45vh;
  background: linear-gradient(135deg, rgba(5, 11, 26, 0.91), rgba(10, 26, 47, 0.95)),
    url('https://images.pexels.com/photos/5669619/pexels-photo-5669619.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--navy);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #fefcf8);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 10px 0;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.page-hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.75;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--gray-bg);
  border-bottom: 1px solid #ede8df;
  padding: 12px 0;
  margin: 0;
}

.breadcrumb {
  margin: 0;
  font-size: 0.82rem;
}

.breadcrumb-item a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: var(--gold-light);
}

.breadcrumb-item.active {
  color: var(--gold-light);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #aaa;
}

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
  position: relative;
  display: inline-block;
}

.section-title.underline::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--gold-light);
  bottom: -12px;
  left: 0;
}

.text-gold {
  color: var(--gold);
}

.body-text {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  line-height: 1.8;
  color: #000000;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
  padding: 10px 0;
  background: white;
}

.contact-info-card {
  background: var(--gray-bg);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #ede8df;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(200, 168, 78, 0.12);
  border-color: var(--gold);
}

.contact-icon {
  width: 65px;
  height: 65px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 auto 1.2rem;
  transition: transform 0.3s;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.05);
}

.contact-info-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-info-card p strong {
  color: var(--navy);
  font-weight: 600;
}

.contact-info-card a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--gold-light);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light) !important;
  text-decoration: none;
  transition: gap 0.3s;
}

.contact-link:hover {
  gap: 12px;
}

/* ===== MAP SECTION ===== */
.map-section {
  margin: 0;
  padding: 0;
  position: relative;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(10%) contrast(95%);
  transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%) contrast(100%);
}

.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--navy);
  padding: 20px 28px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--gold);
}

.map-overlay-content {
  color: white;
}

.map-overlay-content i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.map-overlay-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.map-overlay-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 350px;
  }
  .map-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: none;
    padding: 15px 20px;
  }
}

/* ===== GET IN TOUCH BANNER ===== */
.touch-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2742 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.touch-banner::before {
  content: '✉';
  position: absolute;
  font-size: 18rem;
  color: rgba(200, 168, 78, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.touch-banner-content {
  position: relative;
  z-index: 2;
}

.touch-banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.touch-banner-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.btn-gold-large {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.btn-gold-large:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  gap: 16px;
  box-shadow: 0 8px 25px rgba(200, 168, 78, 0.4);
}

.btn-wa {
  background: transparent;
  border: 2px solid #25D366;
  color: #25D366;
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.btn-wa:hover {
  background: #25D366;
  color: var(--navy);
  transform: translateY(-3px);
  gap: 14px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

@media (max-width: 576px) {
  .btn-gold-large, .btn-wa {
    display: block;
    margin: 10px 20px;
    text-align: center;
    justify-content: center;
  }
}

/* ===== QUICK REFERENCE SECTION ===== */
.quick-reference {
  padding: 60px 0;
  background: var(--gray-bg);
}

.quick-card {
  background: white;
  padding: 1.8rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #ede8df;
}

.quick-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(200, 168, 78, 0.1);
}

.quick-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.quick-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--navy);
}

.quick-card p {
  font-size: 0.88rem;
  color: #5a6a78;
  line-height: 1.6;
  margin: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gray-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1100;
  transition: 0.2s;
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.08);
  background: #128C7E;
  color: white;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: #ccc;
  padding: 50px 0 25px;
  margin: 0;
}

.text-gold {
  color: var(--gold);
}

footer a {
  transition: 0.2s;
}

footer a:hover {
  color: var(--gold) !important;
}

footer .small {
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-info-section {
    padding: 50px 0;
  }
  .touch-banner {
    padding: 50px 0;
  }
  .quick-reference {
    padding: 40px 0;
  }
  .map-overlay-content h4 {
    font-size: 1rem;
  }
}