/* --- 1. GLOBAL THEME VARIABLES --- */

/* --- 2. RESET & LAYOUT --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fbf7f1;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: 0.3s; }
.container { max-width: var(--max); }

/* --- 3. HEADER & NAVIGATION --- */
.topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
.navbar { padding: 0.7rem 0; }
.navbar-brand img { height: 3.6rem; }
.nav-link { font-weight: 700 !important; color: #28313C !important; font-size: 0.95rem !important; padding: 0.5rem 1rem !important; }
.nav-link:hover, .nav-item.dropdown:hover .nav-link { color: var(--orange) !important; }

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
  }
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 0.5rem;
  }
}

.dropdown-item { font-weight: 700; border-radius: 8px; padding: 0.6rem 1rem; }
.dropdown-item:hover { background: rgba(214, 31, 62, 0.05); color: var(--orange); }

/* --- 4. BUTTONS --- */
.button {
  background: linear-gradient(135deg, var(--orange), #ff9f54);
  color: white !important;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  height: 54px;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

/* --- 5. ABOUT PAGE SECTIONS --- */
.about-hero { padding: 8rem 0 5rem; background: linear-gradient(135deg, #091728, #10253e); color: white; text-align: center; }
.eyebrow { display: inline-flex; padding: 0.5rem 0.9rem; border-radius: 999px; background: rgba(255, 255, 255, 0.1); color: #ffd5b4; font-weight: 800; text-transform: uppercase; font-size: 0.76rem; margin-bottom: 1rem; }
h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

.stat-box { border-left: 3px solid var(--orange); padding-left: 1.5rem; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--teal-dark); line-height: 1; }

.value-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 2.5rem; transition: 0.3s; height: 100%; }
.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.icon-box { width: 4rem; height: 4rem; background: rgba(43, 47, 135, 0.05); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.5rem; margin-bottom: 1.5rem; }

.contact-band {
  justify-content: space-between;
  gap: 1.5rem;
  padding: 3rem;
  margin: 4rem 0;
  border-radius: 30px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 32%), linear-gradient(135deg, var(--teal-dark), var(--teal) 60%, #2c9f99);
  color: var(--white);
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  display: flex;
}

/* ---  BLOG SECTION STYLES --- */
.blog { 
  padding: 1rem 0 1rem; 
  background: linear-gradient(135deg, #091728, #10253e); 
  color: white; 
  text-align: center; 
}

.blog h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-grid {
  padding: 5rem 0;
}

.blog-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover { 
  transform: translateY(-10px); 
  box-shadow: var(--shadow); 
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body { 
  padding: 1.5rem; 
  flex-grow: 1; 
  text-align: left;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.blog-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover { color: var(--orange); }



/* --- 6. FOOTER --- */
.footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
.footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
.footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.92rem; }
.footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

/* --- 7. ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


:root {
      --teal: #2b2f87;
      --teal-dark: #18204d;
      --orange: #d61f3e;
      --orange-soft: #f4b7c1;
      --cream: #fffaf3;
      --sand: #f4eadf;
      --ink: #18242a;
      --muted: #5f6d72;
      --white: #ffffff;
      --line: rgba(43, 47, 135, 0.14);
      --shadow: 0 25px 60px rgba(24, 32, 77, 0.16);
      --radius-lg: 28px;
      --radius-md: 20px;
      --max: 1200px;
    }


    /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    
    
    
    
    
        /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    
    
    
    
    
    /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  
  
  
  
   /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  
  
  
  
  /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }




    /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  


  /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  


     /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  


   /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  


  /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  

    /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  

   /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  

    /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  

  /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  

   /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  

  /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  

   /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  