/* ==========================================================================
   KAKATIYA PROFESSIONAL CLEANING SERVICES — MAIN STYLESHEET
   Matching UI reference (K cleaning .png) & Brand Guidelines
   ========================================================================== */

/* --- CSS Variables / Design System --- */
:root {
  --primary: #3b1259;
  --primary-gradient: linear-gradient(135deg, #3b1259 0%, #5c24b5 100%);
  --primary-dark: #230c49;
  --primary-light: #f4eeff;
  --primary-badge: #5c24b5;
  --primary-badge-bg: rgba(92, 36, 181, 0.08);
  
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1ea952;
  --call-blue: #2563eb;
  
  --text-dark: #1b1326;
  --text-muted: #5e5873;
  --text-light: #9088a6;
  --bg-white: #ffffff;
  --bg-soft: #f9f7fc;
  --bg-alt: #f3eeff;
  
  --border-color: #eae5f5;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;
  
  --shadow-sm: 0 4px 12px rgba(35, 12, 73, 0.04);
  --shadow-md: 0 10px 30px rgba(35, 12, 73, 0.08);
  --shadow-lg: 0 20px 45px rgba(35, 12, 73, 0.14);
  --shadow-hover: 0 18px 40px rgba(59, 18, 89, 0.18);
  
  --font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-fast: all 0.2s ease-in-out;
  --transition-normal: all 0.3s ease-in-out;
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-badge);
  background: var(--primary-badge-bg);
  padding: 6px 16px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.text-center {
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- TOP BAR (Matching UI Reference) --- */
.top-bar {
  background-color: var(--primary-dark);
  color: #ffffff;
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 500;
  transition: var(--transition-fast);
}

.top-bar-item:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.top-bar-item i, .top-bar-item svg {
  font-size: 1rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- MAIN HEADER / STICKY NAV --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
}

.site-header.is-sticky {
  box-shadow: 0 5px 25px rgba(35, 12, 73, 0.12);
  padding: 4px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-normal);
}

.site-header.is-sticky .header-container {
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.site-header.is-sticky .site-logo img {
  height: 48px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(59, 18, 89, 0.25);
}

.btn-primary:hover {
  background-color: #2b0938;
  box-shadow: 0 10px 25px rgba(59, 18, 89, 0.35);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 560px;
  background: #19092c;
  color: #ffffff;
  padding: 90px 0 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video-bg, .hero-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(27, 8, 48, 0.92) 0%, rgba(35, 12, 73, 0.75) 50%, rgba(27, 8, 48, 0.5) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(192, 132, 252, 0.4);
  backdrop-filter: blur(6px);
  color: #e9d5ff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #e2d9f3;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- OVERLAPPING STATS CARD (UI Reference) --- */
.stats-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -65px;
  margin-bottom: 60px;
}

.stats-card {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 28px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid rgba(59, 18, 89, 0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 15px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1fr;
  border-right: 1px solid var(--border-color);
}

.stat-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary-badge);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- OUR SERVICES SECTION --- */
.services-section {
  padding: 60px 0 80px 0;
  background-color: var(--bg-white);
}

.category-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  background-color: var(--bg-soft);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-pill);
  transition: var(--transition-normal);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(59, 18, 89, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- NON-PICTORIAL SERVICE CARD & SCROLL ANIMATIONS --- */
.service-card.non-pictorial-card {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 28px rgba(35, 12, 73, 0.06);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card.non-pictorial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(35, 12, 73, 0.14);
  border-color: rgba(92, 36, 181, 0.35);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon-box {
  transform: scale(1.08) rotate(-3deg);
}

/* Category Gradient Badges */
.icon-gradient-residential {
  background: linear-gradient(135deg, #5c24b5 0%, #230c49 100%);
}

.icon-gradient-commercial {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.icon-gradient-healthcare {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.icon-gradient-specialized {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

.service-meta-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-badge);
  background: rgba(92, 36, 181, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-category-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.tag-residential { color: #5c24b5; }
.tag-commercial { color: #10b981; }
.tag-healthcare { color: #0284c7; }
.tag-specialized { color: #f59e0b; }

.service-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-highlights-list {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(0,0,0,0.03);
}

.highlight-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-item i {
  color: #10b981;
  font-size: 0.85rem;
}

.service-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.btn-details {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-badge);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.service-card:hover .btn-details {
  gap: 10px;
}

.btn-quick-wa-chip {
  background: rgba(37, 211, 102, 0.12);
  color: #128C7E;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.btn-quick-wa-chip:hover {
  background: #25D366;
  color: #ffffff;
}

/* --- SCROLL REVEAL ANIMATIONS (One By One Staggered Reveal) --- */
.service-card.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease;
}

.service-card.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.view-all-services-box {
  margin-top: 45px;
  text-align: center;
}

/* --- WHY CHOOSE US SECTION (UI Reference) --- */
.why-us-section {
  background-color: var(--bg-alt);
  padding: 80px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.why-us-card {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* --- CTA PROMO BANNERS BAR (UI Reference) --- */
.promo-banners-bar {
  padding: 40px 0 60px 0;
  background-color: var(--bg-white);
}

.promo-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.promo-banner {
  border-radius: var(--border-radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.promo-banner-call {
  background: linear-gradient(135deg, #3b1259 0%, #4a154b 100%);
}

.promo-banner-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
}

.promo-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.promo-banner-icon {
  font-size: 2.2rem;
}

.promo-banner-title {
  font-size: 1.2rem;
  font-weight: 800;
}

.promo-banner-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0.95;
}

/* --- ABOUT US SECTION --- */
.about-section {
  padding: 90px 0;
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(59, 18, 89, 0.92);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 20px 28px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #c084fc;
}

.about-badge-text {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px 0;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-list-item i {
  color: var(--primary-badge);
  font-size: 1.1rem;
}

/* --- BEFORE & AFTER SECTION --- */
.before-after-section {
  padding: 90px 0;
  background-color: var(--bg-soft);
}

.ba-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.ba-item {
  display: none;
}

.ba-item.active {
  display: block;
}

.ba-comparison {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.ba-img-before, .ba-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-img-before img, .ba-img-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-img-after {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid #ffffff;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ffffff;
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 3px solid #ffffff;
}

.ba-label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  z-index: 5;
}

.ba-label-before {
  right: 20px;
}

.ba-label-after {
  left: 20px;
}

.ba-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ba-nav-btn {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-pill);
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.ba-nav-btn.active, .ba-nav-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* --- WORKS HERO BANNER --- */
.works-hero-section {
  padding: 100px 0 70px 0;
  background: linear-gradient(135deg, #1b0830 0%, #2f1254 50%, #157956 100%);
  position: relative;
  overflow: hidden;
}

.works-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(37,211,102,0.12) 0%, rgba(0,0,0,0) 65%);
  pointer-events: none;
}

/* --- GALLERY SECTION & CARDS --- */
.gallery-section {
  padding: 90px 0;
  background-color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 290px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  background: #0d041a;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.badge-video {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
}

.badge-photo {
  background: rgba(18, 6, 38, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
}

.gallery-play-btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  pointer-events: none;
}

.play-icon-circle {
  width: 58px;
  height: 58px;
  background: rgba(37, 211, 102, 0.92);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.gallery-bottom-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 14px 12px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(18, 6, 38, 0.92) 100%);
  z-index: 4;
  transition: opacity 0.3s ease;
}

.gallery-category-name {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #25D366;
  margin-bottom: 3px;
}

.gallery-card-title {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 8, 48, 0.82);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  color: #ffffff;
  padding: 20px;
  text-align: center;
  z-index: 7;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 52px;
  height: 52px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.gallery-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-click-hint {
  font-size: 0.8rem;
  opacity: 0.85;
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

/* --- REVIEWS / TESTIMONIALS --- */
.reviews-section {
  padding: 90px 0;
  background-color: var(--bg-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- SERVICE AREA SECTION --- */
.area-section {
  padding: 90px 0;
  background-color: var(--bg-white);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  background: var(--bg-soft);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.area-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-card i {
  font-size: 2rem;
  color: var(--primary-badge);
  margin-bottom: 12px;
}

.area-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.area-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- BOOKING / ENQUIRY FORM SECTION --- */
.booking-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #230c49 0%, #3b1259 100%);
  color: #ffffff;
}

.booking-container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
  align-items: center;
}

.booking-info h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.booking-info p {
  color: #d8ceeb;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 1rem;
}

.perk-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whatsapp-green);
}

.booking-form-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-soft);
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(92, 36, 181, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

/* --- BLOG SECTION --- */
.blog-section {
  padding: 90px 0;
  background-color: var(--bg-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.blog-category {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--border-radius-pill);
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.blog-read-more {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- CONTACT SECTION --- */
.contact-section {
  padding: 90px 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--bg-soft);
  border-radius: var(--border-radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.contact-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-badge);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px auto;
}

.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-card p, .contact-card a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--primary);
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 70px 0 30px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2fr 3fr 3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
}

.footer-about {
  color: #bfaedc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--whatsapp-green);
  transform: translateY(-3px);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: var(--primary-badge);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bfaedc;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #bfaedc;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--primary-badge);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9d8ab8;
  font-size: 0.85rem;
}

/* --- FLOATING ACTION BUTTONS --- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition-bounce);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background-color: var(--whatsapp-green);
}

.floating-call {
  background-color: var(--primary);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .about-grid, .booking-container {
    grid-template-columns: 1fr;
  }
  .reviews-grid, .blog-grid, .contact-grid, .area-grid {
    grid-template-columns: 1fr 1fr;
  }
  .promo-banners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.78rem;
    padding: 8px 0;
  }
  .top-bar .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .top-bar-right {
    gap: 12px;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    transform: translateX(-100%);
    visibility: hidden;
    pointer-events: none;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 24px;
    gap: 20px;
    transition: transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow-y: auto;
    z-index: 1000;
  }
  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
  }
  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .category-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 0.88rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .about-img-box img {
    height: 340px;
  }
  .ba-comparison {
    height: 340px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0 90px 0;
    min-height: auto;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  .hero-description {
    font-size: 0.98rem;
    margin-bottom: 24px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
    padding: 14px 20px;
  }
  .stats-card {
    grid-template-columns: 1fr 1fr;
    padding: 20px 12px;
    gap: 16px;
  }
  .stat-item::after {
    display: none !important;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .why-us-card {
    padding: 18px 10px;
  }
  .why-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
  .why-title {
    font-size: 0.85rem;
  }
  .gallery-grid, .reviews-grid, .blog-grid, .contact-grid, .area-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 260px;
  }
  .works-hero-section h1 {
    font-size: 1.95rem !important;
  }
  .ba-comparison {
    height: 270px;
  }
  .about-badge-floating {
    padding: 14px 18px;
    bottom: 14px;
    left: 14px;
  }
  .about-badge-num {
    font-size: 1.8rem;
  }
  .about-badge-text {
    font-size: 0.8rem;
  }
  .booking-form-card {
    padding: 24px 18px;
  }
  .form-control {
    font-size: 16px; /* Prevents auto-zoom on mobile safari */
  }
  .form-actions {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .site-logo img {
    height: 44px;
  }
  .header-container {
    height: 64px;
  }
  .header-actions .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .hero-badge {
    font-size: 0.76rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }
  .works-hero-section {
    padding: 70px 0 50px 0;
  }
  .works-hero-section h1 {
    font-size: 1.75rem !important;
  }
  .gallery-card-title {
    font-size: 0.86rem;
  }
  .floating-actions {
    bottom: 16px;
    right: 16px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

