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

:root {
  --brown-dark: #2C1810;
  --brown-primary: #5A3E19;
  --gold: #C9A227;
  --gold-hover: #D4AF37;
  --off-white: #F5F0E8;
  --border-warm: #E8DFD0;
  --muted-brown: #8B7D6B;
  --green-whatsapp: #25D366;
  --green-whatsapp-hover: #20BD5A;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
}

body {
  font-family: "Cairo", sans-serif;
  direction: rtl;
  background-color: var(--off-white);
  color: var(--brown-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

input, textarea, select {
  font-family: inherit;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--brown-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1560px;
  }
}

.text-gold-gradient {
  background: linear-gradient(135deg, #C9A227, #E8D48B, #C9A227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATIONS ===== */

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 1.5s infinite;
}

.animate-ping {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* ===== SCROLL REVEAL ===== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible .reveal-child {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible .reveal-scale {
  opacity: 1;
  transform: scale(1);
}

/* ===== NAVBAR ===== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar.scrolled {
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

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

.navbar-logo img {
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .navbar-logo img {
    height: 4rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop button {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-desktop button:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--gold-hover);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.2);
}

.mobile-toggle {
  display: block;
  color: white;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1023px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

.mobile-menu-inner {
  background: rgba(44, 24, 16, 0.98);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1rem 1.5rem;
}

.mobile-menu button {
  display: block;
  width: 100%;
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s;
}

.mobile-menu button:hover {
  color: var(--gold);
}

.mobile-menu .nav-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-size: 1rem;
}

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 24, 16, 0.92), rgba(58, 37, 21, 0.82), rgba(44, 24, 16, 0.95));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 7rem;
  padding-bottom: 4rem;
  max-width: 100rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge span {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.5rem; }
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-desc { font-size: 1.125rem; }
}

.hero-desc-secondary {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-desc-secondary { font-size: 1.125rem; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-bar {grid-template-columns: repeat(4, 1fr);max-width: 700px;}
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: var(--gold);
  border-radius: 9999px;
  animation: bounce 1.5s infinite;
}

/* ===== WHY KAYAN ===== */

.why-section {
  padding: 5rem 0;
  background: var(--off-white);
}

@media (min-width: 768px) {
  .why-section { padding: 7rem 0; }
}

.why-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.why-image-wrapper {
  position: relative;
  order: 2;
}

@media (min-width: 1024px) {
  .why-image-wrapper { order: 1; }
}

.why-image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.why-image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .why-image-container img { height: 500px; }
}

.why-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.4), transparent);
}

.why-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--brown-dark);
  color: white;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.why-badge .number {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--gold);
}

.why-badge .label {
  font-size: 0.875rem;
  font-weight: 500;
}

.why-content {
  order: 1;
}

@media (min-width: 1024px) {
  .why-content { order: 2; }
}

.section-tag {
  display: inline-block;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.section-tag span {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--brown-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

.section-title .gold {
  color: var(--gold);
}

.why-desc {
  color: rgba(44, 24, 16, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reason-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.reason-check svg {
  color: var(--gold);
}

.reason-item span {
  color: var(--brown-dark);
  font-size: 1rem;
  font-weight: 500;
}

/* ===== SERVICES ===== */

.services-section {
  padding: 5rem 0;
  background: white;
}

@media (min-width: 768px) {
  .services-section { padding: 7rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc {
  color: rgba(44, 24, 16, 0.6);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-card {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.service-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

@media (min-width: 768px) {
  .service-image img { height: 380px; }
}

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

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.5), transparent);
  pointer-events: none;
}

.service-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
  .service-card.reversed .service-image { order: 2; }
  .service-card.reversed .service-content { order: 1; }
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .service-content h3 { font-size: 1.875rem; }
}

.service-bullets {
  margin-bottom: 1.5rem;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-bullets li .dot {
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.625rem;
}

.service-bullets li span {
  color: rgba(44, 24, 16, 0.8);
  font-size: 1rem;
  line-height: 1.75;
}

.service-extra {
  border-right: 4px solid var(--gold);
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(201, 162, 39, 0.05);
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.service-extra p {
  color: var(--brown-primary);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
}

/* ===== QUALITY ===== */

.quality-section {
  padding: 5rem 0;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .quality-section { padding: 7rem 0; }
}

.quality-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 25% 25%, #C9A227 1px, transparent 1px);
  background-size: 40px 40px;
}

.quality-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.quality-tag {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.quality-tag span {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
}

.quality-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .quality-title { font-size: 2.25rem; }
}

.quality-title .gold {
  color: var(--gold);
}

.quality-items {
  margin-bottom: 2rem;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.quality-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(201, 162, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-icon svg {
  color: var(--gold);
}

.quality-item span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.75;
  padding-top: 0.375rem;
}

.quality-quote {
  border-right: 4px solid var(--gold);
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.quality-quote p {
  color: var(--gold);
  font-size: 1.125rem;
  font-weight: 700;
}

.quality-image-wrapper {
  position: relative;
}

.quality-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .quality-image-wrapper img { height: 480px; }
}

.corner-deco-top {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 5rem;
  height: 5rem;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  border-top-right-radius: 1rem;
}

.corner-deco-bottom {
  position: absolute;
  bottom: -0.75rem;
  left: -0.75rem;
  width: 5rem;
  height: 5rem;
  border-bottom: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-bottom-left-radius: 1rem;
}

/* ===== PROCESS ===== */

.process-section {
  padding: 5rem 0;
  background: var(--off-white);
}

@media (min-width: 768px) {
  .process-section { padding: 7rem 0; }
}

.process-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

.process-card {
  position: relative;
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.process-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 162, 39, 0.2);
}

.process-card .bg-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(44, 24, 16, 0.05);
  transition: color 0.3s;
  line-height: 1;
}

.process-card:hover .bg-number {
  color: rgba(201, 162, 39, 0.1);
}

.process-card .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.process-card:hover .icon-box {
  background: rgba(201, 162, 39, 0.2);
}

.process-card .icon-box svg {
  color: var(--gold);
}

.process-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brown-primary);
  margin-bottom: 0.5rem;
}

.process-card p {
  color: rgba(44, 24, 16, 0.6);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ===== WHO WE SERVE ===== */

.serve-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .serve-section { padding: 7rem 0; }
}

.serve-bg {
  position: absolute;
  inset: 0;
}

.serve-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.88);
}

.serve-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.serve-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .serve-title { font-size: 2.25rem; }
}

.serve-title .gold {
  color: var(--gold);
}

.serve-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .serve-grid { grid-template-columns: repeat(5, 1fr); }
}

.serve-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  transition: all 0.3s;
}

.serve-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 162, 39, 0.3);
}

.serve-card svg {
  color: var(--gold);
}

.serve-card span {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

/* ===== GALLERY ===== */

.gallery-section {
  padding: 5rem 0;
  background: var(--off-white);
}

@media (min-width: 768px) {
  .gallery-section { padding: 7rem 0; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.featured {
  grid-column: span 1;
  grid-row: span 1;
}

@media (min-width: 768px) {
  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

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

@media (min-width: 768px) {
  .gallery-item img { height: 200px; }
}

.gallery-item.featured img {
  height: 250px;
}

@media (min-width: 768px) {
  .gallery-item.featured img { height: 400px; }
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(44, 24, 16, 0.4);
}

.gallery-zoom {
  opacity: 0;
  background: var(--gold);
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

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

/* Lightbox */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(90, 62, 25, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-btn {
  position: absolute;
  z-index: 10;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 0.5rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.lightbox-btn:hover {
  color: white;
}

.lightbox-close {
  top: 1rem;
  left: 1rem;
}

.lightbox-prev {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* ===== PARTNERS ===== */

.partners-section {
  padding: 3.5rem 0;
  background: white;
  border-top: 1px solid rgba(232, 223, 208, 0.5);
}

.partners-label {
  color: rgba(44, 24, 16, 0.4);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .partners-list { gap: 2.5rem; }
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(44, 24, 16, 0.4);
  transition: color 0.3s;
}

.partner-item:hover {
  color: var(--gold);
}

.partner-item svg {
  flex-shrink: 0;
}

.partner-item span {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.partner-item.partner-logo {
  width: 136px;
  height: 68px;
  justify-content: center;
  padding: 0.6rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(232, 223, 208, 0.9);
  background: #fff;
  box-shadow: 0 3px 10px rgba(44, 24, 16, 0.06);
}

.partner-item.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== CTA ===== */

.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section { padding: 8rem 0; }
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.9);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .cta-title { font-size: 3rem; }
}

.cta-title .gold {
  color: var(--gold);
}

.cta-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-whatsapp);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
}

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

.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
}

.btn-gold-lg:hover {
  background: var(--gold-hover);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.25);
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */

.contact-section {
  padding: 5rem 0;
  background: white;
}

@media (min-width: 768px) {
  .contact-section { padding: 7rem 0; }
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 3fr; }
}

.contact-info-card {
  background: var(--brown-dark);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.contact-info-item:hover {
  color: var(--gold);
}

.contact-info-item.whatsapp:hover {
  color: var(--green-whatsapp);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(201, 162, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  color: var(--gold);
}

.contact-info-icon.green {
  background: rgba(37, 211, 102, 0.15);
}

.contact-info-icon.green svg {
  color: var(--green-whatsapp);
}

.contact-info-item span {
  font-size: 1rem;
}

.contact-quick-btns {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-quick-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  color: white;
  transition: all 0.3s;
}

.contact-quick-btns .btn-call {
  background: var(--gold);
}

.contact-quick-btns .btn-call:hover {
  background: var(--gold-hover);
}

.contact-quick-btns .btn-wa {
  background: var(--green-whatsapp);
}

.contact-quick-btns .btn-wa:hover {
  background: var(--green-whatsapp-hover);
}

.contact-form-card {
  background: var(--off-white);
  border-radius: 1rem;
  padding: 2rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: var(--brown-primary);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: white;
  border: 1px solid var(--border-warm);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--brown-dark);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-brown);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B7D6B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
}

.form-group textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--gold-hover);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.25);
}

.form-success {
  text-align: center;
  padding: 3rem;
}

.form-success .check-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success .check-icon svg {
  color: var(--green-whatsapp);
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-primary);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: rgba(44, 24, 16, 0.6);
  margin-bottom: 1.5rem;
}

.form-success button {
  color: var(--gold);
  font-weight: 700;
  cursor: pointer;
}

.form-success button:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--brown-dark);
  color: white;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-brand img {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links button {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s;
  text-align: right;
}

.footer-links button:hover {
  color: var(--gold);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-contact-item:hover {
  color: var(--gold);
}

.footer-contact-item.whatsapp:hover {
  color: var(--green-whatsapp);
}

.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item.whatsapp svg {
  color: var(--green-whatsapp);
}

.footer-contact-item.address {
  align-items: flex-start;
}

.footer-contact-item.address svg {
  margin-top: 2px;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-divider {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-divider p {
  font-size: 0.75rem;
}

.footer-divider .copyright {
  color: rgba(255, 255, 255, 0.4);
}

.footer-divider .en-name {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== WHATSAPP FLOAT ===== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
}

.whatsapp-float .ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-whatsapp);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.25;
}

.whatsapp-float .btn {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
}

.whatsapp-float .btn:hover {
  background: var(--green-whatsapp-hover);
  transform: scale(1.1);
}

.whatsapp-float .btn svg {
  color: white;
}

.whatsapp-float .tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.5rem;
  background: var(--brown-dark);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  pointer-events: none;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

/* ===== TOAST ===== */

.toast-container {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: var(--brown-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-1rem);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  border-right: 3px solid #ef4444;
}

.toast.success {
  border-right: 3px solid var(--green-whatsapp);
}
