/* ══════════════════════════════════════════════
   MAHA CREATIONS — Main Stylesheet
   Design inspired by TechCloudParamount.com
   Colors: Orange #ff7d33 | Dark #1a1a2e | White
   Fonts: Roboto Slab | Open Sans | PT Serif
══════════════════════════════════════════════ */

:root {
  --orange: #ff7d33;
  --orange-dark: #ff5100;
  --orange-light: #ffb347;
  --dark: #2c3e6b;       /* was #1a1a2e — lighter blue-slate */
  --dark-2: #263460;     /* was #16213e — lighter navy */
  --dark-3: #1e4080;     /* was #0f3460 — lighter deep blue */
  --charcoal: #3d3d52;
  --white: #ffffff;
  --light-bg: #f8f9ff;
  --light-bg-2: #f0f4ff;
  --text-dark: #2d2d3a;
  --text-mid: #555570;
  --text-light: #8888a0;
  --border: #e8e8f0;
  --shadow: 0 8px 32px rgba(44,62,107,0.12);
  --shadow-hover: 0 16px 48px rgba(255,125,51,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'PT Serif', serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: 'Open Sans', sans-serif; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3 { font-family: 'Roboto Slab', serif; line-height: 1.25; }
h4, h5, h6, p, span, a, li { font-family: 'Open Sans', sans-serif; }

.text-orange { color: var(--orange); }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,125,51,0.1);
  border: 1px solid rgba(255,125,51,0.25);
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 14px;
}
.section-label.light { background: rgba(255,125,51,0.15); color: var(--orange-light); border-color: rgba(255,125,51,0.3); }
.section-title { font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-desc { font-size: 15px; color: var(--text-mid); max-width: 600px; margin: 0 auto; }
.section-desc.light { color: rgba(255,255,255,0.75); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section { padding: 90px 0; }
.dark-section { background: var(--dark); }
.dark-section .section-title { color: var(--white); }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255,125,51,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,125,51,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: 15px 36px;
  font-size: 15px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 28px rgba(255,125,51,0.4);
}
.btn-hero-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255,125,51,0.5);
}
.btn-hero-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  padding: 15px 36px;
  font-size: 15px;
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ── TOPBAR ─────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,125,51,0.15);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar-inner span,
.topbar-inner a { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.topbar-inner a:hover { color: var(--orange); }
.topbar-inner i { color: var(--orange); font-size: 12px; }
.topbar-inner .tb-val { font-weight: 500; }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,26,46,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(26,26,46,0.15);
  border-bottom: 3px solid var(--orange);
  animation: navSlide 0.3s ease;
}
@keyframes navSlide { from { transform: translateY(-10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.nav-inner {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  gap: 20px;
}
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo { height: 52px; width: auto; transition: var(--transition); }
.nav-logo-icon { height: 52px; width: 52px; object-fit: contain; border-radius: 8px; }
.nav-logo-wide {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 7px;
  padding: 5px 12px;
}
.nav-logo:hover { transform: scale(1.03); }
/* Hide wide logo on very small screens */
@media (max-width: 400px) { .nav-logo-wide { display: none; } }

/* Footer wide logo */
.footer-logo {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 16px;
  margin-bottom: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-item {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.nav-item:hover, .nav-item.active { color: var(--orange); }
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-item:hover::after, .nav-item.active::after { left: 14px; right: 14px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(26,26,46,0.15);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--light-bg); color: var(--orange); }
.dropdown li a i { color: var(--orange); width: 16px; }
.dropdown li:first-child a { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown li:last-child a { border-radius: 0 0 var(--radius) var(--radius); }

.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,64,128,0.88) 0%, rgba(44,62,107,0.82) 60%, rgba(255,81,0,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 24px 60px 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,125,51,0.15);
  border: 1px solid rgba(255,125,51,0.4);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--orange); transform: scale(1.3); }
.hero-scroll-hint {
  position: absolute;
  bottom: 30px; right: 40px;
  z-index: 3;
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ── STATS STRIP ─────────────────────────────── */
.stats-strip {
  background: var(--orange);
  padding: 0;
  position: relative;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.stat-item:hover::before { background: rgba(255,255,255,0.08); }
.stat-number {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── ABOUT SECTION ───────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-art {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}
.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: spin 12s linear infinite;
}
.ring-1 { inset: 0; border-color: rgba(255,125,51,0.15); }
.ring-2 { inset: 30px; border-color: rgba(255,125,51,0.25); animation-duration: 16s; animation-direction: reverse; }
.ring-3 { inset: 60px; border-color: rgba(255,125,51,0.35); animation-duration: 20s; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.art-center {
  position: absolute;
  inset: 90px;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255,125,51,0.2);
}
.art-icon {
  position: absolute;
  width: 46px; height: 46px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(255,125,51,0.4);
}
.ai-1 { top: 20px; left: 50%; transform: translateX(-50%); }
.ai-2 { right: 20px; top: 50%; transform: translateY(-50%); }
.ai-3 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.ai-4 { left: 20px; top: 50%; transform: translateY(-50%); }

.about-desc { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.8; }
.about-bullets { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.about-bullets li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-dark); }
.about-bullets li i { color: var(--orange); font-size: 16px; }
.about-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── WHY SECTION ─────────────────────────────── */
.why-section { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  background: rgba(255,125,51,0.08);
  border-color: rgba(255,125,51,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255,125,51,0.12);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(255,125,51,0.3);
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: rotate(5deg) scale(1.1); }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── SERVICES SECTION ────────────────────────── */
.services-section { background: var(--light-bg); padding-bottom: 24px; }
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(255,125,51,0.3);
  transform: translateY(-2px);
}

/* ── SERVICE DETAIL ──────────────────────────── */
.service-detail-section { padding: 70px 0; }
.service-detail-section:first-of-type { padding-top: 40px; }

.sd-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.sd-header.light { border-bottom-color: rgba(255,255,255,0.1); }
.sd-icon-wrap {
  width: 60px; height: 60px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255,125,51,0.35);
}
.sd-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.dark-section .sd-title { color: var(--white); }
.sd-subtitle { font-size: 15px; color: var(--text-mid); }
.dark-section .sd-subtitle { color: rgba(255,255,255,0.6); }

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.dark-section .item-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}
.dark-section .item-card:hover { background: rgba(255,125,51,0.06); }
.item-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--light-bg-2);
  position: relative;
}
.dark-section .item-img-wrap { background: rgba(255,255,255,0.05); }
.item-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.item-card:hover .item-img-wrap img { transform: scale(1.08); }
.item-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 36px;
  opacity: 0.4;
}
.item-body { padding: 16px; }
.item-name { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; line-height: 1.35; }
.dark-section .item-name { color: var(--white); }
.item-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.dark-section .item-desc { color: rgba(255,255,255,0.5); }
.item-price {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255,125,51,0.1);
  padding: 3px 10px;
  border-radius: 50px;
}
/* Clickable "Get a Quote" price tag */
.item-price-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(255,125,51,0.3);
  transition: var(--transition);
}
.item-price-link:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,125,51,0.35);
}
.item-featured-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.section-footer-note {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(255,125,51,0.08);
  border: 1px solid rgba(255,125,51,0.2);
  border-radius: var(--radius);
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.section-footer-note.light { background: rgba(255,125,51,0.1); border-color: rgba(255,125,51,0.25); }

/* ── PRINTING CATEGORIES ─────────────────────── */
.print-cat-section { margin-bottom: 52px; }
.print-cat-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
  border-left: 4px solid var(--orange);
}
.print-cat-heading i { color: var(--orange); }

/* ── TECH SECTION ────────────────────────────── */
.tech-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 20px;
}
.tech-header {
  text-align: center;
  margin-bottom: 36px;
}
.tech-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.tech-header h3 i { color: var(--orange); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.tech-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.tech-card:hover {
  background: rgba(255,125,51,0.12);
  border-color: rgba(255,125,51,0.3);
  transform: translateY(-4px);
}
.tech-card-name { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
.tech-card-desc { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.tech-section .section-footer-note { background: rgba(255,125,51,0.12); border-color: rgba(255,125,51,0.3); }

/* ── GALLERY ─────────────────────────────────── */
.gallery-section { background: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.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(26,26,46,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-size: 13px; font-weight: 500; }
.gallery-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
  color: rgba(255,255,255,0.3);
}
.gallery-empty i { font-size: 52px; margin-bottom: 16px; display: block; }
.gallery-empty p { font-size: 15px; line-height: 1.7; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 75vh; border-radius: var(--radius); }
.lightbox p { color: rgba(255,255,255,0.7); font-size: 14px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--orange); border-color: var(--orange); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials-section { background: var(--light-bg); overflow: hidden; }
.testimonial-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.testimonial-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  margin-right: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.tc-quote {
  font-size: 48px;
  color: var(--orange);
  font-family: 'Roboto Slab', serif;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}
.tc-review { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.tc-footer { display: flex; justify-content: space-between; align-items: center; }
.tc-author h5 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.tc-author span { font-size: 12px; color: var(--orange); }
.tc-stars { color: #ffc107; font-size: 14px; letter-spacing: 2px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--orange); transform: scale(1.3); }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  z-index: 5;
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, var(--dark-3) 100%);
  z-index: 0;
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(22px, 3.5vw, 34px); color: var(--white); margin-bottom: 10px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-banner .btn-hero-primary { background: var(--white); color: var(--orange); }
.cta-banner .btn-hero-primary:hover { background: var(--dark); color: var(--white); }

/* ── CONTACT SECTION ─────────────────────────── */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.ci-item:hover { background: rgba(255,125,51,0.08); border-color: rgba(255,125,51,0.2); }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}
.ci-text { display: flex; flex-direction: column; gap: 3px; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); font-weight: 700; }
.ci-val { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-3px); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,125,51,0.12);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.form-note i { color: var(--orange); }

/* Form success message */
.form-success {
  text-align: center;
  padding: 40px;
  display: none;
}
.form-success i { font-size: 52px; color: #25d366; margin-bottom: 16px; }
.form-success h4 { font-size: 20px; color: var(--text-dark); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-mid); }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { color: var(--orange); font-size: 11px; width: 14px; }
.footer-links a:hover { color: var(--orange); transform: translateX(4px); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-contact li i { color: var(--orange); margin-top: 2px; font-size: 13px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom .text-orange { font-size: 12px; }

/* ── FLOAT BUTTONS ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 88px; right: 24px;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1da851; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
}
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(255,125,51,0.4);
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); background: var(--orange-dark); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-art { width: 260px; height: 260px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100% - 24px); }
}

@media (max-width: 768px) {
  .topbar-inner { gap: 14px; font-size: 11px; }
  .topbar-inner #tb-hours { display: none; }
  .nav-inner { flex-wrap: wrap; padding: 12px 16px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 12px 0;
    gap: 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-item { padding: 10px 8px; width: 100%; }
  .has-dropdown { position: static; }
  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    margin: 4px 8px;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .hero-content { padding: 40px 20px; }
  .hero-btns { gap: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(even) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .items-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .carousel-btn { display: none; }
  .tech-section { padding: 28px 20px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 14px; }
  .btn-hero-primary, .btn-hero-outline { padding: 12px 20px; font-size: 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .items-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .sd-header { flex-direction: column; align-items: flex-start; }
}
