/* ============================================================
   DREAM BUILDER WEALTH — Master Stylesheet
   Brand Colors: Red #F5C75C | Gray #4A4A4A | White #FFFFFF
   ============================================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --brand-red: #C9A84C;         /* GOLD */
  --brand-red-dark: #B8912E;    /* DARK GOLD */
  --brand-red-light: #E4C46A;   /* LIGHT GOLD */

  --brand-gray: #24345D;        /* NAVY */
  --brand-gray-light: #4A5B85;  /* LIGHT NAVY */
  --brand-gray-dark: #0D1B4B;   /* DEEP NAVY */

  --brand-white: #FFFFFF;
  --brand-off-white: #F8F8F8;

  --brand-bg-light: #101F52;    /* NAVY BACKGROUND */

  --brand-gold: #C9A84C;

  --font-primary: 'Montserrat', 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: all 0.3s ease;
  --max-width: 100%;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  color: var(--brand-gray);
  background: var(--brand-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-red-dark); }
ul, ol { list-style: none; }


/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--brand-gray-dark); line-height: 1.3; }
h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }
.text-red { color: var(--brand-red); }
.text-gray { color: var(--brand-gray); }
.text-white { color: var(--brand-white); }
.text-gold { color: var(--brand-gold); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--brand-red);
  color: var(--brand-white);
  border-color: var(--brand-red);
}
.btn-primary:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  color: var(--brand-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--brand-red);
  border-color: var(--brand-red);
}
.btn-outline:hover {
  background: var(--brand-red);
  color: var(--brand-white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--brand-white);
  color: var(--brand-red);
  border-color: var(--brand-white);
}
.btn-white:hover {
  background: var(--brand-off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-white);
  border-color: var(--brand-gold);
}
.btn-gold:hover {
  background: #B8912E;
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--brand-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-top {
  background: var(--brand-gray-dark);
  color: var(--brand-white);
  font-size: 0.85rem;
  padding: 6px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top a { color: var(--brand-white); }
.header-top a:hover { color: var(--brand-gold); }
.header-main {
  padding: 12px 0;
}
.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brand-gray-dark);
  font-weight: 700;
}
.logo-text span { color: var(--brand-red); }

/* Main Nav */
.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav a {
  padding: 8px 14px;
  color: var(--brand-gray);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-red);
  background: var(--brand-bg-light);
}
/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--brand-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
}
.dropdown-menu a:hover {
  background: var(--brand-bg-light);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--brand-off-white);
  border-radius: var(--radius-sm);
  padding: 3px;
  margin-left: 16px;
}
.lang-switcher button {
  padding: 6px 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brand-gray);
  border-radius: 4px;
  transition: var(--transition);
  font-family: var(--font-primary);
}
.lang-switcher button.active,
.lang-switcher button:hover {
  background: var(--brand-red);
  color: var(--brand-white);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--brand-gray-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #0D1B4B 0%, #16295F 100%);
  color: var(--brand-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: var(--brand-white);
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--brand-red-light); }
.hero p {
  font-size: 1.2rem;
  max-width: 640px;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat h3 {
  color: var(--brand-red-light);
  font-size: 2.4rem;
  font-family: var(--font-primary);
  font-weight: 800;
}
.hero-stat p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0;
}

/* Page-level hero (shorter) */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--brand-gray-dark) 0%, #1a1a1a 100%);
  color: var(--brand-white);
  text-align: center;
}
.page-hero h1 { color: var(--brand-white); font-size: 2.6rem; }
.page-hero p { max-width: 600px; margin: 0 auto; opacity: 0.85; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.7;
}
.breadcrumb a { color: var(--brand-white); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--brand-off-white);
}
.section-dark {
  background: var(--brand-gray-dark);
  color: var(--brand-white);
}
.section-dark h2, .section-dark h3 { color: var(--brand-white); }
.section-red {
  background: var(--brand-red);
  color: var(--brand-white);
}
.section-red h2 { color: var(--brand-white); }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-header .label {
  display: inline-block;
  background: var(--brand-bg-light);
  color: var(--brand-red);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-dark .section-header .label {
  background: rgba(200,16,46,0.2);
}

/* ============================================================
   CARDS & GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid #eee;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
}
.card-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--brand-red);
}
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--brand-gray-light); font-size: 0.95rem; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Feature Card with image */
.feature-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card-img {
  height: 200px;
  background: var(--brand-gray);
  background-size: cover;
  background-position: center;
}
.feature-card-body { padding: 24px; }

/* Pricing Card */
.pricing-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid #eee;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.pricing-card.featured {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-red);
  color: var(--brand-white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-gray-dark);
  margin: 16px 0 8px;
}
.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--brand-gray-light);
}
.pricing-card .features {
  text-align: left;
  margin: 24px 0;
}
.pricing-card .features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card .features li::before {
  content: '✓';
  color: var(--brand-red);
  font-weight: 700;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--brand-red);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
}
.testimonial p { font-style: italic; margin-bottom: 16px; padding-top: 24px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  font-weight: 700;
}
.testimonial-name { font-weight: 700; color: var(--brand-gray-dark); }
.testimonial-title { font-size: 0.85rem; color: var(--brand-gray-light); }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process-steps {
  display: flex;
  gap: 32px;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--brand-red);
  color: var(--brand-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: var(--brand-gray-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: var(--brand-white);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--brand-white); font-size: 2.4rem; margin-bottom: 16px; }
.cta-banner p { max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; opacity: 0.9; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--brand-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-gray-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--brand-white);
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--brand-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--brand-red); }

/* ============================================================
   UTILITY & LAYOUT HELPERS
   ============================================================ */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 48px; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 48px; }
.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.hidden { display: none !important; }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--brand-gray);
  min-height: 350px;
  background-size: cover;
  background-position: center;
}

/* Checklist */
.checklist li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--brand-bg-light);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Accordion */
.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-header {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--brand-white);
  transition: var(--transition);
}
.accordion-header:hover { background: var(--brand-bg-light); }
.accordion-body { padding: 0 20px 16px; display: none; }
.accordion-item.active .accordion-body { display: block; }
.accordion-item.active .accordion-header { color: var(--brand-red); }

/* Icon badges */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-bg-light);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero { padding: 140px 0 80px; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .main-nav { display: none; }
  .main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--brand-white); box-shadow: var(--shadow-lg); padding: 16px; }
  .main-nav.open ul { flex-direction: column; }
  .mobile-toggle { display: flex; }
  .header-top { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .lang-switcher { margin-left: 0; }
  .pricing-card { margin-bottom: 24px; }
  h1 { font-size: 1.8rem; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
}



/* ===== PREMIUM NAVBAR ===== */

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  font-weight: 600;
  color: #02122F;
  padding: 10px 5px;
  position: relative;
  transition: all 0.3s ease;
}

/* underline animation */
.main-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #C9A84C;
  transition: 0.3s;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* ===== DROPDOWN STYLE ===== */

.main-nav ul li ul {
  position: absolute;
  top: 120%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  
  padding: 12px 0;
  border-radius: 10px;
  min-width: 220px;
  
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  
  display: flex;
  flex-direction: column;
  gap: 5px;

  transition: all 0.3s ease;
}

/* SHOW DROPDOWN */
.main-nav ul li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN ITEMS */
.main-nav ul li ul li a {
  padding: 10px 18px;
  font-size: 14px;
  color: #333;
}

/* HOVER EFFECT */
.main-nav ul li ul li a:hover {
  background: #F5C75C;
  color: #02122F;
  border-radius: 6px;
}

/* ACTIVE MENU */
.main-nav ul li.current-menu-item > a {
  color: #C9A84C;
}

.site-footer {
  border-top: 3px solid #F5C75C;
}




.site-footer {
  margin-bottom: 0;
}

html, body {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}


.section {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }

  .grid-2 {
    grid-template-columns: 1fr !important;
  }

  .form-row {
    flex-direction: column;
  }
}




.success-msg {
  background: #e6ffed;
  border: 1px solid #28a745;
  padding: 12px;
  border-radius: 6px;
  font-weight: 500;
}



.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.wpcf7-form-control {
  width: 100%;
}

.wpcf7-submit {
  width: 100%;
}

.wpcf7-response-output {
  text-align: center;
  color: green;
  margin-top: 15px;
  border: none;
}



/* BEAUTIFUL DROPDOWN */
.wpcf7 select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;

  padding: 14px 40px 14px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7 select:hover {
  border-color: #F5C75C;
  transform: translateY(-1px);
}

.wpcf7 select:focus {
  border-color: #F5C75C;
  box-shadow: 0 0 0 2px rgba(217, 4, 41, 0.1);
  transform: translateY(-1px);
}



.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}





iframe {
  transition: transform 0.3s ease;
}

iframe:hover {
  transform: scale(1.02);
}









.section,
.hero,
.site-footer,
.cta-banner {
  width: 100%;
}

body {
  overflow-x: hidden;
}





 .popup-box {
  position: relative;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  width: 500px;          /* 🔥 increased */
  max-width: 95%;
  text-align: center;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}



.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}


.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  width: 100%;
}



@media (max-width: 600px) {
  .popup-box {
    width: 90%;
    padding: 20px;
  }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
  color: #999;
}

.popup-close:hover {
  color: #c00;
}



.popup-box button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #F5C75C;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.popup-box button:hover {
  background: #B8912E;
}




@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .popup-box {
    width: 90%;
  }
}


.popup-box textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
}



.popup-close {
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}

.popup-close:hover {
  color: red;
  transform: scale(1.2);
}


html {
  scroll-behavior: smooth;
}


/* ===================================
   DBGW Metallic Gold Theme Upgrade
=================================== */

/* Gold metallic background sections */
.cta-banner,
.section-red {
  background: linear-gradient(
    135deg,
    #b8860b 0%,
    #d9a63a 18%,
    #f5c75c 35%,
    #ffe08a 50%,
    #f5c75c 65%,
    #d9a63a 82%,
    #b8860b 100%
  ) !important;
}

/* Gold metallic buttons */
.btn-primary,
.btn-gold,
.popup-box button {
  background: linear-gradient(
    135deg,
    #b8860b 0%,
    #d9a63a 20%,
    #f5c75c 40%,
    #ffe08a 50%,
    #f5c75c 60%,
    #d9a63a 80%,
    #b8860b 100%
  ) !important;

  color: #02122F !important;
  border: none;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 4px 12px rgba(0,0,0,0.15);
}

/* Button hover */
.btn-primary:hover,
.btn-gold:hover,
.popup-box button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* Gold menu active color */
.main-nav a.active,
.main-nav a:hover {
  color: #F5C75C !important;
}

/* Footer top gold line */
.site-footer {
  border-top: 2px solid #F5C75C !important;
}