/* ==========================================
   Shiv Advertising - Premium Website Styles
   ========================================== */

:root {
  --navy: #0f1f35;
  --navy-dark: #0a1628;
  --red: #e42d35;
  --red-dark: #c41e26;
  --red-light: #ff4750;
  --blue: #278fb8;
  --text: #1a2b42;
  --text-secondary: #556677;
  --muted: #8899aa;
  --bg: #f5f7f9;
  --bg-warm: #faf9f7;
  --white: #ffffff;
  --line: #e4e9ed;
  --shadow-sm: 0 2px 8px rgba(15,31,53,0.06);
  --shadow-md: 0 8px 30px rgba(15,31,53,0.08);
  --shadow-lg: 0 16px 50px rgba(15,31,53,0.12);
  --shadow-xl: 0 25px 60px rgba(15,31,53,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; background: var(--white); }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ==========================================
   Preloader
   ========================================== */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader { text-align: center; }
.loader span { display: block; color: #fff; font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 3px; margin-top: 16px; }
.loader-bar { width: 60px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 4px; margin: 0 auto; overflow: hidden; }
.loader-bar::after { content: ''; display: block; width: 100%; height: 100%; background: var(--red); border-radius: 4px; animation: loaderSlide 0.8s ease-in-out infinite; }
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* ==========================================
   Top Bar
   ========================================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a {
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: var(--red-light); }
.topbar svg { opacity: 0.6; flex-shrink: 0; }

/* ==========================================
   Header & Navbar
   ========================================== */
.header {
  height: 80px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  height: 72px;
}
.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.navbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar nav > a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar nav > a:hover { color: var(--red); background: rgba(228,45,53,0.05); }
.navbar nav > a.active { color: var(--red); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: rgba(228,45,53,0.06);
  color: var(--red);
}
.nav-btn {
  background: var(--red) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
}
.nav-btn:hover { background: var(--red-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(228,45,53,0.3); }
.nav-btn svg { margin-top: -1px; }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  left: 7px;
  transition: var(--transition);
}
.menu-toggle span:nth-child(1) { top: 11px; }
.menu-toggle span:nth-child(2) { top: 17px; }
.menu-toggle span:nth-child(3) { top: 23px; }
.menu-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(228,45,53,0.35); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,31,53,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  min-height: 560px;
  background: linear-gradient(135deg, #fff 0%, #f0f4f8 50%, #e8edf2 100%);
  overflow: hidden;
  position: relative;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
}
.shape-1 { width: 500px; height: 500px; background: var(--red); top: -200px; right: -100px; animation: float 20s ease-in-out infinite; }
.shape-2 { width: 300px; height: 300px; background: var(--blue); bottom: -100px; left: -50px; animation: float 15s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; background: var(--red); bottom: 50%; left: 40%; animation: float 18s ease-in-out infinite 3s; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(228,45,53,0.08);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(228,45,53,0.15);
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 8px;
}
.hero h1 strong { font-size: 58px; font-weight: 800; }
.hero h1 span { color: var(--red); position: relative; }
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(228,45,53,0.12);
  border-radius: 4px;
  z-index: -1;
}
.hero-line { width: 50px; height: 3px; background: var(--red); margin: 16px 0; border-radius: 3px; }
.hero p {
  max-width: 500px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-avatars { display: flex; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #fff;
  margin-right: -8px;
  font-family: 'Poppins', sans-serif;
}
.avatar:last-child { background: var(--red); margin-right: 0; }
.hero-trust span { font-size: 13px; color: var(--text-secondary); font-weight: 500; }

.hero-image { position: relative; }
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: slideUp 0.8s ease 1s both;
}
.float-icon { font-size: 28px; }
.hero-float-card strong { font-size: 13px; color: var(--navy); }
.hero-float-card small { font-size: 11px; color: var(--text-secondary); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================
   Section Common
   ========================================== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 6px 0;
}
.section-header h2 span { color: var(--red); }
.section-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.title-line {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 3px;
  position: relative;
}
.title-line::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 3px;
  background: rgba(228,45,53,0.3);
  border-radius: 3px;
  left: -20px;
}

/* ==========================================
   Services
   ========================================== */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px 24px;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(228,45,53,0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(228,45,53,0.08);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-icon svg { width: 24px; height: 24px; color: var(--red); }
.service-card:hover .service-icon { background: var(--red); }
.service-card:hover .service-icon svg { color: #fff; }
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.3;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.service-tags span {
  padding: 3px 10px;
  background: var(--bg);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
}
.service-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 8px; }
.service-card-wide { grid-column: span 2; }
@media (min-width: 901px) {
  .service-card:nth-child(-n+3) { grid-column: span 1; }
  .service-card-wide { grid-column: span 1; }
}
@media (min-width: 901px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card-wide { grid-column: span 1; }
}

/* ==========================================
   About
   ========================================== */
.about { background: var(--bg-warm); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-exp-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 30px rgba(228,45,53,0.4);
}
.about-exp-badge strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.about-exp-badge span { font-size: 11px; font-weight: 600; opacity: 0.9; }
.about-content .section-tag { text-align: left; display: block; }
.about-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin: 6px 0 16px;
}
.about-content h2 span { color: var(--red); }
.about-content > p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: rgba(228,45,53,0.2);
  box-shadow: var(--shadow-sm);
}
.feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; font-size: 13.5px; color: var(--navy); margin-bottom: 2px; }
.feature-item small { font-size: 12px; color: var(--muted); }

/* ==========================================
   Stats
   ========================================== */
.stats {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(228,45,53,0.06);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 36px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,0.03); }
.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(228,45,53,0.15);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 24px; height: 24px; color: var(--red); }
.stat-info strong {
  display: inline;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-suffix {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================
   Gallery
   ========================================== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,53,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 30px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 60px;
  color: rgba(228,45,53,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(228,45,53,0.1);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--muted);
}

/* ==========================================
   CTA Banner
   ========================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(228,45,53,0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(39,143,184,0.06);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.6); font-size: 15px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ==========================================
   Contact
   ========================================== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}
.contact-form-wrapper {
  background: var(--bg);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.contact-form-wrapper h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(228,45,53,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%238899aa'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 12px;
}
.form-success h3 { font-family: 'Poppins', sans-serif; font-size: 22px; color: var(--navy); }
.form-success p { color: var(--text-secondary); font-size: 14px; }

/* Contact Info */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 42px;
  height: 42px;
  background: rgba(228,45,53,0.15);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; color: var(--red); }
.info-item strong {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 4px;
}
.info-item p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.info-item a { color: rgba(255,255,255,0.6); }
.info-item a:hover { color: var(--red-light); }

/* ==========================================
   Footer
   ========================================== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 50px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand > p { font-size: 13px; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.social-links a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }
.social-links a:hover { background: var(--red); border-color: var(--red); }
.social-links a:hover svg { fill: #fff; }

.footer-grid h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links ul li,
.footer-services ul li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-links a:hover { color: var(--red-light); padding-left: 4px; }
.footer-services li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }
.footer-contact-item p { font-size: 13px; line-height: 1.6; margin: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--red-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; margin: 0; color: rgba(255,255,255,0.4); }

/* ==========================================
   WhatsApp Button
   ========================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(20px);
  transition: var(--transition);
}
.whatsapp-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--white);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ==========================================
   Back to Top
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red); transform: translateY(-2px); }
.back-to-top svg { width: 22px; height: 22px; }

/* ==========================================
   Scroll Animations
   ========================================== */
[data-anim] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-anim="fade-up"] { transform: translateY(30px); }
[data-anim="fade-left"] { transform: translateX(30px); }
[data-anim="fade-right"] { transform: translateX(-30px); }
[data-anim].animated { opacity: 1; transform: translate(0,0); }

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .topbar-left { display: none; }
  .menu-toggle { display: block; }
  .navbar nav {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 30px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
  }
  .navbar nav.open { display: flex; }
  .navbar nav > a {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
  }
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: var(--bg);
    border-radius: var(--radius-sm);
    margin-top: 4px;
    margin-bottom: 4px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-btn { margin-top: 12px; justify-content: center; width: 100%; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; min-height: auto; padding: 40px 0; }
  .hero h1 { font-size: 38px; }
  .hero h1 strong { font-size: 44px; }
  .hero p { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .topbar-inner { justify-content: center; }
  .topbar-right { gap: 12px; font-size: 11px; }
  .brand img { height: 42px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: 30px; }
  .hero h1 strong { font-size: 36px; }
  .section { padding: 56px 0; }
  .section-header h2 { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { padding: 24px 20px; }
  .cta-text h2 { font-size: 24px; }
  .contact-form-wrapper { padding: 24px; }
  .contact-info-card { padding: 24px; }
  .back-to-top { right: 20px; bottom: 100px; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ==========================================
   Nav dropdown toggle for mobile
   ========================================== */
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown > a svg { transition: transform 0.3s ease; }
.nav-dropdown.open > a svg { transform: rotate(180deg); }
