/* ===== IMPORTS ===== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap");

/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #8b230f;
  --primary-dark: #6b1a0c;
  --primary-light: #b02e14;
  --secondary: #0c7333;
  --secondary-dark: #095a27;
  --accent: #f59e0b;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-lighter: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===== GLOBAL ===== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 35, 15, 0.12);
  padding: 0.6rem 0;
  transition: all 0.4s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-custom.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

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

.brand-logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(139, 35, 15, 0.3);
  flex-shrink: 0;
}

.brand-text-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.brand-text-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-contact-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: transparent;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-phone-btn:hover {
  background: var(--primary);
  color: white;
}

.btn-application {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(139, 35, 15, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-application:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 35, 15, 0.4);
  color: white !important;
}

.btn-brochure {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--secondary), #0f9a42);
  color: white !important;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(12, 115, 51, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-brochure:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(12, 115, 51, 0.4);
  color: white !important;
}

/* ===== FLOATING SIDE BUTTONS ===== */
.floating-side {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-btn {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 4px 15px rgba(139, 35, 15, 0.4);
  transition: all 0.3s ease;
}

.float-btn:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateX(-4px);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(26, 26, 46, 0.55) 50%,
    rgba(26, 26, 46, 0.3) 100%
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(139, 35, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(139, 35, 15, 0.45);
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 35, 15, 0.55);
  color: white;
}

.btn-hero-outline {
  padding: 14px 34px;
  background: transparent;
  color: white;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(139, 35, 15, 0.75);
  border-radius: 50%;
  background-size: 40%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 1.2rem 0;
  box-shadow: 0 4px 20px rgba(139, 35, 15, 0.35);
}

.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== SECTION STYLES ===== */
.section-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(139, 35, 15, 0.1);
  border: 1px solid rgba(139, 35, 15, 0.2);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.section-divider.left {
  margin: 0 0 1.5rem;
}

/* ===== ABOUT / OVERVIEW ===== */
.about-section {
  padding: 90px 0;
  background: var(--white);
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-badge-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.feature-pill:hover {
  border-color: var(--primary);
  background: rgba(139, 35, 15, 0.04);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(139, 35, 15, 0.1);
}

.feature-pill-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-pill-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-pill-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CONNECTIVITY ===== */
.connectivity-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative;
  overflow: hidden;
}

.connectivity-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 35, 15, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.connectivity-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(12, 115, 51, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.connectivity-section .section-title {
  color: white;
}
.connectivity-section .section-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--accent);
}

.conn-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.conn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.conn-card:hover::before {
  transform: scaleX(1);
}

.conn-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(139, 35, 15, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.conn-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(139, 35, 15, 0.4);
}

.conn-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.conn-time {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.conn-unit {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PLANS / TABS ===== */
.plans-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.plan-nav-tabs {
  border: none;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.plan-nav-tabs .nav-link {
  padding: 10px 24px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  background: white;
  transition: all 0.3s ease;
}

.plan-nav-tabs .nav-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.plan-nav-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 20px rgba(139, 35, 15, 0.35);
}

.plan-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.plan-card-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.plan-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.plan-info-item {
  background: white;
  padding: 18px 20px;
  text-align: center;
}

.plan-info-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.plan-info-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

/* ===== OPPORTUNITY ===== */
.opportunity-section {
  padding: 90px 0;
  background: white;
}

.opp-stat-card {
  background: linear-gradient(135deg, var(--bg-light), white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.opp-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.opp-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.opp-stat-num {
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-family: "Playfair Display", serif;
}

.opp-stat-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-light);
}

.opp-stat-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  border: 1px solid var(--border);
}

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

/* ===== CONTACT ===== */
.contact-section {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 35, 15, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.contact-section .section-title {
  color: white;
}
.contact-section .section-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(15px);
}

.form-floating label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: white;
  padding: 14px 18px;
  font-size: 0.9rem;
  width: 100%;
  transition: all 0.3s ease;
  outline: none;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 35, 15, 0.2);
  color: white;
}

.form-label-custom {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(139, 35, 15, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 35, 15, 0.6);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(15px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 35, 15, 0.2);
  border: 1px solid rgba(139, 35, 15, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3px;
}

.contact-info-text span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0d1a;
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(139, 35, 15, 0.35);
  margin-bottom: 1rem;
}

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.footer-logo-sub {
  font-size: 0.65rem;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 12px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-links a::before {
  content: "›";
  color: var(--primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}
.fade-up-delay-2 {
  transition-delay: 0.2s;
}
.fade-up-delay-3 {
  transition-delay: 0.3s;
}
.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(139, 35, 15, 0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

#backToTop.visible {
  opacity: 1;
  pointer-events: all;
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 35, 15, 0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-slider,
  .hero-slide {
    height: 85vh;
    min-height: 520px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .about-img-wrap img {
    height: 320px;
  }
  .about-badge-floating {
    display: none;
  }
  .contact-form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 767px) {
  .nav-contact-group {
    gap: 6px;
  }
  .nav-phone-btn {
    font-size: 0.72rem;
    padding: 6px 10px;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    padding: 11px 22px;
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .about-section,
  .connectivity-section,
  .plans-section,
  .opportunity-section,
  .map-section,
  .contact-section {
    padding: 60px 0;
  }
  .floating-side {
    display: none;
  }
  .plan-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer {
    padding-top: 40px;
  }
  .map-wrapper {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-badge {
    font-size: 0.65rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .conn-card {
    padding: 20px 14px;
  }
}

/* Modal Design */
.brochure-modal {
  border-radius: 16px;
  padding: 10px;
  background: rgb(243 233 231);
  border: 1px solid rgba(139, 35, 15, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Inputs */
.brochure-input {
  border-radius: 10px;
  height: 48px;
  font-size: 14px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.brochure-input:focus {
  border-color: #ff5722;
  box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.1);
}

/* Button */
.brochure-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.brochure-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  transform: translateY(-1px);
}

/* Modal Title */
.modal-title {
  font-size: 22px;
  color: #90240f;
}

/* Close button tweak */
.btn-close {
  filter: none;
}
