/* ===========================
   GANGA BUILD NOW - STYLES
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #e8501a;
  --primary-dark: #c43d0f;
  --navy: #131921;
  --navy-mid: #1f2d3d;
  --gold: #f0a500;
  --white: #ffffff;
  --off-white: #f9f6f2;
  --light-gray: #f3f3f3;
  --mid-gray: #dddddd;
  --text-dark: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.navbar-logo .logo-icon.logo-image,
.footer-brand .logo-icon.logo-image {
  overflow: hidden;
  background: transparent;
  padding: 0;
}

.navbar-logo .logo-icon.logo-image img,
.footer-brand .logo-icon.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.navbar-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.navbar-logo .logo-text span:first-child {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.navbar-logo .logo-text span:last-child {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-search {
  flex: 1;
  max-width: 560px;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
}

.navbar-search input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}

.navbar-search button {
  background: var(--gold);
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 18px;
  transition: background var(--transition);
}

.navbar-search button:hover { background: #d4920a; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.navbar-actions a {
  color: var(--white);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  cursor: pointer;
}

.navbar-actions a:hover { color: var(--gold); }

.navbar-bottom {
  background: var(--navy-mid);
  padding: 0 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links li a {
  display: block;
  padding: 10px 14px;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.nav-links li a:hover, .nav-links li a.active {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  font-size: 22px;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 520px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.slide-content {
  position: relative;
  padding: 0 80px;
  max-width: 600px;
  animation: slideIn 0.7s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-content .badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.slide-content h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.slide-content p {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(232,80,26,0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,80,26,0.5);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--navy);
  z-index: 10;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover { background: white; box-shadow: var(--shadow-md); }

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.carousel-dot.active { background: white; width: 28px; border-radius: 5px; }

/* ===== CATEGORY SECTION ===== */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-mid);
  font-size: 16px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

.categories-section {
  padding: 60px 40px;
  background: var(--light-gray);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img { transform: scale(1.05); }

.category-card-body {
  padding: 24px;
}

.category-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.category-card-body p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.category-card-body .card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.category-card:hover .card-link { gap: 10px; }

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--navy);
  padding: 30px 40px;
}

.features-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.feature-item .icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-item .text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.feature-item .text span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* ===== WHY US SECTION ===== */
.why-us {
  padding: 70px 40px;
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition: all var(--transition);
}

.why-card:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card:hover h4, .why-card:hover p { color: white; }

.why-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  transition: background var(--transition);
}

.why-card:hover .icon-wrap { background: rgba(255,255,255,0.2); }

.why-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.why-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  transition: color var(--transition);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 70px 40px;
  background: var(--off-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 80px;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-author .info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-author .info span {
  font-size: 12px;
  color: var(--text-light);
}

.stars { color: var(--gold); margin-bottom: 12px; font-size: 14px; }

/* ===== PAGE BANNER ===== */
.page-banner {
  height: 380px;
  position: relative;
  overflow: hidden;
}

.page-banner-carousel {
  height: 100%;
}

.page-banner h2 {
  position: absolute;
  bottom: 40px;
  left: 60px;
  color: white;
  font-size: 42px;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--off-white));
  z-index: 5;
}

/* ===== FORM SECTION ===== */
.form-section {
  padding: 60px 40px;
  background: var(--off-white);
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.form-header {
  background: var(--navy);
  padding: 28px 40px;
}

.form-header h2 {
  color: white;
  font-size: 24px;
  letter-spacing: 1px;
}

.form-header p { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 6px; }

.form-body { padding: 40px; }

.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--primary);
  margin: 30px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.form-section-title:first-child { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--mid-gray);
  border-radius: 6px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,80,26,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-group, .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-group label, .radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-mid);
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
  accent-color: var(--primary);
  width: 16px; height: 16px;
  padding: 0;
  border: none;
  box-shadow: none;
}

.form-footer {
  padding: 24px 40px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.form-footer p { color: var(--text-mid); font-size: 13px; }

.form-submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(232,80,26,0.35);
}

.form-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== MATERIALS PAGE ===== */
.materials-section {
  padding: 60px 40px;
  background: var(--light-gray);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.material-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.material-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.material-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.material-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #bbb;
}

.material-card-body {
  padding: 20px;
}

.material-card-body .brand {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.material-card-body h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.material-card-body .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.material-card-body .price span {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

.material-card-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  background: #25D366;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.btn-whatsapp:hover { background: #1da851; }

/* ===== PACKAGES / CONSTRUCTION ===== */
.packages-section {
  padding: 70px 40px;
  background: var(--off-white);
}

.packages-intro {
  text-align: center;
  margin-bottom: 50px;
}

.packages-intro h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.packages-intro p { color: var(--text-mid); font-size: 16px; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: white;
}

.package-header {
  background: var(--primary);
  padding: 20px 24px;
  cursor: default;
}

.package-header h3 {
  color: white;
  font-size: 17px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.package-header .incl {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

.accordion-item {
  border-bottom: 1px solid var(--mid-gray);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover { background: var(--light-gray); }

.accordion-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
  line-height: 1;
  flex-shrink: 0;
}

.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-content.open {
  max-height: 600px;
}

.accordion-content-inner {
  padding: 0 24px 20px;
}

.accordion-content-inner ul {
  list-style: none;
  padding: 0;
}

.accordion-content-inner ul li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.accordion-content-inner ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ===== QUERY FORM ===== */
.query-section {
  padding: 60px 40px;
  background: var(--navy);
}

.query-section .section-title h2,
.query-section .section-title p { color: white; }

.query-section .section-divider { background: var(--gold); }

.query-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
}

.query-form .form-group label { color: rgba(255,255,255,0.8); }

.query-form .form-group input,
.query-form .form-group textarea {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.query-form .form-group input::placeholder,
.query-form .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }

.query-form .form-group input:focus,
.query-form .form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.15);
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 { font-size: 36px; margin-bottom: 20px; }

.about-text p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  background: linear-gradient(135deg, #1a3a2a, #2d5a3d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.stat-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--primary);
  font-weight: 700;
}

.stat-card p { color: var(--text-mid); font-size: 14px; margin-top: 4px; }

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 40px;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 { font-size: 32px; margin-bottom: 20px; }
.contact-info p { color: var(--text-mid); line-height: 1.8; margin-bottom: 30px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail .text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-detail .text span {
  font-size: 14px;
  color: var(--text-mid);
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 60px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .logo-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}

.footer-brand .logo-text span {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}

.footer-brand p { font-size: 14px; line-height: 1.7; }

.footer-col h4 {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background var(--transition);
}

.footer-social a:hover { background: var(--primary); color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  font-size: 28px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* ===== FLOATING CALL BUTTON ===== */
.float-call-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: linear-gradient(135deg, #e8501a 0%, #c43d0f 100%);
  color: #fff !important;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px -4px rgba(232,80,26,0.6);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: callPop .6s cubic-bezier(.22,1,.36,1) 1s both, callPulse 3s ease-in-out 2s infinite;
}

.float-call-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(232,80,26,0.8);
  color: #fff !important;
}

@keyframes callPop {
  from { opacity: 0; transform: translateY(20px) scale(.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 8px 24px -4px rgba(232,80,26,0.6); }
  50% { box-shadow: 0 12px 36px -4px rgba(232,80,26,0.8), 0 0 0 8px rgba(232,80,26,0.12); }
}

@media (max-width: 768px) {
  .float-call-btn {
    bottom: 96px;
    right: 20px;
    padding: 11px 16px;
    font-size: 13px;
  }
}


/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 90px;
  right: 20px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 340px;
  box-shadow: var(--shadow-lg);
}

.toast.show { transform: translateX(0); }
.toast.success { background: #16a34a; color: white; }
.toast.error { background: #dc2626; color: white; }
.toast.info { background: var(--navy); color: white; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* ===== ADMIN PANEL ===== */
.admin-body {
  display: flex;
  min-height: 100vh;
  background: #f0f2f5;
  font-family: 'DM Sans', sans-serif;
}

.admin-sidebar {
  width: 260px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.admin-sidebar-logo {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar-logo h2 {
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-sidebar-logo h2 img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.admin-sidebar-logo span {
  color: var(--gold);
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
}

.admin-nav {
  padding: 20px 0;
  flex: 1;
}

.admin-nav-label {
  padding: 10px 24px 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all var(--transition);
}

.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.1);
  color: white;
  border-left: 3px solid var(--primary);
}

.admin-nav a .icon { font-size: 18px; width: 22px; }

.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: white;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar h1 { font-size: 20px; font-family: 'DM Sans', sans-serif; font-weight: 600; }

.admin-user {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}

.admin-user .avatar {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
}

.admin-content {
  padding: 32px;
  flex: 1;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat-box {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-box .stat-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}

.stat-box .stat-icon.orange { background: rgba(232,80,26,0.12); }
.stat-box .stat-icon.blue { background: rgba(37,99,235,0.12); }
.stat-box .stat-icon.green { background: rgba(22,163,74,0.12); }
.stat-box .stat-icon.purple { background: rgba(124,58,237,0.12); }

.stat-box .stat-info .number {
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}

.stat-box .stat-info .label {
  font-size: 13px;
  color: var(--text-light);
}

.admin-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.admin-card-header h3 {
  font-size: 17px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.admin-table th {
  background: var(--light-gray);
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-mid);
}

.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--mid-gray);
  color: var(--text-dark);
}

.admin-table tr:hover td { background: var(--light-gray); }

.badge-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.badge-status.interested { background: #dcfce7; color: #16a34a; }
.badge-status.thinking { background: #fef3c7; color: #d97706; }
.badge-status.not-interested { background: #fee2e2; color: #dc2626; }
.badge-status.highly { background: #dbeafe; color: #2563eb; }

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-sm.danger { background: #fee2e2; color: #dc2626; }
.btn-sm.danger:hover { background: #dc2626; color: white; }
.btn-sm.primary { background: rgba(232,80,26,0.12); color: var(--primary); }
.btn-sm.primary:hover { background: var(--primary); color: white; }

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #2d4a6e 100%);
}

.login-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  width: 420px;
  box-shadow: var(--shadow-lg);
}

.login-card .login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-card .login-logo .icon {
  width: 64px; height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 14px;
}

.login-card .login-logo .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.login-card .login-logo h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.login-card .login-logo p { color: var(--text-mid); font-size: 14px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 90%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform var(--transition);
}

.modal-overlay.open .modal { transform: scale(1); }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h3 { font-size: 20px; }

.modal-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-mid);
  transition: color var(--transition);
}

.modal-close:hover { color: var(--text-dark); }

/* ===== LOADING SPINNER ===== */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}

@media (max-width: 768px) {
  .navbar-top { flex-wrap: wrap; padding: 10px 16px; }
  .navbar-search { order: 3; width: 100%; max-width: 100%; }
  .hamburger { display: block; }
  .navbar-bottom { display: none; }
  .navbar-bottom.open { display: block; }
  .nav-links { flex-direction: column; gap: 0; }
  .hero-carousel { height: 400px; }
  .slide-content { padding: 0 40px; }
  .slide-content h1 { font-size: 26px; }
  .categories-section { padding: 40px 20px; }
  .categories-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .admin-body { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .admin-main { margin-left: 0; }
  .stats-cards { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .packages-section { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .stats-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-carousel { height: 320px; }
  .slide-content { padding: 0 24px; }
  .form-body { padding: 24px 20px; }
  .form-header { padding: 20px; }
}
