/* ===== CSS VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --black-2: #1a1a1a;
  --black-3: #2a2a2a;
  --yellow: #f5c518;
  --yellow-dark: #d4a800;
  --yellow-light: #ffe44d;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --grey-100: #f0f0f0;
  --grey-200: #e0e0e0;
  --grey-300: #cccccc;
  --grey-400: #999999;
  --grey-500: #666666;
  --grey-600: #444444;
  --grey-700: #333333;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 120px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.25rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--grey-500);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== EMOJI ICONS (replaced emojis) ===== */
.icon-img {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.icon-img-sm {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.icon-img-check {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  color: var(--yellow);
}

.icon-img-star {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  color: var(--yellow);
}

.icon-img-arrow {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  color: var(--yellow);
  transition: transform 0.3s ease;
}

.btn-specs-toggle.active .icon-img-arrow {
  transform: rotate(180deg);
}

.service-icon .icon-img {
  color: var(--yellow);
}

.why-us-icon .icon-img {
  color: var(--black);
}

.contact-detail .icon-img {
  color: var(--yellow);
}

.footer .icon-img,
.footer .icon-img-sm {
  color: var(--yellow);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: var(--header-height);
  transition: var(--transition);
}

.header.scrolled {
  background: #000000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  z-index: 1001;
  text-decoration: none;
}

.header .logo {
  height: 100%;
  flex-shrink: 0;
}

.header .logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

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

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: var(--grey-300);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: default;
  position: relative;
  padding: 8px 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  margin-top: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8125rem;
  color: var(--grey-400);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.nav a {
  color: var(--grey-300);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: var(--yellow);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.nav .nav-cta .btn-primary,
.nav .nav-cta .btn-primary:visited,
.nav .nav-cta .btn-primary:hover,
.nav .nav-cta .btn-primary:link {
  color: #000000 !important;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.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: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.4) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--yellow);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.125rem;
  color: var(--grey-400);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--grey-500);
  margin-bottom: 32px;
}

.hero-trust-sep {
  color: rgba(255, 255, 255, 0.15);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.hero-feature svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.hero-feature span {
  font-size: 0.875rem;
  color: var(--grey-300);
  white-space: nowrap;
}

/* Project label on hero image */
.hero-project-label {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  max-width: 180px;
  background: rgba(0, 0, 0, 0.65);
  padding: 10px 14px;
  border-radius: 6px;
}

.hero-project-location {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.hero-project-desc {
  display: block;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ===== MOBILE TOUCH TARGETS ===== */
.nav a {
  padding: 8px 0;
}

.faq-question {
  padding: 20px 0;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-grey {
  background: var(--off-white);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 16px;
  padding: 40px 32px;
  transition: var(--transition);
}

.section-dark .service-card {
  background: var(--black-2);
  border-color: var(--grey-700);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--yellow);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--grey-500);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.why-us-item {
  text-align: center;
  padding: 32px 24px;
}

.why-us-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--black);
}

.why-us-item h4 {
  margin-bottom: 8px;
}

.why-us-item p {
  color: var(--grey-500);
  font-size: 0.9375rem;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.step h4 {
  margin-bottom: 8px;
}

.step p {
  color: var(--grey-500);
  font-size: 0.9375rem;
}

/* ===== TECHNOLOGY ===== */
.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.tech-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--grey-300);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.tech-tag:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.3);
  color: var(--white);
}

.tech-tag .icon {
  color: var(--yellow);
  font-size: 1.25rem;
}

/* ===== CAMERA SPECS DROPDOWN ===== */
.btn-specs-toggle {
  cursor: pointer;
  user-select: none;
}

.specs-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 0.625rem;
  margin-left: 4px;
}

.btn-specs-toggle.active .specs-arrow {
  transform: rotate(180deg);
}

.specs-dropdown {
  display: none;
  padding-top: 0;
}

.specs-dropdown.open {
  display: block;
}

.specs-dropdown-inner {
  padding: 16px 0 0;
}

.specs-dropdown-inner h4 {
  font-size: 0.8125rem;
  color: var(--yellow);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.specs-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--grey-400);
  line-height: 1.5;
}

.specs-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.specs-list li strong {
  color: var(--grey-200);
  font-weight: 600;
  min-width: 100px;
  flex-shrink: 0;
}

.specs-list li {
  word-break: break-word;
}

/* ===== CAMERA SHOWCASE ===== */
.cameras-showcase {
  background: var(--black);
  color: var(--white);
}

.cameras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.camera-card {
  background: var(--black-2);
  border: 1px solid var(--grey-700);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.camera-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(245, 197, 24, 0.08);
}

.camera-image {
  background: #111;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
}

.camera-image img {
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.camera-card:hover .camera-image img {
  transform: scale(1.05);
}

.camera-body {
  padding: 32px;
}

.camera-brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.camera-body h3 {
  margin-bottom: 6px;
  font-size: 1.125rem;
}

.camera-sku {
  font-size: 0.8125rem;
  color: var(--grey-500);
  margin-bottom: 20px;
  font-family: monospace;
}

.camera-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.camera-spec {
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.15);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: var(--grey-300);
}

.camera-spec strong {
  color: var(--yellow);
  font-weight: 600;
}

.camera-actions {
  display: flex;
  gap: 12px;
}

.camera-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.8125rem;
}

@media (max-width: 480px) {
  .cameras-grid {
    grid-template-columns: 1fr;
  }
  .camera-actions {
    flex-direction: column;
  }
}

/* ===== SERVICE AREAS ===== */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.areas-grid .area-card {
  flex: 0 1 160px;
}

.area-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.section-dark .area-card {
  background: var(--black-2);
  border-color: var(--grey-700);
}

.area-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.area-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.area-card p {
  font-size: 0.8125rem;
  color: var(--grey-500);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grey-100);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 16px;
  padding: 32px;
}

.section-dark .testimonial-card {
  background: var(--black-2);
  border-color: var(--grey-700);
}

.testimonial-stars {
  color: var(--yellow);
  margin-bottom: 16px;
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-author h5 {
  font-size: 0.9375rem;
}

.testimonial-author p {
  font-size: 0.8125rem;
  color: var(--grey-500);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--grey-200);
}

.section-dark .faq-item {
  border-color: var(--grey-700);
}

.faq-question {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  padding-right: 24px;
}

.faq-question .arrow {
  font-size: 1.25rem;
  color: var(--yellow);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--grey-500);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--grey-500);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}

.contact-detail h5 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.875rem;
  color: var(--grey-500);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--grey-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  border: 2px solid var(--grey-200);
  border-radius: 8px;
  background: var(--white);
  transition: var(--transition);
  color: var(--black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--grey-400);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--grey-500);
  font-size: 0.9375rem;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.9375rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer a {
  color: var(--grey-500);
  font-size: 0.875rem;
  display: block;
  padding: 6px 0;
}

.footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--grey-500);
}

/* ===== INTERIOR PAGE HERO ===== */
.page-hero {
  padding: 180px 0 80px;
  background: var(--black);
  color: var(--white);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--grey-400);
  font-size: 1.125rem;
  max-width: 600px;
}

/* ===== CONTENT SECTIONS ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--grey-100);
  aspect-ratio: 4/3;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-text h2 {
  margin-bottom: 16px;
}

.content-text p {
  color: var(--grey-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-text .btn {
  margin-top: 16px;
}

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--grey-100);
  border-radius: 16px;
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}

.package-card.featured {
  border-color: var(--yellow);
  transform: scale(1.02);
}

.package-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.package-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.package-card h3 {
  margin-bottom: 8px;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey-500);
}

.package-features {
  margin-bottom: 32px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li .check {
  color: var(--yellow);
  font-weight: 700;
}

.package-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== WHATSAPP BAR ON ALL PAGES ===== */
.whatsapp-bar {
  background: #075E54;
  padding: 12px 0;
  text-align: center;
}

.whatsapp-bar p {
  color: var(--white);
  font-size: 0.9375rem;
}

.whatsapp-bar a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

.whatsapp-bar a:hover {
  color: var(--yellow);
}

/* ===== SERVICE AREA PAGE ===== */
.county-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.county-item {
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.county-item:hover {
  border-color: var(--yellow);
}

.county-item .icon {
  color: var(--yellow);
}

.county-item h5 {
  font-size: 0.9375rem;
}

/* ===== ABOUT PAGE ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 12px;
}

.section-dark .value-card {
  background: var(--black-2);
  border-color: var(--grey-700);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--grey-500);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHATSAPP BUTTON (per-page) ===== */
.whatsapp-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-page-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 96px;
  }

  .header .logo img {
    height: 70px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--black-2);
    flex-direction: column;
    align-items: center;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: var(--transition);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    font-size: 1.125rem;
    text-align: center;
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-toggle {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: auto;
    margin-top: 0;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    font-size: 1rem;
    text-align: center;
    width: 100%;
    padding: 8px 0;
    color: var(--grey-400);
  }

  .nav-dropdown-menu a:hover {
    color: var(--white);
    background: transparent;
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover {
    transform: translateY(-4px);
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .whatsapp-bar p {
    font-size: 0.8125rem;
  }

  .specs-list li {
    flex-wrap: wrap;
    gap: 2px;
  }

  .specs-list li strong {
    min-width: auto;
    width: 100%;
  }

}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 100px 0 40px;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .lightbox {
    padding: 24px;
  }

  .camera-body {
    padding: 24px;
  }

  .camera-image {
    padding: 24px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .package-card {
    padding: 28px 24px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
  }

  .section {
    padding: 40px 0;
  }

  .camera-body {
    padding: 16px;
  }

  .camera-image {
    padding: 16px;
  }

  .camera-spec {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .whatsapp-bar p {
    font-size: 0.75rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
    bottom: 12px;
    right: 12px;
  }

  .lightbox {
    padding: 12px;
  }

  .nav {
    padding: 80px 24px 24px;
  }

  .nav a {
    font-size: 1rem;
  }
}
