/* ===========================
   ROOT VARIABLES & BASE
=========================== */
:root {
  --gold: #b8945f;
  --gold-light: #d4b483;
  --gold-dark: #8a6a3a;
  --dark: #1a1410;
  --dark-2: #2a2018;
  --mid: #4a3f30;
  --cream: #f7f3ee;
  --cream-2: #ede6db;
  --white: #ffffff;
  --text: #3d3428;
  --text-light: #7a6d5e;
  --border: rgba(184,148,95,0.2);
  --shadow: 0 8px 40px rgba(26,20,16,0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', serif;
  line-height: 1.25;
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--dark); }
h2 em { font-style: italic; color: var(--gold); }
h4 { font-size: 1.15rem; font-weight: 600; color: var(--dark); }
h5 { font-size: 1.05rem; font-weight: 600; color: var(--dark); }

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.section-pad { padding: 90px 0; }

/* ===========================
   SECTION HEADER
=========================== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 20px;
}
.section-divider.text-start { margin-left: 0; }

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary-custom {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,148,95,0.35);
}

.btn-appointment {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-appointment:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,148,95,0.35);
}

/* ===========================
   TOP HEADER
=========================== */
.top-header {
  background: var(--dark);
  padding: 9px 0;
  font-size: 13px;
}

.top-contact a {
  color: rgba(255,255,255,0.75);
  margin-right: 20px;
  transition: var(--transition);
}
.top-contact a:hover { color: var(--gold-light); }
.top-contact i { margin-right: 6px; color: var(--gold); font-size: 12px; }

.top-social a {
  color: rgba(255,255,255,0.6);
  margin-left: 12px;
  font-size: 13px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.top-social a:hover {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
}

/* ===========================
   NAVBAR
=========================== */
.main-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.logo-name {
  display: block;
  font-family: 'Roboto', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-top: 3px;
}

.main-navbar .nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 28px 16px !important;
  position: relative;
  transition: var(--transition);
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { width: 60%; }
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--gold) !important; }

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ===========================
   BANNER
=========================== */
.banner-section { position: relative; }

#bannerCarousel .carousel-item {
  height: 88vh;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,7,4,0.75) 0%, rgba(10,7,4,0.35) 60%, rgba(10,7,4,0.1) 100%);
}

.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 80px;
  max-width: 680px;
  text-align: left;
}

.banner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 5px 16px;
  margin-bottom: 20px;
}

.carousel-caption-custom h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.carousel-caption-custom h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.carousel-caption-custom p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.btn-banner {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-banner:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-banner-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-banner-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: white;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  transition: var(--transition);
}
.carousel-control-prev:hover .carousel-btn,
.carousel-control-next:hover .carousel-btn {
  background: var(--gold);
  border-color: var(--gold);
}
.carousel-control-prev { left: 30px; width: auto; }
.carousel-control-next { right: 30px; width: auto; }

/* ===========================
   BRANCHES
=========================== */
.branches-section { background: var(--cream); }

.branch-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.branch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.branch-card:hover::before { transform: scaleX(1); }
.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.branch-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(184,148,95,0.15), rgba(184,148,95,0.05));
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 18px;
  transition: var(--transition);
}
.branch-card:hover .branch-icon {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.branch-info {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
}
.branch-info li {
  font-size: 13.5px;
  color: var(--text-light);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.branch-info li a{
  color: var(--text-light);
}
.branch-info i {
  color: var(--gold);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.branch-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.branch-link:hover { color: var(--gold-dark); gap: 10px; }

/* ===========================
   ABOUT
=========================== */
.about-section { background: var(--white); }

.about-img-wrap {
  position: relative;
  padding-bottom: 60px;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 450px;
  display: block;
}
.about-img-small {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(184,148,95,0.4);
}
.badge-num {
  display: block;
  font-family: 'Roboto', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: 4px;
}

.about-lead {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.af-item {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.af-item i { color: var(--gold); }

/* ===========================
   SERVICES
=========================== */
.services-section { background: var(--cream); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }

.service-link {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  transform: scale(0.8);
}
.service-card:hover .service-link { transform: scale(1); }

.service-body {
  padding: 22px;
}
.service-body h5 { margin-bottom: 8px; }
.service-body p {
  font-size: 13.5px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Roboto', serif;
  font-size: 300px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .section-tag { color: var(--gold-light); }
.testimonials-section h2 { color: var(--white); }

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,148,95,0.2);
  border-radius: 12px;
  padding: 50px 50px 40px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
}

.testi-quote {
  color: var(--gold);
  font-size: 36px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  font-family: 'Roboto', serif;
  font-style: italic;
  margin-bottom: 30px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.testi-author span {
  display: block;
  color: var(--gold-light);
  font-size: 12px;
  text-align: left;
}

.testi-stars i { color: var(--gold); font-size: 13px; }

.testi-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,148,95,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 13px;
  transition: var(--transition);
}
.carousel-control-prev:hover .testi-btn,
.carousel-control-next:hover .testi-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.testi-indicators button {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border: none;
  border-radius: 2px;
  opacity: 1;
}
.testi-indicators button.active { background: var(--gold); }

/* ===========================
   FOOTER
=========================== */
.main-footer { background: var(--dark-2); color: rgba(255,255,255,0.7); }

.footer-logo-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.footer-brand .logo-name { color: var(--white); }

.footer-about {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-right: 8px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: 'Roboto', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,148,95,0.25);
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}
.footer-contact-list li a{
  color: rgba(255,255,255,0.55);
}
.footer-contact-list i {
  color: var(--gold);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer-bottom a{
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184,148,95,0.5);
  transition: var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ===========================
   BREADCRUMB
=========================== */
.page-hero {
      background: linear-gradient(135deg, #418dc1 0%, #743706 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=1600&q=20') center/cover;
  opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
}
.page-hero h1 em { color: var(--gold-light); }

.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ===========================
   ABOUT PAGE
=========================== */
.about-detail-section { padding: 80px 0; }
.about-detail-section .about-img-wrap { padding-bottom: 0; }
.about-detail-section .about-img-main { height: 520px; }

.timeline { position: relative; padding-left: 30px; margin-top: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-item h6 {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-item p { font-size: 14px; color: var(--text-light); margin: 0; }

.stat-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-box:hover { background: var(--gold); border-color: var(--gold); }
.stat-box:hover .stat-num, .stat-box:hover .stat-label { color: white; }
.stat-num {
  font-family: 'Roboto', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  transition: var(--transition);
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  transition: var(--transition);
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-section { padding: 80px 0; }

.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-label { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: var(--text); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,95,0.12);
  background: var(--white);
}

.contact-info-card {
  background: var(--dark);
  border-radius: 12px;
  padding: 44px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: rgba(184,148,95,0.07);
  border-radius: 50%;
}

.contact-info-card h3 { color: white; margin-bottom: 6px; }
.contact-info-card p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,148,95,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 15px;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item-text span {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.contact-item-text a {
  color: rgba(255,255,255,0.55);
}
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--cream-2);
}

/* ===========================
   SERVICES PAGE
=========================== */
.services-page-section { padding: 80px 0; background: var(--cream); }

/* ===========================
   BRANCH PAGE
=========================== */
.branches-page-section { padding: 80px 0; }

.branch-page-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.branch-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.branch-page-card-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.branch-page-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: rgba(184,148,95,0.1);
  border-radius: 50%;
}
.branch-page-card-header h4 { color: white; margin: 0; font-size: 1.2rem; }
.branch-page-card-header .branch-num {
  font-family: 'Roboto', serif;
  font-size: 48px;
  color: rgba(184,148,95,0.2);
  position: absolute;
  top: 10px; right: 20px;
  font-weight: 700;
  line-height: 1;
}
.branch-page-card-body { padding: 28px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {
  .main-navbar .nav-link { padding: 12px 16px !important; }
  .main-navbar .nav-link::after { display: none; }
  .carousel-caption-custom { padding: 0 40px; max-width: 90%; }
  .about-img-small { display: none; }
  .about-badge { left: 10px; }
  .contact-form-card, .contact-info-card { padding: 30px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  #bannerCarousel .carousel-item { height: 75vh; min-height: 480px; }
  .carousel-caption-custom { padding: 0 20px; }
  .carousel-caption-custom h1 { font-size: 2rem; }
  .top-contact { text-align: center; margin-bottom: 6px; }
  .top-contact a { font-size: 12px; margin-right: 10px; }
  .about-features { grid-template-columns: 1fr; }
  .carousel-control-prev { left: 10px; }
  .carousel-control-next { right: 10px; }
  .testimonial-card { padding: 36px 24px 28px; }
  .scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 14px; }
  .contact-form-card { padding: 24px; }
}

@media (max-width: 480px) {
  .btn-banner, .btn-banner-outline { padding: 11px 20px; font-size: 11px; }
  .btn-banner-outline { margin-top: 10px !important; display: block; margin-left: 0 !important; width: fit-content; }
}
