/* ==========================================================================
   PT BPR WIRADHANA PUTRAMAS - OFFICIAL LANDING PAGE STYLESHEET
   Domain: bprwp.id
   Theme: Merah & Biru Dongker (Official Brand Colors)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Navy Blue Palette (Biru Dongker) */
  --navy-950: #061224;
  --navy-900: #0A1B33;
  --navy-800: #0E274A;
  --navy-700: #143866;
  --navy-600: #1E4E8C;
  --navy-500: #2B65B3;

  /* Red Palette (Merah BPR Resmi) */
  --red-700: #991B1B;
  --red-600: #B91C1C;
  --red-500: #DC2626;
  --red-400: #EF4444;
  --red-300: #F87171;
  --red-100: #FEE2E2;
  --red-50:  #FEF2F2;

  /* Compatibility Mapping for Red Theme */
  --emerald-600: #B91C1C;
  --emerald-500: #DC2626;
  --emerald-400: #EF4444;
  --emerald-100: #FEE2E2;
  --emerald-50:  #FEF2F2;

  --gold-500: #F59E0B;
  --gold-400: #FBBF24;
  --gold-100: #FEF3C7;

  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --white:     #FFFFFF;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(10, 27, 51, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(10, 27, 51, 0.08);
  --shadow-hover: 0 20px 40px -10px rgba(220, 38, 38, 0.18);
  --shadow-glow-red: 0 10px 30px rgba(220, 38, 38, 0.3);
  --shadow-glow-emerald: 0 10px 30px rgba(220, 38, 38, 0.3);
  --shadow-glow-navy: 0 10px 30px rgba(10, 27, 51, 0.25);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: #FAFCFE;
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.25;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(220, 38, 38, 0.1);
  color: var(--red-600);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-badge.badge-navy {
  background: rgba(14, 39, 74, 0.08);
  color: var(--navy-800);
  border-color: rgba(14, 39, 74, 0.2);
}

.section-title {
  font-size: 2.3rem;
  color: var(--navy-900);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--red-600);
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.text-center { text-align: center; }

/* Top Compliance Bar */
.top-bar {
  background-color: var(--navy-950);
  color: var(--slate-400);
  font-size: 0.82rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.compliance-tags {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--slate-200);
  font-weight: 500;
}

.compliance-item i {
  color: var(--red-400);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-contact a {
  color: var(--slate-300);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-contact a:hover {
  color: var(--red-400);
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red-500);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(10, 27, 51, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy-900), var(--red-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
  position: relative;
  overflow: hidden;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--red-600);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-700);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--navy-900);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--red-500);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-bounce);
  white-space: nowrap;
}

.btn-emerald, .btn-red {
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: var(--white);
  box-shadow: var(--shadow-glow-red);
}

.btn-emerald:hover, .btn-red:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--red-400), var(--red-700));
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.45);
}

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-glow-navy);
}

.btn-navy:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(10, 27, 51, 0.35);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
}

.btn-outline-navy:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--navy-900);
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 0 5rem 0;
  background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.08), transparent 50%),
              radial-gradient(circle at bottom left, rgba(10, 27, 51, 0.06), transparent 50%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-950);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--red-600);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-pills {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-200);
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
}

.trust-pill i {
  color: var(--red-500);
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(10, 27, 51, 0.3);
  border: 4px solid var(--white);
}

.hero-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-wrapper:hover img {
  transform: scale(1.03);
}

/* Floating Glass Cards on Hero */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.card-top-right {
  top: 1.5rem;
  right: -1.5rem;
}

.card-bottom-left {
  bottom: 2rem;
  left: -1.5rem;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.icon-emerald, .icon-red { background: var(--red-100); color: var(--red-600); }
.icon-navy { background: rgba(10, 27, 51, 0.1); color: var(--navy-800); }

.float-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.float-info p {
  font-size: 0.78rem;
  color: var(--slate-500);
}

/* Regulatory Section */
.regulatory-strip {
  background: var(--white);
  padding: 2rem 0;
  border-y: 1px solid var(--slate-200);
  box-shadow: var(--shadow-subtle);
}

.regulatory-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.regulatory-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.regulatory-badges {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.reg-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--slate-50);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.reg-badge-icon {
  font-size: 1.6rem;
  color: var(--red-600);
}

.reg-badge-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-900);
}

.reg-badge-text span {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* Products Section */
.products-section {
  padding: 6rem 0;
  background: #F8FAFD;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--slate-200);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-700);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tab-btn i {
  color: var(--slate-400);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-glow-navy);
}

.tab-btn.active i, .tab-btn:hover i {
  color: var(--red-400);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-card);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--red-400);
}

.product-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--red-50);
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.product-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(10, 27, 51, 0.05), rgba(220, 38, 38, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.product-card:hover .product-icon-wrap {
  background: var(--navy-900);
  color: var(--red-400);
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.product-desc {
  color: var(--slate-600);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-features {
  border-top: 1px dashed var(--slate-200);
  padding-top: 1.25rem;
  margin-bottom: 1.75rem;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--slate-700);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.product-feature-item i {
  color: var(--red-500);
}

/* Financial Calculator Section */
.calc-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.calc-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent 70%);
  pointer-events: none;
}

.calc-section .section-title {
  color: var(--white);
}

.calc-section .section-subtitle {
  color: var(--slate-300);
}

.calc-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.calc-switch-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.calc-switch-btn {
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--slate-300);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-switch-btn.active, .calc-switch-btn:hover {
  background: var(--red-500);
  color: var(--white);
  border-color: var(--red-500);
  box-shadow: var(--shadow-glow-red);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group-slider {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-200);
}

.slider-value-display {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red-400);
  background: rgba(220, 38, 38, 0.15);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.custom-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red-500);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
  transition: transform 0.1s;
}

.custom-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-min-max {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--slate-400);
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.result-label {
  font-size: 0.95rem;
  color: var(--slate-300);
}

.result-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.result-highlight {
  font-size: 2.1rem;
  color: var(--red-400);
  font-weight: 800;
}

/* Features / Why Us Section */
.why-us-section {
  padding: 6rem 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: var(--slate-50);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  transition: var(--transition-bounce);
}

.feature-box:hover {
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--red-400);
}

.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--red-100);
  color: var(--red-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background: #F1F5F9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--slate-200);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(220, 38, 38, 0.12);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.step-icon {
  font-size: 1.8rem;
  color: var(--navy-800);
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
}

/* Branch Locations Section */
.branch-section {
  padding: 6rem 0;
  background: var(--white);
}

.branch-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.branch-tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--slate-100);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.branch-tab-btn.active, .branch-tab-btn:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.branch-card-content {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--slate-200);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.branch-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.branch-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.branch-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.branch-info-item i {
  color: var(--red-600);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.branch-info-item div strong {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-500);
  text-transform: uppercase;
}

.branch-info-item div p {
  font-size: 1rem;
  color: var(--navy-900);
  font-weight: 600;
}

.branch-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.branch-map-box {
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-card);
}

.branch-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 6rem 0;
  background: #F8FAFD;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.faq-header i {
  color: var(--red-500);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--slate-600);
  display: none;
  line-height: 1.7;
}

.faq-item.active .faq-body {
  display: block;
}

/* CTA Banner Section */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--red-600) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Footer Section */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-300);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--slate-400);
  margin: 1.25rem 0 1.5rem 0;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--red-500);
  color: var(--white);
}

.footer-col-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red-500);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--slate-400);
}

.footer-links a:hover {
  color: var(--red-400);
  padding-left: 4px;
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
}

.footer-disclaimer-box h5 {
  color: var(--red-400);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-disclaimer-box p {
  font-size: 0.8rem;
  color: var(--slate-400);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--slate-500);
  font-size: 0.82rem;
}

/* Floating WhatsApp Button */
.float-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-bounce);
  animation: pulse-wa 2s infinite;
}

.float-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal Application Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 18, 36, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  border-top: 4px solid var(--red-500);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--slate-400);
  cursor: pointer;
  background: none;
  border: none;
}

.modal-close:hover {
  color: var(--navy-900);
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin-bottom: 1.5rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-700);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .calc-grid, .branch-card-content, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title { font-size: 2.5rem; }
  .card-top-right, .card-bottom-left { display: none; }
  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .mobile-toggle { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  .top-bar-inner { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 2.1rem; }
  .section-title { font-size: 1.8rem; }
  .calc-container { padding: 1.5rem; }
  .modal-card { padding: 1.5rem; }
}
