/* ============================================
   BandhaneBank - Premium Professional Website
   Modern Bank UI + Smooth Animations
   ============================================ */

:root {
  --primary: #0A2F6B;
  --primary-dark: #061E45;
  --primary-light: #1A4A8C;
  --accent: #E85D04;
  --accent-hover: #d14f00;
  --gold: #C9A227;
  --text: #1A1A2E;
  --text-light: #4A5568;
  --bg: #F4F7FB;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 8px 30px rgba(10, 47, 107, 0.08);
  --shadow-hover: 0 20px 40px rgba(10, 47, 107, 0.14);
  --radius: 14px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(232, 93, 4, 0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-25px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--primary-dark);
  color: #CBD5E1;
  font-size: 0.875rem;
  padding: 10px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a { color: #A0AEC0; }
.top-bar a:hover { color: #fff; }
.top-bar .contact-info { display: flex; gap: 24px; flex-wrap: wrap; }

/* ========== HEADER ========== */
.header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(10,47,107,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
}
.logo img {
  height: 64px !important;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  transition: var(--transition);
}
.logo:hover img { transform: scale(1.03); }

.nav { display: flex; align-items: center; gap: 3px; }
.nav a {
  padding: 9px 12px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 9px;
  position: relative;
}
.nav a:hover, .nav a.active {
  background: rgba(10, 47, 107, 0.07);
  color: var(--primary);
}
.nav a.active { font-weight: 600; }

.cta-btn {
  background: linear-gradient(135deg, var(--accent), #f07a20) !important;
  color: white !important;
  padding: 11px 22px !important;
  border-radius: 9px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(232,93,4,0.3);
}
.cta-btn:hover {
  background: linear-gradient(135deg, #d14f00, var(--accent)) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,93,4,0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #061E45 0%, #0A2F6B 45%, #0d3a7a 100%);
  color: white;
  padding: 85px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -35%;
  right: -12%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(232,93,4,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 45px;
  align-items: center;
}
.hero-content .tagline {
  display: inline-block;
  background: rgba(232, 93, 4, 0.18);
  color: #FFB347;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
  border: 1px solid rgba(232,93,4,0.25);
  animation: fadeIn 0.8s ease;
}
.hero-content h2 {
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-content p {
  font-size: 1.13rem;
  opacity: 0.92;
  margin-bottom: 30px;
  max-width: 530px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f07a20);
  color: white;
  box-shadow: 0 6px 20px rgba(232,93,4,0.35);
  animation: pulse-soft 2.5s infinite;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d14f00, var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232,93,4,0.45);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}

.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  padding: 30px;
  animation: scaleIn 0.9s ease 0.25s both;
}
.hero-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  opacity: 0.95;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-item {
  background: rgba(255,255,255,0.09);
  padding: 16px 12px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.stat-item h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFB347;
}
.stat-item p {
  font-size: 0.84rem;
  opacity: 0.88;
  margin-top: 3px;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
}
.trust-item:hover { color: var(--primary); transform: translateY(-2px); }
.trust-item span { font-size: 1.4rem; }

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 52px;
}
.section-title h2 {
  font-size: 2.15rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}
.section-title p {
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.06rem;
}
.section-title .underline {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  margin: 14px auto 0;
  border-radius: 3px;
}

/* ========== FEATURE CARDS ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10, 47, 107, 0.12);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(10,47,107,0.09), rgba(232,93,4,0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(10,47,107,0.14), rgba(232,93,4,0.18));
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 11px;
  color: var(--primary-dark);
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}
.feature-card .highlight {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(232,93,4,0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ========== PRODUCT CARDS ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}
.product-header {
  background: linear-gradient(135deg, #0A2F6B 0%, #1A4A8C 55%, #0A2F6B 100%);
  color: white;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.product-header::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.product-header .icon { font-size: 1.9rem; position: relative; z-index: 1; }
.product-header h3 { font-size: 1.28rem; font-weight: 700; position: relative; z-index: 1; }
.product-body { padding: 26px; }
.product-body ul { margin-bottom: 16px; }
.product-body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.product-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}
.product-body .rate-box {
  background: linear-gradient(90deg, rgba(232,93,4,0.08), rgba(232,93,4,0.03));
  border-left: 4px solid var(--accent);
  padding: 13px 16px;
  border-radius: 0 10px 10px 0;
  margin-top: 14px;
  font-size: 0.93rem;
}
.product-body .rate-box strong { color: var(--primary); }

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.about-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.about-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.02rem;
}
.about-list { margin-top: 20px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--text);
}
.about-list li::before {
  content: '✓';
  background: linear-gradient(135deg, var(--accent), #f07a20);
  color: white;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.about-image {
  background: linear-gradient(145deg, #0A2F6B, #1A4A8C);
  border-radius: 18px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10,47,107,0.2);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ========== CTA ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #c44d00 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-banner h2 { font-size: 1.95rem; margin-bottom: 12px; position: relative; }
.cta-banner p { opacity: 0.95; margin-bottom: 24px; font-size: 1.1rem; position: relative; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(10,47,107,0.18);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.contact-card .icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(10,47,107,0.1), rgba(232,93,4,0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.45rem;
  transition: var(--transition);
}
.contact-card:hover .icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(10,47,107,0.15), rgba(232,93,4,0.2));
}
.contact-card h3 {
  font-size: 1.12rem;
  margin-bottom: 9px;
  color: var(--primary-dark);
}
.contact-card p, .contact-card a {
  color: var(--text-light);
  font-size: 0.95rem;
}
.contact-card a:hover { color: var(--primary); }

/* ========== FORM ========== */
.form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 740px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
  font-size: 0.94rem;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.98rem;
  font-family: inherit;
  transition: var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 47, 107, 0.1);
}
.form-group textarea { min-height: 125px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  counter-reset: step;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 22px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(10,47,107,0.25);
}
.step-card h3 {
  margin-top: 14px;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 1.15rem;
}
.step-card p { color: var(--text-light); font-size: 0.94rem; }

/* ========== TABLE ========== */
.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
th, td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(10, 47, 107, 0.03); }

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(135deg, #061E45 0%, #0A2F6B 100%);
  color: white;
  padding: 55px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 350px; height: 350px;
  background: rgba(232,93,4,0.12);
  border-radius: 50%;
}
.page-header h1 {
  font-size: 2.35rem;
  margin-bottom: 10px;
  position: relative;
}
.page-header p {
  opacity: 0.9;
  font-size: 1.1rem;
  position: relative;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.gallery-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.6rem;
  transition: var(--transition);
}
.gallery-item:hover .gallery-img {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.gallery-item .content { padding: 20px; }
.gallery-item h3 {
  font-size: 1.12rem;
  color: var(--primary-dark);
  margin-bottom: 7px;
}
.gallery-item p { font-size: 0.92rem; color: var(--text-light); }

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-dark);
  color: #94A3B8;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.9fr 1.2fr;
  gap: 38px;
  margin-bottom: 40px;
}
.footer h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer p {
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: #94A3B8;
  font-size: 0.94rem;
}
.footer ul a:hover {
  color: white;
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.94rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.87rem;
  color: #64748B;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logo img { height: 54px !important; max-width: 240px; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
    display: none;
    gap: 4px;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; text-align: center; }
  .hero-content h2 { font-size: 1.9rem; }
  .section { padding: 55px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .top-bar .contact-info { justify-content: center; width: 100%; }
  .top-bar .container { justify-content: center; }
  .logo img { height: 48px !important; max-width: 200px; }
}
@media (max-width: 480px) {
  .hero { padding: 50px 0 70px; }
  .hero-content h2 { font-size: 1.65rem; }
  .btn { padding: 12px 20px; font-size: 0.94rem; }
  .page-header h1 { font-size: 1.8rem; }
}


/* ========== HERO WITH IMAGES ========== */
.hero-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-main {
  width: 100%;
  max-width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}
.hero-img-main:hover {
  transform: scale(1.02);
}
.hero-img-float {
  position: absolute;
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.25);
  z-index: 8;
  animation: float 5s ease-in-out infinite;
}
.hero-img-float.bottom-right {
  bottom: 10px;
  right: 0;
  animation-delay: 0.5s;
}
.hero-badge {
  position: absolute;
  top: 20px;
  left: 0;
  background: linear-gradient(135deg, var(--accent), #f07a20);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(232,93,4,0.4);
  z-index: 4;
  animation: fadeUp 0.8s ease 0.4s both;
}
@media (max-width: 992px) {
  .hero-visual {
    height: auto;
    margin-top: 20px;
  }
  .hero-img-main {
    max-width: 100%;
    height: 240px;
  }
  .hero-img-float {
    width: 130px;
    height: 90px;
  }
}
@media (max-width: 480px) {
  .hero-img-float {
    display: none;
  }
  .hero-img-main {
    height: 200px;
  }
}
