/* =====================================================
   LICDA. YOHAIDY VARGAS MÉNDEZ
   Paleta: Verde teal #1D6253 | Dorado #C49A2A | Blanco | Gris
   ===================================================== */

/* ---- FONTS ---- */
@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa Light.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa%20Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Gangitem';
  src: url('../fonts/gangitem/Gangitem.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ---- VARIABLES ---- */
:root {
  --teal:        #1D6253;
  --teal-dark:   #154840;
  --teal-light:  #246B5A;
  --gold:        #C49A2A;
  --gold-light:  #D4AE44;
  --gold-dark:   #A07C1E;
  --white:       #FFFFFF;
  --off-white:   #F5F3EF;
  --gray-100:    #F8F8F6;
  --gray-200:    #EBEBEB;
  --gray-400:    #9A9A9A;
  --gray-600:    #6B6B6B;
  --dark:        #0F1A16;
  --dark-card:   #162620;
  --font-serif:  'Gangitem', 'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Nexa', 'Montserrat', sans-serif;
  --transition:  all 0.35s ease;
  --shadow-gold: 0 4px 30px rgba(196,154,42,0.18);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.3);
}

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

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #333;
  background-color: var(--white);
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
}

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

img { max-width: 100%; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* =====================================================
   NAVBAR
   ===================================================== */
#mainNav {
  background: rgba(15, 26, 22, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  padding: 1.1rem 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 1050;
}

#mainNav.scrolled {
  background: rgba(15, 26, 22, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(196,154,42,0.3);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-licda {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }
.navbar-nav .nav-link:hover { color: var(--gold-light) !important; }

.navbar-toggler-icon-custom { font-size: 1.6rem; color: var(--white); }
.navbar-toggler { border: none; padding: 0.25rem; background: transparent; }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(15,26,22,0.98);
    border-top: 1px solid rgba(196,154,42,0.2);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 0 0 12px 12px;
  }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: 3px;
  transition: var(--transition);
  box-shadow: 0 3px 15px rgba(196,154,42,0.25);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196,154,42,0.4);
}

.btn-outline-light-custom {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: 3px;
  background: transparent;
  transition: var(--transition);
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white) !important;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: 3px;
  transition: var(--transition);
  box-shadow: 0 3px 15px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}

/* =====================================================
   HELPERS
   ===================================================== */
.text-gold { color: var(--gold) !important; }
.text-light-muted { color: rgba(255,255,255,0.6) !important; }
.text-white-75 { color: rgba(255,255,255,0.8); }
.section-padding { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 12px;
}
.label-white { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.4); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem 0;
}

/* =====================================================
   SECTIONS BACKGROUNDS
   ===================================================== */
.section-light { background: var(--off-white); }
.section-dark  { background: var(--dark); }
.section-teal  { 
  background: var(--teal); 
  position: relative;
}

/* =====================================================
   HERO CAROUSEL
   ===================================================== */
#inicio {
  position: relative;
}
#heroCarousel { height: 100vh; min-height: 600px; }

.carousel-item { height: 100vh; min-height: 600px; }

.carousel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.carousel-item.active .carousel-bg { transform: scale(1); }

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,18,0.85) 0%,
    rgba(15,26,22,0.7) 50%,
    rgba(10,22,18,0.4) 100%
  );
}

.carousel-caption {
  position: absolute;
  inset: 0;
  text-align: left;
  padding: 0;
}

.slide-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.slide-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 520px;
  font-weight: 300;
}

.slide-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(196,154,42,0.15);
  border: 1.5px solid rgba(196,154,42,0.4);
  border-radius: 50%;
  opacity: 0.8;
  transition: var(--transition);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(196,154,42,0.35);
  opacity: 1;
}

.carousel-indicators {
  bottom: 100px;
}
.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  border: none;
  transition: var(--transition);
}
.carousel-indicators .active {
  background: var(--gold);
  width: 50px;
}

/* Stats Bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,20,16,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(196,154,42,0.25);
  padding: 1.2rem 0;
  z-index: 10;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(196,154,42,0.15);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* =====================================================
   ABOUT / SOBRE MÍ
   ===================================================== */
.about-img-wrapper {
  position: relative;
  padding: 20px 20px 0 0;
}

.about-img-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 4px;
  z-index: 0;
}

.about-img-frame {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.about-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 0.85rem 1.2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  box-shadow: var(--shadow-gold);
}
.about-badge i { font-size: 1.5rem; margin-bottom: 0.25rem; }
.about-badge span {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.feature-pill {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #444;
  transition: var(--transition);
}
.feature-pill:hover {
  border-color: var(--gold);
  background: rgba(196,154,42,0.06);
}

/* =====================================================
   SERVICE CARDS
   ===================================================== */
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(196,154,42,0.1);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196,154,42,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.service-card:hover::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card-gold {
  border-color: rgba(196,154,42,0.25);
}
.service-card-gold::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.service-icon-wrapper {
  margin-bottom: 1.5rem;
}
.service-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}
.service-card:hover .service-icon,
.service-card-gold .service-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--dark);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.service-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.service-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li i { color: var(--gold); font-size: 0.7rem; }
.service-list li:last-child { border-bottom: none; }

.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { color: var(--gold-light); gap: 10px; }

/* =====================================================
   SPECIALTY BLOCKS
   ===================================================== */
.specialty-block {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--teal);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.specialty-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(29,98,83,0.15);
  border-top-color: var(--gold);
}

.specialty-block-featured {
  background: var(--teal);
  border-top-color: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 40px rgba(29,98,83,0.3);
}
.specialty-block-featured:hover {
  box-shadow: 0 20px 60px rgba(29,98,83,0.45);
  border-top-color: var(--gold-light);
}

.specialty-label-top {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.85rem;
  border-radius: 0 0 4px 4px;
}

.specialty-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.specialty-block-featured .specialty-icon { color: var(--gold); }
.specialty-block:hover .specialty-icon { color: var(--gold); }

.specialty-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.specialty-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.85rem;
}
.specialty-block-featured .specialty-title { color: var(--white); }

.specialty-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.specialty-block-featured .specialty-desc { color: rgba(255,255,255,0.8); }

.specialty-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.specialty-items li {
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  color: #555;
  padding-left: 1.2rem;
  position: relative;
}
.specialty-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.specialty-items li:last-child { border-bottom: none; }
.specialty-block-featured .specialty-items li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.1);
}

/* =====================================================
   WHY CARDS
   ===================================================== */
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1.5rem;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.why-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80&fit=crop') center/cover no-repeat;
  padding: 90px 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,22,0.92), rgba(29,98,83,0.85));
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  position: relative;
}

/* =====================================================
   SUBPAGE HEADER & LAYOUT
   ===================================================== */
.subpage-header {
  position: relative;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  text-align: center;
}

.subpage-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,22,0.92), rgba(29,98,83,0.85));
}

.subpage-header-content {
  position: relative;
  z-index: 2;
}

.subpage-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.subpage-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.subpage-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.subpage-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--teal);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.subpage-content p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.25rem;
}

.subpage-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.subpage-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #555;
}

.subpage-content ul li::before {
  content: '\F633'; /* check-circle-fill bootstrap icon */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.subpage-sidebar {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--teal);
  border-radius: 6px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.subpage-sidebar h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-info-block {
  background: var(--dark-card);
  border: 1px solid rgba(196,154,42,0.15);
  border-radius: 6px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(196,154,42,0.2);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(196,154,42,0.12);
  border: 1px solid rgba(196,154,42,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
a.contact-value:hover { color: var(--gold); }

/* ---- Form ---- */
.contact-form {
  background: var(--dark-card);
  border: 1px solid rgba(196,154,42,0.12);
  border-radius: 6px;
  padding: 2.5rem;
}

.form-label-custom {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control-custom {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-control-custom::placeholder { color: rgba(255,255,255,0.3); }
.form-control-custom:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(196,154,42,0.05);
  box-shadow: 0 0 0 3px rgba(196,154,42,0.12);
}
select.form-control-custom option {
  background: var(--dark);
  color: var(--white);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-top {
  background: var(--dark);
  border-top: 1px solid rgba(196,154,42,0.2);
  padding: 60px 0 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.footer-brand .brand-licda { font-size: 0.9rem; }
.footer-brand .brand-name { font-size: 1.4rem; }

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-phone { display: flex; align-items: center; gap: 8px; }
.footer-phone a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.footer-phone a:hover { color: var(--gold); }

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-bottom {
  background: var(--dark-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(196,154,42,0.35);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196,154,42,0.5);
}

/* =====================================================
   DROPDOWN MENU
   ===================================================== */
.custom-dropdown {
  background: rgba(15,26,22,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(196,154,42,0.3);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  padding: 0.5rem 0;
  margin-top: 0;
}

.custom-dropdown .dropdown-item {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  transition: var(--transition);
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item:focus {
  background: rgba(196,154,42,0.15);
  color: var(--gold-light);
}

.custom-dropdown .dropdown-divider {
  border-top: 1px solid rgba(196,154,42,0.2);
  margin: 0.5rem 0;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease forwards;
    margin-top: 0;
  }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .slide-title { font-size: 2rem; }
  .about-photo { height: 340px; }
  #heroCarousel, .carousel-item { min-height: 100svh; }
  .stats-bar { position: relative; }
  #heroCarousel { height: auto; }
}

@media (max-width: 575px) {
  .carousel-control-prev, .carousel-control-next { display: none; }
  .stat-item { padding: 0.5rem; }
  .stat-number { font-size: 1.5rem; }
}
