/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --gold:       #e19e35;
  --gold-light: #f0b84e;
  --gold-dark:  #c4881e;
  --dark:    #16191e;
  --dark-2:  #111417;
  --dark-3:  #1a1e24;
  --dark-4:  #272940;
  --white:   #ffffff;
  --gray:    #f1f1f3;
  --text:    #333333;
  --text-light: #777777;
  --font:      'Almarai', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --radius:  12px;
  --shadow:  0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  direction: rtl;
}

h1, h2, h3, h4, h5, h6,
.nav-link, .logo-text, .btn,
.section-title, .section-tag,
.card-title, .stat-num, .stat-label,
.badge-num, .badge-text, .footer-links a,
.footer-links h4, .footer-contact h4 {
  font-family: var(--font);
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(201,168,76,0.3);
}

.section-title {
  font-family: var(--font);
  font-size: 58px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 10px;
  padding-bottom: 8px;
}
.section-title span { color: var(--dark); }

.section-desc {
  font-family: var(--font);
  font-size: 29px;
  font-weight: 300;
  color: var(--dark);
  max-width: 700px;
  line-height: 1.4;
  padding-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 45px; width: auto; }
.logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
}
.logo-text span { color: var(--gold); }

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

.nav-link {
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   ABOUT
=========================== */
.about {
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

/* ---- Image Side ---- */
.about-img-side {
  position: relative;
  overflow: hidden;
}

.about-img-side img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.about-img-side:hover img { transform: scale(1.03); }

/* Dark navy decorative square — top right corner */
.about-img-side::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: var(--dark-4);
  z-index: 2;
}

.about-img-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
}

.about-year-badge {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 25px rgba(225,158,53,0.5);
}
.badge-num {
  display: block;
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.badge-text {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---- Text Side ---- */
.about-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 44px 40px 30px;
  background: var(--white);
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.about-text-side .section-title {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1.2;
}

.about-subtitle {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-text-side p {
  font-family: var(--font-body);
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 10px;
  font-size: 0.97rem;
}

.about-stats {
  display: flex;
  gap: 0;
  margin: 24px 0 28px;
  padding: 0;
}
.stat {
  flex: 1;
  text-align: center;
  border-left: 1px solid #e0e0e0;
  padding: 0 10px;
}
.stat:last-child { border-left: none; }
.stat-num {
  display: block;
  font-family: var(--font);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
}
.stat-label {
  font-family: var(--font);
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 100px 0;
  background: var(--gray);
}

.services {
  padding: 100px 0;
  background: #2a2d38;
  overflow: hidden;
}
.services .section-title { color: var(--gold); }
.services .section-desc  { color: rgba(255,255,255,0.75); }

.services-grid {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  margin: 0 4%;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  width: 29vw;
  min-height: 452px;
  margin-left: 3%;
  flex-shrink: 0;
}
.service-card:last-child { margin-left: 0; }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--dark);
}

.service-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 1;
  transition: var(--transition);
}

.service-card img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover img { transform: scale(1.05); }

.service-body {
  padding: 16px 16px 24px;
}
.service-body h3 {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  text-align: right;
  padding-bottom: 4px;
}
.service-body p {
  font-family: var(--font-body);
  color: var(--text-light);
  line-height: 20px;
  font-size: 14px;
  font-weight: 300;
  text-align: right;
}

/* ===========================
   GALLERY
=========================== */
.gallery {
  background: var(--dark);
  position: relative;
}

/* ---- SLIDER ---- */
.gallery-slider {
  position: relative;
  height: 90vh;
  min-height: 550px;
  overflow: hidden;
}

.gs-track { width: 100%; height: 100%; position: relative; }

.gs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.gs-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.gs-slide.exit {
  opacity: 0;
  transform: translateX(80px);
}

.gs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.78) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0 6% 0 30%;
  text-align: right;
}

.gs-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 6px 18px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.6s ease 0.2s;
}
.gs-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  width: 100%;
  line-height: 1.35;
  transform: translateX(60px);
  opacity: 0;
  transition: all 0.7s ease 0.35s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.gs-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  width: 100%;
  transform: translateX(60px);
  opacity: 0;
  transition: all 0.7s ease 0.5s;
  line-height: 1.7;
}

.gs-slide.active .gs-tag,
.gs-slide.active .gs-title,
.gs-slide.active .gs-desc {
  transform: translateX(0);
  opacity: 1;
}

/* Controls */
.gs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(225,158,53,0.85);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs-btn:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }
.gs-prev { right: 24px; }
.gs-next { left: 24px; }

/* Dots */
.gs-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.gs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.gs-dot.active { background: var(--gold); transform: scale(1.3); }

/* View All */
.gs-view-all {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ---- GALLERY MODAL ---- */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: #0e1014;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
.gallery-modal.open {
  opacity: 1;
  pointer-events: all;
}

/* Modal Header */
.gm-header {
  position: sticky;
  top: 0;
  z-index: 9010;
  background: rgba(14,16,20,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(225,158,53,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}

.gm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gm-logo img { height: 38px; }
.gm-logo span {
  font-family: var(--font);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}
.gm-logo b { color: var(--gold); }

.gm-title-wrap { text-align: center; }
.gm-title-wrap h2 {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
}
.gm-title-wrap h2 span { color: var(--gold); }
.gm-title-wrap p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.gm-close {
  width: 42px;
  height: 42px;
  background: rgba(225,158,53,0.12);
  border: 1px solid rgba(225,158,53,0.3);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gm-close:hover {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(90deg);
}

/* Category Tabs */
.gm-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 30px 40px 0;
  flex-wrap: wrap;
}

.gm-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gm-tab:hover { border-color: var(--gold); color: var(--gold); }
.gm-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.tab-count {
  background: rgba(0,0,0,0.2);
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.gm-tab.active .tab-count { background: rgba(0,0,0,0.25); }

/* Masonry Grid */
.gm-grid {
  columns: 4;
  column-gap: 12px;
  padding: 30px 30px 60px;
}

.gm-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  break-inside: avoid;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gm-item.hidden {
  display: none;
}
.gm-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gm-item:hover img { transform: scale(1.06); }

.gm-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  align-items: flex-end;
}
.gm-item:hover .gm-item-overlay { opacity: 1; }

.gm-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: flex-end;
  margin-top: auto;
  text-align: right;
}
.gm-item-cat {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(0,0,0,0.5);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(225,158,53,0.4);
}
.gm-item-num {
  font-family: var(--font);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-align: left;
}
.gm-item-overlay > i {
  align-self: flex-start;
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(0,0,0,0.5);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes gmFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1100px) { .gm-grid { columns: 3; } }
@media (max-width: 768px)  {
  .gm-grid { columns: 2; padding: 20px 16px 40px; }
  .gm-header { padding: 14px 20px; }
  .gm-title-wrap h2 { font-size: 1.2rem; }
  .gm-logo { display: none; }
}
@media (max-width: 480px)  { .gm-grid { columns: 1; } }

/* Filter Buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid rgba(201,168,76,0.4);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Masonry Grid */
.gallery-masonry {
  columns: 4;
  column-gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 14px;
  break-inside: avoid;
  transition: var(--transition);
}
.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  color: var(--gold);
  font-size: 2rem;
}

@media (max-width: 992px) {
  .gallery-masonry { columns: 3; }
}
@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

/* --- Info Cards Row --- */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--gray);
  border-radius: var(--radius);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  color: var(--dark);
}
.contact-info-card:hover {
  border-bottom-color: var(--gold);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.cic-icon {
  width: 50px;
  height: 50px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-card:hover .cic-icon { background: var(--gold); color: var(--dark); }

.cic-text { display: flex; flex-direction: column; gap: 3px; }
.cic-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  font-family: var(--font);
}
.cic-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font);
}

/* --- Bottom: Map + Social --- */
.contact-bottom {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  border: 0;
}

/* --- Social Panel (light, consistent) --- */
.contact-social-wrap {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.social-follow-label {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.social-icons-row {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.soc-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}
.soc-icon:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.soc-icon.fb { background: #1877f2; }
.soc-icon.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-icon.yt { background: #ff0000; }
.soc-icon.wa { background: #25d366; }

.soc-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #25d366;
  background: transparent;
  color: #25d366;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}
.btn-wa:hover {
  background: #25d366;
  color: var(--white);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  .contact-bottom { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 300px; }
  .contact-map-wrap iframe { min-height: 300px; }
}
@media (max-width: 480px) {
  .contact-cards-row { grid-template-columns: 1fr; }
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 45px; margin-bottom: 10px; }
.logo-text-footer {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.logo-text-footer span { color: var(--gold); }
.footer-brand p { line-height: 1.8; font-size: 0.95rem; }

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-right: 6px; }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.footer-contact i { color: var(--gold); width: 16px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}
@keyframes pulse {
  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); }
}

/* ===========================
   CHATBOT
=========================== */
.chatbot-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  z-index: 9500;
}

/* Toggle Button */
.chatbot-toggle {
  width: 58px;
  height: 58px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(225,158,53,0.5);
  transition: var(--transition);
  position: relative;
}
.chatbot-toggle:hover { transform: scale(1.1); }

.chatbot-icon-close { display: none; }
.chatbot-wrapper.open .chatbot-icon-open  { display: none; }
.chatbot-wrapper.open .chatbot-icon-close { display: block; }

.chatbot-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  border: 2px solid #fff;
}
.chatbot-badge.hidden { display: none; }

/* Chat Window */
.chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 520px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  transform-origin: bottom right;
}
.chatbot-wrapper.open .chatbot-window {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header */
.chatbot-header {
  background: var(--dark);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chatbot-avatar-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
}
.chatbot-header-info { flex: 1; }
.chatbot-header-info h4 {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.chatbot-status {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chatbot-status i { color: #2ecc71; font-size: 0.55rem; }

.chatbot-minimize {
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.chatbot-minimize:hover { background: rgba(255,255,255,0.2); }

/* Messages */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8f8f8;
  max-height: 260px;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.chat-msg.bot  { align-items: flex-end; }
.chat-msg.user { align-items: flex-start; }

.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
}
.chat-msg.bot  .chat-bubble {
  background: var(--dark);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--gold);
  color: var(--dark);
  border-bottom-left-radius: 4px;
  font-weight: 600;
}
.chat-time {
  font-size: 0.65rem;
  color: #aaa;
  font-family: var(--font-body);
  padding: 0 4px;
}

/* Typing indicator */
.typing-dots {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--dark);
  border-radius: 16px;
  border-bottom-right-radius: 4px;
  width: fit-content;
}
.typing-dots span {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-6px); }
}

/* Quick Replies */
.chatbot-quick {
  padding: 8px 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  background: #fff;
  border-top: 1px solid #eee;
}
.quick-btn {
  padding: 6px 12px;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
  white-space: nowrap;
}
.quick-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Input */
.chatbot-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid #eee;
}
.chatbot-input-area input {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  direction: rtl;
  background: #f8f8f8;
  transition: var(--transition);
}
.chatbot-input-area input:focus {
  border-color: var(--gold);
  background: #fff;
}
#chatbotSend {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
#chatbotSend:hover { background: var(--gold-dark); transform: scale(1.05); }

@media (max-width: 480px) {
  .chatbot-wrapper { bottom: 20px; right: 16px; }
  .chatbot-window  { width: 300px; }
}

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  left: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover   { transform: translateY(-3px); }

/* ===========================
   ANIMATIONS (AOS-like)
=========================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }

/* ===========================
   SLIDE FROM LEFT - TEXT REVEAL
=========================== */
.reveal-text {
  overflow: hidden;
  display: block;
}

.reveal-text .word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-text.in-view .word {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger each word */
.reveal-text .word:nth-child(1)  { transition-delay: 0.05s; }
.reveal-text .word:nth-child(2)  { transition-delay: 0.12s; }
.reveal-text .word:nth-child(3)  { transition-delay: 0.19s; }
.reveal-text .word:nth-child(4)  { transition-delay: 0.26s; }
.reveal-text .word:nth-child(5)  { transition-delay: 0.33s; }
.reveal-text .word:nth-child(6)  { transition-delay: 0.40s; }
.reveal-text .word:nth-child(7)  { transition-delay: 0.47s; }
.reveal-text .word:nth-child(8)  { transition-delay: 0.54s; }

/* Line slide — for paragraphs */
.reveal-line {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-line.in-view {
  opacity: 1;
  transform: translateX(0);
}
.reveal-line:nth-child(1) { transition-delay: 0.1s; }
.reveal-line:nth-child(2) { transition-delay: 0.2s; }
.reveal-line:nth-child(3) { transition-delay: 0.3s; }
.reveal-line:nth-child(4) { transition-delay: 0.4s; }

/* Gold underline draw on reveal */
.reveal-text.in-view .gold-underline {
  position: relative;
}
.reveal-text.in-view .gold-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  height: 3px;
  background: var(--gold);
  width: 0;
  animation: drawLine 0.6s 0.6s forwards;
  border-radius: 2px;
}
@keyframes drawLine {
  to { width: 100%; }
}

/* ===========================
   RESPONSIVE
=========================== */
/* ===========================
   RESPONSIVE — TABLET 992px
=========================== */
@media (max-width: 992px) {

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-side img { min-height: 360px; height: 360px; }
  .about-img-side::after { width: 60px; height: 60px; }
  .about-text-side { padding: 40px 24px; }

  /* Services */
  .services-grid { flex-direction: column; align-items: center; margin: 0 auto; }
  .service-card  { width: 85vw; min-height: auto; margin-left: 0; margin-bottom: 24px; }

  /* Contact */
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  .contact-bottom    { grid-template-columns: 1fr; }
  .contact-map-wrap  { min-height: 300px; }
  .contact-map-wrap iframe { min-height: 300px; }

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

/* ===========================
   RESPONSIVE — MOBILE 768px
=========================== */
@media (max-width: 768px) {

  /* Typography */
  .section-title { font-size: 2rem; }
  .section-desc  { font-size: 1.1rem; }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  .nav-links.open  { opacity: 1; pointer-events: all; }
  .nav-link        { font-size: 1.4rem; }
  .hamburger       { display: flex; z-index: 1001; }

  /* Hero */
  .hero-title      { font-size: 2.2rem; }
  .hero-desc       { font-size: 0.95rem; }
  .hero-btns       { flex-direction: column; align-items: center; }

  /* Gallery Slider */
  .gallery-slider  { height: 70vw; min-height: 320px; }
  .gs-overlay      { padding: 0 5% 0 5%; align-items: flex-end; text-align: right; padding-bottom: 60px; }
  .gs-title        { font-size: 1.4rem; }
  .gs-desc         { font-size: 0.88rem; }
  .gs-btn          { width: 38px; height: 38px; font-size: 0.85rem; }
  .gs-dots         { bottom: 70px; }
  .gs-view-all     { bottom: 16px; }
  .gs-view-all .btn { padding: 10px 22px; font-size: 0.88rem; }

  /* About */
  .about-text-side { padding: 40px 20px; }
  .about-text-side .section-title { font-size: 1.8rem; }
  .about-stats { gap: 0; }
  .stat { padding: 0 6px; }
  .stat-num { font-size: 1.5rem; }

  /* Services */
  .services { padding: 60px 0; }

  /* Contact */
  .contact { padding: 60px 0; }
  .contact-cards-row { grid-template-columns: 1fr; gap: 10px; }
  .contact-social-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 50px 0 0; }

  /* Gallery Modal */
  .gm-header  { padding: 12px 16px; }
  .gm-logo    { display: none; }
  .gm-tabs    { padding: 16px 12px 0; gap: 8px; }
  .gm-tab     { padding: 8px 14px; font-size: 0.82rem; }
  .gm-grid    { columns: 2; padding: 16px 12px 40px; }
}

/* ===========================
   RESPONSIVE — SMALL 480px
=========================== */
@media (max-width: 480px) {

  /* Hero */
  .gallery-slider  { height: 85vw; min-height: 280px; }
  .gs-overlay      { background: rgba(0,0,0,0.55); padding: 16px; padding-bottom: 70px; }
  .gs-title        { font-size: 1.2rem; }
  .gs-desc         { display: none; }

  /* Contact */
  .contact-cards-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-social { justify-content: flex-start; }

  /* Floating buttons */
  .whatsapp-float { bottom: 18px; left: 18px; width: 50px; height: 50px; font-size: 1.4rem; }
  .scroll-top     { bottom: 90px; left: 18px; }
  .chatbot-wrapper { bottom: 18px; right: 18px; }

  /* Gallery Modal */
  .gm-grid { columns: 1; }
  .gm-tabs { gap: 6px; }
  .gm-tab  { padding: 7px 12px; font-size: 0.78rem; }
  .gm-title-wrap h2 { font-size: 1rem; }
}
