/* ============================================
   SHUBHAM ENTERPRISE — MAIN STYLESHEET
   ============================================ */

@font-face {
  font-family: 'Ethnocentric';
  src: url('../fonts/Ethnocentric-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary:       #C41A29;   /* Logo crimson red */
  --primary-light: #E0222F;   /* Lighter red */
  --secondary:     #F7941D;   /* Logo warm orange */
  --accent:        #F7941D;   /* Orange accent */
  --accent-dark:   #D97E10;   /* Darker orange */
  --gold:          #FBB040;   /* Warm amber/gold */
  --dark:          #1A0608;   /* Near-black with warm undertone */
  --text:          #2d3748;
  --text-light:    #718096;
  --border:        #e2e8f0;
  --light:         #FFF5F0;   /* Warm cream background */
  --white:         #ffffff;
  --gradient:      linear-gradient(135deg, #850C17 0%, #C41A29 100%);
  --gradient-warm: linear-gradient(135deg, #F7941D 0%, #FBB040 100%);
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.15);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     30px;
  --transition:    all .3s ease;
  --font-main:     'Inter', sans-serif;
  --font-display:  'Playfair Display', serif;
}

/* ─── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--dark); }

/* ─── PRELOADER ────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: url('../images/banners/image.png') center center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
  overflow: hidden;
}
#preloader::before {
  content: '';
  position: absolute; inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 245, 240, 0.72);
  z-index: 0;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner {
  text-align: center;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.preloader-logo {
  margin-bottom: 28px;
  animation: pulse 1.8s ease-in-out infinite;
}
.preloader-bar {
  width: 220px; height: 4px; background: rgba(196,26,41,.15);
  border-radius: 4px; overflow: hidden;
}
.preloader-fill {
  height: 100%; background: var(--gradient);
  border-radius: 4px;
  animation: loadBar 1.8s ease-in-out infinite;
}
@keyframes loadBar { 0%{width:0;margin-left:0} 50%{width:100%;margin-left:0} 100%{width:0;margin-left:100%} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.75;transform:scale(.97)} }

/* ─── TOP BAR ──────────────────────────────── */
.topbar {
  background: var(--gradient);
  padding: 8px 0;
  font-size: 13px;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-left a, .topbar-right a {
  color: rgba(255,255,255,.9);
  margin-right: 20px;
  font-size: 13px;
  font-weight: 500;
}
.topbar-left a i, .topbar-right a i { margin-right: 6px; color: var(--gold); }
.topbar-left a:hover, .topbar-right a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 4px; }
.topbar-right a { margin-right: 0; margin-left: 12px; font-size: 14px; }
.whatsapp-btn {
  background: #25d366;
  color: #fff !important;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px !important;
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #1ebe5c; color: #fff; }

/* ─── NAVBAR ───────────────────────────────── */
.main-navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 0;
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
.main-navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.15); }

/* Brand */
.navbar-brand { padding: 10px 0; }
.brand-logo { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 46px; height: 46px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-family: 'Ethnocentric', var(--font-display); font-weight: normal; font-size: 20px; color: var(--primary); letter-spacing: .5px; white-space: nowrap; }
.brand-tagline { font-size: 10px; color: var(--secondary); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }

/* Nav links */
.main-navbar .nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--text) !important;
  padding: 32px 16px !important;
  position: relative;
  letter-spacing: .2px;
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform .3s ease;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--primary) !important; }

/* Dropdown */
.main-navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin-top: 0;
  animation: dropFade .2s ease;
}
@keyframes dropFade { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.main-navbar .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.main-navbar .dropdown-item i { width: 22px; color: var(--accent); margin-right: 8px; }
.main-navbar .dropdown-item:hover { background: var(--light); color: var(--primary); }

/* CTA button */
.nav-cta {
  background: var(--gradient-warm) !important;
  border: none !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: .3px;
  box-shadow: 0 4px 15px rgba(247,148,29,.3);
  transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(247,148,29,.4) !important; }
.nav-cta i { margin-right: 6px; }

/* Toggler */
.navbar-toggler { border: none; padding: 8px; background: none; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-icon span { display: block; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.toggler-icon span:first-child { width: 26px; }
.toggler-icon span:nth-child(2) { width: 20px; }
.toggler-icon span:last-child { width: 26px; }

/* ─── HERO SECTION ─────────────────────────── */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  background:
    linear-gradient(135deg, rgba(133,12,23,.72) 0%, rgba(26,6,8,.60) 50%, rgba(196,26,41,.55) 100%),
    url('../images/banners/image.png') center center / cover no-repeat;
  overflow: hidden;
}
.hero-bg-shape {
  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.03'%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");
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles::before, .hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  animation: float 8s ease-in-out infinite;
}
.hero-particles::before { width: 600px; height: 600px; top: -200px; right: -100px; animation-duration: 10s; }
.hero-particles::after  { width: 400px; height: 400px; bottom: -150px; left: -100px; animation-duration: 12s; animation-delay: -4s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }

.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-badge i { color: var(--gold); animation: spin 4s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.hero-title .highlight {
  color: var(--gold);
  position: relative;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.95);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }
.btn-hero-primary {
  background: var(--secondary);
  color: #fff;
  padding: 15px 34px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(247,148,29,.45);
}
.btn-hero-primary:hover { background: transparent; color: #fff; border-color: var(--gold); transform: translateY(-3px); }
.btn-hero-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 15px 34px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,.35);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-3px); }

/* Hero Stats */
.hero-stats { display: flex; flex-wrap: wrap; gap: 30px; }
.hero-stat { text-align: left; }
.hero-stat .stat-number { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero-stat .stat-label { font-size: 12px; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; margin-top: 4px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.25); align-self: stretch; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.hero-image-wrapper img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-image-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 5rem;
}
.hero-image-placeholder span { font-size: 1rem; margin-top: 12px; font-weight: 500; }
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: float 5s ease-in-out infinite;
}
.hero-float-card.card-left { bottom: 30px; left: -20px; }
.hero-float-card.card-right { top: 30px; right: -20px; animation-delay: -2.5s; }
.hero-float-card .card-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hero-float-card .card-icon.orange { background: rgba(247,148,29,.12); color: var(--accent); }
.hero-float-card .card-icon.blue   { background: rgba(196,26,41,.1); color: var(--primary); }
.hero-float-card .card-text strong { display: block; font-size: 20px; font-weight: 800; color: var(--dark); line-height: 1; }
.hero-float-card .card-text span   { font-size: 12px; color: var(--text-light); font-weight: 500; }

/* ─── SECTION STYLES ───────────────────────── */
section { padding: 90px 0; }
.section-header { margin-bottom: 56px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,148,29,.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-badge i { font-size: 11px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title span { color: var(--primary); }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 600px; line-height: 1.8; }
.section-divider {
  width: 60px; height: 4px;
  background: var(--gradient-warm);
  border-radius: 4px;
  margin: 16px 0;
}

/* ─── BUTTONS ──────────────────────────────── */
.btn-primary {
  background: var(--gradient) !important;
  border: none !important;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(196,26,41,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,26,41,.35) !important; }
.btn-accent {
  background: var(--gradient-warm) !important;
  border: none !important;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(247,148,29,.25);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(247,148,29,.4) !important; }
.btn-outline-primary {
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  background: transparent !important;
  padding: 11px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.btn-outline-primary:hover { background: var(--primary) !important; color: #fff !important; transform: translateY(-2px); }

/* ─── SERVICE CARDS ────────────────────────── */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(196,26,41,.08), rgba(247,148,29,.08));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.1);
}
.service-card h4 { font-size: 1.15rem; margin-bottom: 12px; color: var(--dark); }
.service-card p { color: var(--text-light); font-size: .94rem; line-height: 1.7; margin-bottom: 20px; }
.service-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.service-link i { transition: transform .3s; }
.service-link:hover { color: var(--accent); }
.service-link:hover i { transform: translateX(4px); }

/* ─── ABOUT SECTION ────────────────────────── */
.about-section { background: var(--light); }
.about-image-stack { position: relative; padding-bottom: 40px; padding-right: 40px; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 460px; object-fit: cover; }
.about-img-small {
  position: absolute; bottom: 0; right: 0;
  width: 200px; height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-years {
  position: absolute; top: 30px; left: -20px;
  background: var(--gradient);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 90px;
}
.about-badge-years .years-num { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-badge-years .years-label { font-size: 11px; opacity: .8; letter-spacing: 1px; text-transform: uppercase; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.about-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(247,148,29,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 16px;
}
.about-feature h6 { font-size: 14px; margin-bottom: 2px; color: var(--dark); }
.about-feature p { font-size: 12px; color: var(--text-light); margin: 0; line-height: 1.4; }

/* ─── STATS SECTION ────────────────────────── */
.stats-section {
  background: var(--gradient);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-9.5zM20 9V8.5H0V11h5v5H0v5h20v-12zM0 0v5h5V0H0zm5 5v5h5V5H5zm5 5v5h5v-5h-5zm5 5v5h5v-5h-5zM25 0v5h5V0h-5zm5 5v5h5V5h-5zm5 5v5h5v-5h-5zM25 15v5h5v-5h-5z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── Floating SVG cargo icons ─────────────── */
.stats-float-icons {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.sfi {
  position: absolute;
  fill: none;
  stroke: rgba(255,255,255,.10);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Positions */
.sfi-1 { width: 130px; bottom: -15px; left: 3%;     animation: sfi-drift-1 22s ease-in-out infinite; }
.sfi-2 { width: 90px;  top: 8%;      right: 5%;     animation: sfi-drift-2 28s ease-in-out infinite; }
.sfi-3 { width: 160px; top: 42%;     left: 38%;     animation: sfi-drift-3 35s ease-in-out infinite; opacity: .07; }
.sfi-4 { width: 140px; bottom: 5%;   right: 10%;    animation: sfi-drift-4 30s ease-in-out infinite; }
.sfi-5 { width: 70px;  top: 5%;      left: 28%;     animation: sfi-drift-5 20s ease-in-out infinite; opacity: .08; }
.sfi-6 { width: 65px;  bottom: 10%;  left: 55%;     animation: sfi-drift-6 25s ease-in-out infinite; opacity: .08; }

/* Drift keyframes — each icon gets a unique gentle path */
@keyframes sfi-drift-1 {
  0%,100% { transform: translate(0px,   0px)  rotate(-4deg); }
  25%     { transform: translate(25px, -30px) rotate(2deg);  }
  50%     { transform: translate(40px, -15px) rotate(6deg);  }
  75%     { transform: translate(15px,  10px) rotate(-2deg); }
}
@keyframes sfi-drift-2 {
  0%,100% { transform: translate(0px,   0px)  rotate(6deg);  }
  30%     { transform: translate(-20px, 25px) rotate(-4deg); }
  60%     { transform: translate(-35px, 10px) rotate(2deg);  }
  80%     { transform: translate(-10px, 30px) rotate(-6deg); }
}
@keyframes sfi-drift-3 {
  0%,100% { transform: translate(0px,   0px)  rotate(0deg);  }
  20%     { transform: translate(-40px,-10px) rotate(-3deg); }
  50%     { transform: translate(-60px, 15px) rotate(2deg);  }
  80%     { transform: translate(-20px, 20px) rotate(-1deg); }
}
@keyframes sfi-drift-4 {
  0%,100% { transform: translate(0px,   0px)  rotate(-3deg); }
  35%     { transform: translate(-30px,-20px) rotate(4deg);  }
  65%     { transform: translate(-15px,-35px) rotate(-2deg); }
}
@keyframes sfi-drift-5 {
  0%,100% { transform: translate(0px,  0px)  rotate(8deg);  }
  40%     { transform: translate(20px, 18px) rotate(-5deg); }
  70%     { transform: translate(35px,  5px) rotate(10deg); }
}
@keyframes sfi-drift-6 {
  0%,100% { transform: translate(0px,  0px)   rotate(-6deg); }
  30%     { transform: translate(-25px, 20px) rotate(4deg);  }
  60%     { transform: translate( 10px, 30px) rotate(-8deg); }
}

.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-icon { font-size: 2.5rem; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.stat-count { font-size: 3.5rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-count .suffix { font-size: 2rem; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; font-weight: 500; }

/* ─── WHY CHOOSE US ────────────────────────── */
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: default;
}
.why-card:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-6px); }
.why-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 25px rgba(196,26,41,.28);
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap { transform: rotateY(180deg); }
.why-card h5 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ─── PROCESS SECTION ──────────────────────── */
.process-section { background: var(--light); }
.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 30px; right: -50%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  z-index: 0;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 60px; height: 60px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 20px rgba(196,26,41,.32);
}
.process-step h5 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.process-step p { font-size: .88rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ─── GALLERY ──────────────────────────────── */
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border: 2px solid var(--border);
  border-radius: 30px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196,26,41,.22);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s ease; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,6,8,.92), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-overlay-inner { color: #fff; }
.gallery-overlay-inner h6 { font-size: 15px; margin-bottom: 4px; }
.gallery-overlay-inner span { font-size: 12px; opacity: .8; }
.gallery-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  width: 50px; height: 50px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ─── TESTIMONIALS ─────────────────────────── */
.testimonials-section { background: var(--light); }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 20px; right: 30px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(247,148,29,.14);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-text { font-size: .95rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 18px;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.author-company { font-size: 13px; color: var(--text-light); }

/* ─── BLOG CARDS ───────────────────────────── */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-img {
  height: 220px; overflow: hidden; position: relative;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-category {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: .5px; text-transform: uppercase;
}
.blog-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.blog-meta i { color: var(--accent); margin-right: 4px; }
.blog-title {
  font-size: 1.08rem; font-weight: 700; color: var(--dark);
  margin-bottom: 10px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-excerpt { font-size: .9rem; color: var(--text-light); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-read-more {
  color: var(--primary); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  transition: var(--transition);
}
.blog-read-more i { transition: transform .3s; }
.blog-read-more:hover { color: var(--accent); }
.blog-read-more:hover i { transform: translateX(5px); }

/* ─── CTA SECTION ──────────────────────────── */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff; margin-bottom: 16px;
}
.cta-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 32px; max-width: 560px; }

/* ─── CONTACT SECTION ──────────────────────── */
.contact-info-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  height: 100%;
  color: #fff;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-item h6 { font-size: 13px; opacity: .7; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-item p { margin: 0; font-size: 15px; font-weight: 500; }
.contact-info-item a { color: #fff; font-weight: 500; font-size: 15px; }
.contact-info-item a:hover { color: var(--gold); }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-lg);
  height: 100%;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  background: var(--light);
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(196,26,41,.08);
  background: #fff;
}
.contact-form-card label { font-weight: 600; font-size: 13px; color: var(--dark); margin-bottom: 6px; }
.contact-form-card .form-control.is-invalid { border-color: #dc3545; }
.form-success { text-align: center; padding: 40px 20px; display: none; }
.form-success i { font-size: 4rem; color: #28a745; margin-bottom: 16px; }

/* ─── PAGE BANNER ──────────────────────────── */
.page-banner {
  background: var(--gradient);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 40px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 12px; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item.active { color: var(--gold); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ─── PARTNERS / CLIENTS ───────────────────── */
.partners-section { padding: 60px 0; background: var(--light); }
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  height: 80px; padding: 16px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  transition: var(--transition);
  cursor: pointer;
}
.partner-logo:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.partner-logo img { max-height: 40px; filter: grayscale(100%); opacity: .5; transition: var(--transition); }
.partner-logo:hover img { filter: none; opacity: 1; }

/* Port logo cards */
.port-logo-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.port-logo-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.port-logo-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px;
  transition: var(--transition);
}
.port-logo-card:hover .port-logo-icon { transform: scale(1.1); }
.port-logo-img {
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.port-logo-img img {
  max-height: 64px; max-width: 100%;
  width: auto; object-fit: contain;
  transition: var(--transition);
}
.port-logo-card:hover .port-logo-img img { transform: scale(1.05); }

.port-logo-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.port-logo-sub {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: .3px;
}

/* ─── FOOTER ───────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }

.footer-newsletter {
  background: linear-gradient(135deg, #2A0A0E 0%, #3D1018 100%);
  padding: 50px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-newsletter h4 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.footer-newsletter p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }
.newsletter-form .form-control {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.12);
  color: #fff; border-radius: 30px 0 0 30px;
  padding: 12px 20px;
  font-size: 14px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,.12); border-color: var(--accent); box-shadow: none; }
.newsletter-form .btn-accent { border-radius: 0 30px 30px 0; padding: 12px 24px; }
.newsletter-form .input-group { max-width: 500px; margin-left: auto; }

.footer-main { padding: 70px 0 40px; }
.footer-logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff; font-weight: 800; font-size: 1.4rem;
  margin-bottom: 18px;
}
.footer-logo i { color: var(--accent); font-size: 1.8rem; }
.footer-logo:hover { color: var(--gold); }
.footer-brand p { font-size: .9rem; line-height: 1.8; margin-bottom: 24px; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,.08);
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 18px; line-height: 1; }
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.footer-contact i { color: var(--accent); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.6; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom p { font-size: .87rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-certifications { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }
.footer-certifications span { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-certifications i { color: var(--gold); margin-right: 4px; }

/* ─── BACK TO TOP ──────────────────────────── */
.back-to-top {
  position: fixed; bottom: 90px; right: 28px;
  width: 44px; height: 44px;
  background: var(--gradient);
  color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  box-shadow: 0 4px 15px rgba(196,26,41,.32);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ─── WHATSAPP FLOAT ───────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff !important; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { background: #1ebe5c; transform: scale(1.1); }
.whatsapp-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes whatsappPulse { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(1.6);opacity:0} }

/* ─── MISC UTILITIES ───────────────────────── */
.text-accent  { color: var(--accent) !important; }
.text-gold    { color: var(--gold) !important; }
.text-primary-custom { color: var(--primary) !important; }
.bg-light-custom { background: var(--light) !important; }
.fw-800 { font-weight: 800; }

/* Alert / Flash */
.alert-flash {
  border-radius: var(--radius-md);
  border: none;
  font-weight: 500;
  font-size: 15px;
}

/* Swiper custom bullets */
.swiper-pagination-bullet { background: var(--primary); }
.swiper-pagination-bullet-active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ─── MAP ──────────────────────────────────── */
.map-section { padding: 0; }

.map-layout {
  display: flex;
  min-height: 480px;
}

.map-info-card {
  width: 340px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 4px 0 24px rgba(0,0,0,.06);
  z-index: 1;
}
.map-overlay-icon {
  width: 50px; height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.map-info-card h5 {
  font-size: 20px; font-weight: 700;
  color: var(--primary); margin-bottom: 8px;
}
.map-address {
  font-size: 13px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 24px;
}
.map-detail-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--text-light);
  margin-bottom: 14px;
}
.map-detail-row i {
  color: var(--accent); font-size: 14px;
  margin-top: 2px; flex-shrink: 0; width: 16px;
}
.map-detail-row a { color: var(--text-light); }
.map-detail-row a:hover { color: var(--primary); }
.map-btn-group {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto; padding-top: 28px;
  border-top: 1px solid var(--border);
}

.map-frame-wrap {
  flex: 1;
  min-height: 480px;
}
.map-frame-wrap iframe {
  width: 100%; height: 100%;
  min-height: 480px;
  display: block; border: 0;
}

/* ============================================================
   RESPONSIVE STYLES
   lg  → ≤ 1199px  (large tablets / small laptops)
   md  → ≤ 991px   (tablets)
   sm  → ≤ 767px   (large phones / small tablets)
   xs  → ≤ 575px   (phones)
   ============================================================ */

/* ─── ≤ 1199px ─────────────────────────────── */
@media (max-width: 1199px) {
  .hero-float-card.card-left  { left: -10px; }
  .hero-float-card.card-right { right: -10px; }
  .brand-name { font-size: 17px; }
  .footer-main .col-lg-4 { margin-bottom: 0; }
}

/* ─── ≤ 991px (tablet) ─────────────────────── */
@media (max-width: 991px) {
  /* Topbar */
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }

  /* Navbar */
  .main-navbar .nav-link { padding: 12px 16px !important; }
  .main-navbar .nav-link::after { display: none; }
  .main-navbar .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
  }
  .nav-cta { margin: 10px 16px 0; display: inline-block; }

  /* Hero */
  .hero-section { min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
  .hero-float-card { display: none; }
  .hero-visual { margin-top: 30px; }
  .hero-stats { gap: 20px; }

  /* Section padding */
  section { padding: 70px 0; }
  .stats-section { padding: 56px 0; }
  .cta-section   { padding: 60px 0; }

  /* About */
  .about-image-stack { padding-bottom: 30px; padding-right: 30px; margin-bottom: 20px; }
  .about-img-main img { height: 360px; }
  .about-img-small { width: 160px; height: 130px; }

  /* Process arrows */
  .process-step::after { display: none; }

  /* Footer newsletter */
  .newsletter-form .input-group { margin: 0 auto; }
  .footer-newsletter .col-lg-4,
  .footer-newsletter .col-lg-8 { text-align: center; margin-bottom: 20px; }

  /* Contact */
  .contact-info-card,
  .contact-form-card { padding: 36px 28px; }

  /* Map */
  .map-layout { flex-direction: column; }
  .map-info-card { width: 100%; border-right: none; border-bottom: 1px solid var(--border); box-shadow: none; padding: 32px 28px; }
  .map-frame-wrap { min-height: 380px; }
  .map-frame-wrap iframe { min-height: 380px; }
}

/* ─── ≤ 767px (large phone / small tablet) ── */
@media (max-width: 767px) {
  /* Map (kept from original) */
  .map-info-card { padding: 28px 20px; }
  .map-frame-wrap { min-height: 320px; }
  .map-frame-wrap iframe { min-height: 320px; }

  /* Typography */
  .hero-title     { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-subtitle  { font-size: 1rem; margin-bottom: 28px; }
  .section-title  { font-size: clamp(1.5rem, 5vw, 2rem); }
  .page-banner h1 { font-size: 1.9rem; }
  .cta-title      { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Section padding */
  section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .stats-section { padding: 48px 0; }
  .cta-section   { padding: 48px 0; }
  .page-banner   { padding: 60px 0 48px; }

  /* Hero actions & stats */
  .hero-actions { gap: 12px; }
  .btn-hero-primary,
  .btn-hero-secondary { padding: 13px 24px; font-size: 14px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }
  .hero-stat .stat-number { font-size: 1.7rem; }

  /* Stats section */
  .stat-count { font-size: 2.6rem; }
  .stat-count .suffix { font-size: 1.6rem; }
  .stat-label { font-size: 12px; letter-spacing: 1px; }

  /* Navbar brand */
  .brand-name    { font-size: 15px; }
  .brand-tagline { font-size: 9px; }

  /* About image stack */
  .about-image-stack { padding-bottom: 0; padding-right: 0; }
  .about-img-small   { display: none; }
  .about-badge-years { top: 14px; left: 14px; padding: 14px; min-width: 76px; }
  .about-badge-years .years-num { font-size: 1.9rem; }
  .about-features { grid-template-columns: 1fr; }

  /* Service cards */
  .service-card { padding: 28px 22px; }
  .service-icon { width: 60px; height: 60px; font-size: 24px; }

  /* Gallery */
  .gallery-item img { height: 200px; }

  /* Contact */
  .contact-info-card,
  .contact-form-card { padding: 28px 20px; }

  /* Footer newsletter */
  .newsletter-form .form-control { border-radius: 30px; margin-bottom: 10px; }
  .newsletter-form .btn-accent   { border-radius: 30px; width: 100%; }
  .newsletter-form .input-group  { flex-direction: column; }
  .footer-certifications { justify-content: center; }
  .footer-bottom .row > div { text-align: center !important; }
  .footer-bottom .col-md-6:last-child { margin-top: 10px; }

  /* Buttons full-width on small screens */
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-secondary { width: 100%; text-align: center; }

  /* Toast */
  .flash-toast { min-width: unset; max-width: calc(100vw - 32px); right: 16px; bottom: 16px; }

  /* WhatsApp / Back-to-top spacing */
  .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; font-size: 22px; }
  .back-to-top    { bottom: 80px; right: 16px; }
}

/* ─── ≤ 575px (phones) ─────────────────────── */
/* ─── OVERFLOW CONTAINMENT (all devices) ───── */
section,
.container,
.container-fluid,
.row {
  max-width: 100%;
}

@media (max-width: 767px) {
  /* Prevent any child from pushing viewport wider */
  * { max-width: 100vw; box-sizing: border-box; }
  img, video, iframe { max-width: 100% !important; }
  .hero-bg-shape,
  .hero-particles { pointer-events: none; }
}

@media (max-width: 575px) {
  /* Typography */
  .hero-title    { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-subtitle { font-size: .95rem; }
  .section-title { font-size: clamp(1.35rem, 6vw, 1.75rem); }
  .page-banner h1{ font-size: 1.6rem; }

  /* Section padding */
  section { padding: 44px 0; }
  .stats-section { padding: 40px 0; }
  .cta-section   { padding: 40px 0; }
  .page-banner   { padding: 48px 0 40px; }

  /* Topbar — show only WhatsApp & phone on very small screens */
  .topbar-right .topbar-email { display: none; }

  /* Navbar brand name — hide tagline on tiny screens */
  .brand-tagline { display: none; }
  .brand-name    { font-size: 14px; }

  /* Hero content */
  .hero-content { padding: 48px 0 32px; }
  .hero-badge   { font-size: 11px; padding: 6px 14px; }
  .hero-stats   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-stat .stat-number { font-size: 1.5rem; }

  /* Stats section counts */
  .stat-count { font-size: 2.2rem; }
  .stat-icon  { font-size: 2rem; margin-bottom: 10px; }

  /* About */
  .about-img-main img { height: 260px; }
  .about-badge-years  { display: none; }

  /* Service detail banner */
  .service-card { padding: 22px 16px; }

  /* Contact cards */
  .contact-info-card,
  .contact-form-card { padding: 24px 16px; border-radius: var(--radius-md); }

  /* Map */
  .map-info-card { padding: 24px 16px; }
  .map-btn-group .btn { font-size: 13px; padding: 10px 16px; }

  /* Testimonial */
  .testimonial-card { padding: 24px 20px; }

  /* Blog */
  .blog-img { height: 180px; }

  /* Footer */
  .footer-main { padding: 48px 0 28px; }
  .footer-logo  { font-size: 1.1rem; }
  .footer-social a { width: 34px; height: 34px; font-size: 14px; }

  /* Gallery */
  .gallery-item img { height: 170px; }
  .gallery-filter .filter-btn { padding: 7px 16px; font-size: 13px; }

  /* Process steps */
  .process-step { padding: 0 8px; }
  .step-num { width: 50px; height: 50px; font-size: 1.2rem; }

  /* Why cards */
  .why-card { padding: 28px 16px; }

  /* CTA subtitle */
  .cta-subtitle { font-size: .95rem; }

  /* Toast full width */
  .flash-toast { right: 0; bottom: 0; left: 0; max-width: 100%; border-radius: 16px 16px 0 0; }

  /* Preloader bar */
  .preloader-bar { width: 160px; }
}

/* ─── FLASH TOAST ──────────────────────────── */
.flash-toast {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99998;
  min-width: 320px; max-width: 420px;
  border-radius: 16px;
  padding: 20px 20px 26px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  transform: translateX(calc(100% + 40px));
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
  cursor: default;
}
.flash-toast.show { transform: translateX(0); }

.flash-toast--success {
  background: linear-gradient(135deg, #850C17 0%, #C41A29 100%);
  color: #fff;
}
.flash-toast--error {
  background: linear-gradient(135deg, #7c3a00, #c45a1a);
  color: #fff;
}

/* Icon */
.flash-toast-icon { flex-shrink: 0; margin-top: 2px; }

/* SVG Checkmark */
.toast-checkmark {
  width: 44px; height: 44px;
  stroke: #fff; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.toast-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: toastCircle .55s cubic-bezier(.65,0,.45,1) .15s forwards;
}
.toast-checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: toastCheck .3s cubic-bezier(.65,0,.45,1) .75s forwards;
}
@keyframes toastCircle { to { stroke-dashoffset: 0; } }
@keyframes toastCheck  { to { stroke-dashoffset: 0; } }

.toast-error-icon {
  width: 44px; height: 44px;
  border: 2.5px solid rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
}

/* Body */
.flash-toast-body { flex: 1; }
.flash-toast-title {
  font-weight: 700; font-size: 15px;
  margin-bottom: 4px; letter-spacing: .2px;
}
.flash-toast-msg {
  font-size: 13px; color: rgba(255,255,255,.85);
  line-height: 1.55;
}

/* Close button */
.flash-toast-close {
  background: none; border: none;
  color: rgba(255,255,255,.7);
  font-size: 22px; line-height: 1;
  cursor: pointer; padding: 0; margin-top: -2px;
  transition: color .2s;
  flex-shrink: 0;
}
.flash-toast-close:hover { color: #fff; }

/* Progress bar */
.flash-toast-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 4px;
  width: 100%;
  background: rgba(255,255,255,.4);
  border-radius: 0 0 16px 16px;
  transform-origin: left;
  animation: toastProgress 5.5s linear forwards;
}
@keyframes toastProgress { from { width: 100%; } to { width: 0%; } }
