/* =========================================================
   Global Styles
   ========================================================= */
:root {
  --primary: #ff7600;
  --primary-dark: #d96000;
  --bg-light: #f5f7fb;
  --text-dark: #303233;
  --text-muted: #818282;
  --white: #ffffff;
  --bs-primary: #ff7600;
  --bs-primary-rgb: 255, 118, 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-weight: 700;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 680px;
}

/* =========================================================
   Navbar
   ========================================================= */
.main-navbar {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 25px rgba(31, 42, 68, 0.08);
  backdrop-filter: blur(6px);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-logo {
  width: auto;
  height: 42px;
  max-width: 220px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .brand-logo {
    height: 34px;
    max-width: 170px;
  }
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary);
}

/* =========================================================
   Hero
   ========================================================= */
.hero-section {
  background: linear-gradient(135deg, #ff7600 0%, #d96000 100%);
  color: var(--white);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  font-weight: 700;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 640px;
}

/* =========================================================
   Cards and Feature Blocks
   ========================================================= */
.info-card {
  background-color: var(--white);
  border: 1px solid #e8ebf4;
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 8px 24px rgba(31, 42, 68, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(255, 118, 0, 0.2);
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 118, 0, 0.14);
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.light-section {
  background-color: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, #ff7600 0%, #d96000 100%);
  color: var(--white);
  border-radius: 18px;
  padding: 2.4rem;
  box-shadow: 0 12px 32px rgba(255, 118, 0, 0.3);
}

/* =========================================================
   Contact
   ========================================================= */
.contact-info-item i {
  color: var(--primary);
  margin-right: 0.65rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(255, 118, 0, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 118, 0, 0.2);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: 14px;
}

/* =========================================================
   Footer
   ========================================================= */
.main-footer {
  background-color: #4e5051;
  color: #f0f0f0;
  margin-top: auto;
}

.footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  color: #e5e5e5;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-icon {
  color: #ff7600;
  margin-right: 0.5rem;
}

.main-footer a {
  color: #f5f5f5;
  transition: color 0.3s ease;
}

.main-footer a:hover {
  color: #ff7600;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  margin-right: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

/* =========================================================
   Animation
   ========================================================= */
.reveal-up {
  animation: revealUp 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   Utilities
   ========================================================= */
.text-muted-custom {
  color: var(--text-muted);
}

/* =========================================================
   Bootstrap Brand Overrides
   ========================================================= */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-check:checked + .btn-primary {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}
