/* =============================================
   Y SHIPPING - MAIN STYLESHEET
   Professional Shipping Company Website
   ============================================= */

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

/* --- CSS VARIABLES --- */
:root {
  --primary: #0b2a4a;
  --accent: #f5a623;
  --accent2: #00c9a7;
  --light: #f4f7fc;
  --white: #ffffff;
  --gray: #6c757d;
  --dark: #0a1628;
  --text: #2d3a4a;
  --border: rgba(11,42,74,0.12);
  --shadow: 0 20px 60px rgba(11,42,74,0.13);
  --shadow-sm: 0 4px 20px rgba(11,42,74,0.09);
  --radius: 14px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- PRELOADER --- */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  color: var(--accent);
  letter-spacing: 4px;
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  margin-top: 20px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 99px;
  animation: loadBar 2s ease forwards;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(.97)} }

/* --- CUSTOM CURSOR --- */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.18s ease;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* --- NAVBAR --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), #e8901f);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.nav-logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 2px;
}
.nav-logo-text span { color: var(--accent); }
.nav-menu {
  display: flex; align-items: center; gap: 32px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.93rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), #e8901f);
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
  transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,166,35,0.5); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 1500;
  display: flex; flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
  padding: 100px 40px 60px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--white);
}
.mobile-menu-close {
  position: absolute; top: 30px; right: 30px;
  color: var(--white); font-size: 1.8rem; cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-close:hover { color: var(--accent); transform: rotate(90deg); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(11,42,74,0.5) 50%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 120px 30px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent);
  padding: 7px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.2s ease both;
}
.hero-title span { color: var(--accent); display: block; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s 0.4s ease both;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 16px;
  animation: fadeInUp 0.9s 0.6s ease both;
}
.btn-primary-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), #e8901f);
  color: var(--dark);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 30px rgba(245,166,35,0.4);
  transition: var(--transition);
}
.btn-primary-main:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(245,166,35,0.5); color: var(--dark); }
.btn-secondary-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-secondary-main:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); color: var(--white); }

/* --- SECTION COMMON --- */
section { position: relative; }
.section-pad { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.separator {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  margin: 18px auto;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* --- MARQUEE TICKER --- */
.ticker-section {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 0 40px;
}
.ticker-item span { color: var(--accent); font-weight: 700; }
.ticker-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- SERVICES SECTION --- */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 600; font-size: 0.88rem;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; color: var(--accent); }

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.about-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--accent), #e8901f);
  color: var(--dark);
  padding: 28px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(245,166,35,0.4);
}
.about-img-badge .num {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  line-height: 1;
}
.about-img-badge .lbl { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.about-tag { margin-bottom: 16px; }
.about-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.about-text { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
}
.about-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(0,201,167,0.1));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--accent);
}
.about-feature-text h4 { font-size: 1rem; margin-bottom: 2px; }
.about-feature-text p { color: var(--gray); font-size: 0.9rem; }

/* --- COUNTERS SECTION --- */
.counters {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.counters::before {
  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.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");
}

/* --- TRACKING SECTION --- */
.tracking { background: var(--light); }
.tracking-box {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: 24px;
  padding: 60px;
  display: flex; align-items: center; gap: 60px;
  position: relative; overflow: hidden;
}
.tracking-box::after {
  content: '📦';
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  font-size: 10rem; opacity: 0.05;
}
.tracking-text { flex: 1; }
.tracking-text h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 12px; }
.tracking-text p { color: rgba(255,255,255,0.65); max-width: 380px; }
.tracking-form { flex: 1; }
.tracking-input-wrap {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  overflow: hidden;
}
.tracking-input {
  flex: 1; background: transparent;
  border: none; outline: none;
  padding: 18px 24px;
  color: var(--white); font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
}
.tracking-input::placeholder { color: rgba(255,255,255,0.4); }
.tracking-btn {
  background: linear-gradient(135deg, var(--accent), #e8901f);
  color: var(--dark);
  padding: 18px 28px;
  font-weight: 700; font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
}
.tracking-btn:hover { background: linear-gradient(135deg, #ffc24f, var(--accent)); }

/* --- PROCESS SECTION --- */
.process { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--accent);
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px var(--light);
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--accent);
  color: var(--dark);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(245,166,35,0.15);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { color: var(--gray); font-size: 0.9rem; }

/* --- BLOG SECTION --- */
.blog { background: var(--light); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.blog-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-img-wrap { overflow: hidden; }
.blog-body { padding: 28px; }
.blog-cat {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.blog-title { font-size: 1.15rem; margin-bottom: 12px; transition: var(--transition); }
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.blog-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--gray);
}
.blog-read-more {
  color: var(--accent); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* --- BLOG MODAL --- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: 24px;
  max-width: 780px; width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-header-img { width: 100%; height: 300px; object-fit: cover; }
.modal-content-area { padding: 40px; }
.modal-close {
  position: sticky; top: 16px; float: right; margin-right: -10px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition); z-index: 5;
}
.modal-close:hover { background: var(--accent); color: var(--dark); transform: rotate(90deg); }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #e8901f 50%, #cc7a1a 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '🚢';
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  font-size: 18rem; opacity: 0.07;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px;
}
.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark); margin-bottom: 8px;
}
.cta-text p { color: rgba(10,22,40,0.7); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: var(--white);
  padding: 16px 34px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
}
.btn-cta-primary:hover { background: var(--primary); transform: translateY(-3px); color: var(--white); }
.btn-cta-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  padding: 16px 34px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-cta-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); color: var(--white); }

/* --- FOOTER --- */
footer {
  background: var(--dark);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.footer-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), #e8901f);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.footer-logo-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem; color: var(--white); letter-spacing: 2px;
}
.footer-logo-text span { color: var(--accent); }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.8; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); transform: translateY(-3px); }
.footer-col h4 {
  color: var(--white); font-size: 1rem;
  margin-bottom: 24px; letter-spacing: 0.5px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--accent);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 18px;
}
.footer-contact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(245,166,35,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
}
.footer-contact-text { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.85rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
@keyframes whatsappPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 30px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}
.back-to-top {
  position: fixed; bottom: 30px; left: 30px;
  width: 48px; height: 48px;
  background: var(--primary);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  z-index: 999;
  transition: var(--transition);
  opacity: 0; visibility: hidden;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent); color: var(--dark); transform: translateY(-3px); }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  min-height: 420px;
  background: var(--dark);
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 120px 0 60px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.25);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(11,42,74,0.6));
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb a { color: var(--accent); font-size: 0.85rem; }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); letter-spacing: 2px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-main { height: 400px; }
  .tracking-box { flex-direction: column; padding: 40px; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { flex-direction: column; gap: 30px; position: relative; padding-left: 30px; }
  .process-steps::before { display: block; left: 15px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(to bottom, var(--accent), var(--accent2)); }
  .process-step { display: flex; gap: 20px; align-items: flex-start; text-align: left; }
  .step-number { margin: 0; flex-shrink: 0; width: 50px; height: 50px; font-size: 1.2rem; }
  .process-step p { text-align: left; margin: 0; }
  .hero-stats { display: none; }
  .hero-badge { display: none; }
  .hero-buttons .btn-secondary-main { display: none; }
  .hero { min-height: 480px; height: 70vh; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .hero-subtitle { font-size: 0.85rem; }
  .hero-content { padding-top: 60px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons .btn-primary-main { width: 100%; justify-content: center; }
}

/* Unified Policy Modal Styles */
.policy-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.policy-modal-overlay.active {
  display: flex;
}

.policy-modal-box {
  background: #fff;
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.policy-modal-header {
  background: var(--primary);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.policy-modal-header h2 {
  color: #fff;
  margin: 0;
}

.policy-modal-body {
  padding: 32px;
  overflow-y: auto;
  line-height: 1.8;
  color: #444;
}

/* =============================================
   BLOG MODAL STYLES - ENHANCED VERSION
   Add this to your style.css file
   ============================================= */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.modal-box {
  background: #ffffff;
  border-radius: 32px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.96) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.95, 0.4, 1.05);
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

/* Custom Scrollbar */
.modal-box::-webkit-scrollbar {
  width: 8px;
}

.modal-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-box::-webkit-scrollbar-thumb {
  background: var(--accent, #f5a623);
  border-radius: 10px;
}

.modal-box::-webkit-scrollbar-thumb:hover {
  background: #e8901f;
}

/* Modal Close Button */
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
  background: var(--accent, #f5a623);
  transform: rotate(90deg) scale(1.05);
  color: #1a2a3a;
}

/* Modal Header Image */
.modal-header-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 32px 32px 0 0;
}

/* Modal Content Area */
.modal-content-area {
  padding: 32px 40px 44px;
}

/* Category Badge */
.modal-cat {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary, #1a3c6e), #0f2b4f);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Modal Title */
.modal-title {
  font-family: 'Rajdhani', 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary, #1a3c6e);
  margin-bottom: 16px;
}

/* Modal Meta Info (Date & Read Time) */
.modal-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 2px solid #f0f2f5;
  color: #6b7280;
  font-size: 0.85rem;
}

.modal-meta i {
  margin-right: 6px;
  color: var(--accent, #f5a623);
}

.modal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Modal Body Content - Rich Text Styling */
.modal-body {
  color: #374151;
  line-height: 1.85;
  font-size: 1rem;
}

.modal-body h3,
.modal-body h4 {
  color: var(--primary, #1a3c6e);
  margin-top: 28px;
  margin-bottom: 14px;
  font-weight: 700;
}

.modal-body h4 {
  font-size: 1.2rem;
  padding-left: 14px;
  border-left: 4px solid var(--accent, #f5a623);
}

.modal-body h3 {
  font-size: 1.35rem;
}

.modal-body p {
  margin-bottom: 20px;
  color: #4b5563;
}

.modal-body ul,
.modal-body ol {
  margin: 20px 0;
  padding-left: 28px;
}

.modal-body li {
  margin-bottom: 10px;
  color: #4b5563;
}

.modal-body li::marker {
  color: var(--accent, #f5a623);
}

.modal-body strong {
  color: var(--primary, #1a3c6e);
  font-weight: 700;
}

.modal-body a {
  color: var(--accent, #f5a623);
  text-decoration: none;
  border-bottom: 1px dashed var(--accent, #f5a623);
  transition: all 0.2s ease;
}

.modal-body a:hover {
  color: #e8901f;
  border-bottom-style: solid;
}

/* Blockquote Styling */
.modal-body blockquote {
  margin: 28px 0;
  padding: 20px 28px;
  background: linear-gradient(135deg, #fef9e8, #fff5e0);
  border-left: 5px solid var(--accent, #f5a623);
  border-radius: 16px;
  font-style: italic;
  color: #5a4a2a;
  font-size: 0.95rem;
}

/* Image inside modal */
.modal-body img {
  max-width: 100%;
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Horizontal Rule */
.modal-body hr {
  margin: 32px 0;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

/* Table Styling */
.modal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.85rem;
  border-radius: 12px;
  overflow: hidden;
}

.modal-body th,
.modal-body td {
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  text-align: left;
}

.modal-body th {
  background: var(--primary, #1a3c6e);
  color: white;
  font-weight: 600;
}

.modal-body tr:nth-child(even) {
  background: #f9fafb;
}

/* Code Block Styling */
.modal-body pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 18px 24px;
  border-radius: 14px;
  overflow-x: auto;
  font-size: 0.8rem;
  margin: 24px 0;
  font-family: 'Courier New', 'Fira Code', monospace;
}

.modal-body code {
  font-family: 'Courier New', 'Fira Code', monospace;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.85em;
  color: #e83e8c;
}

.modal-body pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

/* Share Section */
.modal-share {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.modal-share-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-share-label i {
  color: var(--accent, #f5a623);
}

.modal-share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: #f1f5f9;
  color: #475569;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.modal-share-btn:hover {
  background: var(--accent, #f5a623);
  color: white;
  transform: translateY(-2px);
}

.modal-share-btn i {
  font-size: 0.9rem;
}

/* Related Posts Section */
.modal-related {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #eef2f6;
}

.modal-related h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary, #1a3c6e);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-related h4 i {
  color: var(--accent, #f5a623);
}

.modal-related-posts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.modal-related-post {
  flex: 1;
  min-width: 150px;
  background: #f8fafc;
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border: 1px solid #eef2f6;
}

.modal-related-post:hover {
  background: #fef9e8;
  transform: translateY(-3px);
  border-color: var(--accent, #f5a623);
}

.modal-related-post img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.modal-related-post span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary, #1a3c6e);
  display: block;
  line-height: 1.4;
}

/* Loading State */
.modal-body.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.modal-body.loading::after {
  content: '';
  width: 44px;
  height: 44px;
  border: 3px solid #e2e8f0;
  border-top-color: var(--accent, #f5a623);
  border-radius: 50%;
  animation: modalSpinner 0.8s linear infinite;
}

@keyframes modalSpinner {
  to {
    transform: rotate(360deg);
  }
}

/* =============================================
   RESPONSIVE STYLES FOR BLOG MODAL
   ============================================= */

@media (max-width: 768px) {
  .modal-overlay {
    padding: 12px;
  }

  .modal-box {
    max-width: 95%;
    border-radius: 24px;
  }

  .modal-header-img {
    height: 200px;
  }

  .modal-content-area {
    padding: 24px 24px 32px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-body {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .modal-body h4 {
    font-size: 1.05rem;
  }

  .modal-body h3 {
    font-size: 1.2rem;
  }

  .modal-close {
    top: 12px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .modal-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-related-post {
    min-width: 120px;
  }

  .modal-body blockquote {
    padding: 14px 20px;
    font-size: 0.85rem;
  }

  .modal-body table {
    font-size: 0.75rem;
  }

  .modal-body th,
  .modal-body td {
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .modal-header-img {
    height: 160px;
  }

  .modal-content-area {
    padding: 20px 18px 24px;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-cat {
    font-size: 0.6rem;
    padding: 4px 12px;
  }

  .modal-meta {
    font-size: 0.7rem;
    gap: 12px;
  }

  .modal-share-buttons {
    gap: 8px;
  }

  .modal-share-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .modal-related-post {
    min-width: 100px;
  }

  .modal-related-post span {
    font-size: 0.7rem;
  }

  .modal-body pre {
    padding: 12px 16px;
    font-size: 0.7rem;
  }
}

/* Print Styles for Blog Modal */
@media print {
  .modal-overlay {
    position: relative;
    background: white;
    backdrop-filter: none;
    padding: 0;
  }

  .modal-box {
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .modal-close,
  .modal-share,
  .modal-related {
    display: none;
  }

  .modal-header-img {
    height: auto;
    max-height: 200px;
  }
}

/* Animation for modal content */
@keyframes modalContentFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content-area,
.modal-header-img {
  animation: modalContentFade 0.5s ease forwards;
}