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

:root {
  --gold: #c8a96e;
  --dark: #1a1a2e;
  --text: #2d2d2d;
  --muted: #666;
  --bg-light: #f8f6f2;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  direction: rtl;
  font-size: 16px;
  line-height: 1.6;
}

/* HERO */
.hero {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* GOLD HERO INFO SECTION */
.hero-info {
  background: #c9aa6e;
  text-align: center;
  padding: 0 24px 40px;
}

.hero-info .logo-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 5px solid #c9aa6e;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  background: #fff;
  margin: -65px auto 20px;
  position: relative;
  z-index: 2;
}

.hero-info .logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 32px;
}

/* ICON BUTTONS ROW */
.icon-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin-bottom: 28px;
}

.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.15s;
}

.icon-btn:active {
  transform: scale(0.93);
}

.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.icon-btn span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.icon-circle-sm {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.icon-circle-sm svg {
  width: 18px;
  height: 18px;
}

/* SAVE CONTACT BUTTON */
.save-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  max-width: 380px;
  transition: opacity 0.15s;
}

.save-contact-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.save-contact-btn:active {
  opacity: 0.85;
}

/* SHARED BUTTON BASE (for form submit + cta) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); opacity: 0.85; }

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-submit   { background: var(--dark); color: #fff; padding: 14px 40px; font-size: 1rem; cursor: pointer; }

/* PAGE CONTENT */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTIONS */
section {
  padding: 64px 0;
  border-bottom: 1px solid #efefef;
}

section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 32px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ABOUT */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 14px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-image-side {
  position: sticky;
  top: 24px;
  text-align: center;
}

.about-image-side .logo-wrap-large {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 5px solid var(--gold);
  box-shadow: 0 8px 32px rgba(200,169,110,0.25);
}

.about-image-side .logo-wrap-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-name-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.about-name-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid var(--gold);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200,169,110,0.2);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.service-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

/* GALLERY MASONRY */
.gallery-masonry {
  columns: 3;
  column-gap: 10px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  display: block;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.35);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

@media (max-width: 900px) {
  .gallery-masonry { columns: 2; }
}

@media (max-width: 500px) {
  .gallery-masonry { columns: 2; column-gap: 6px; }
  .gallery-item { margin-bottom: 6px; }
}

/* TESTIMONIALS SLIDER */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.testimonial {
  min-width: 100%;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32px 36px;
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  flex: 1;
}

.testimonial-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.t-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.t-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}

.t-btn:hover { background: var(--gold); }

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .testimonial { padding: 24px 20px; }
  .testimonial-text { font-size: 0.92rem; }
}

/* CTA SECTION */
.cta-section {
  background: var(--dark);
  padding: 64px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

.cta-section .btn {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* CONTACT FORM */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #444;
}

.contact-info-item a {
  color: #444;
  text-decoration: none;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #ddd;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: #fafafa;
  direction: rtl;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

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

/* FOOTER */
footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 28px 24px;
  font-size: 0.88rem;
  line-height: 2;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-wrap,
  .contact-wrap { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-image-side { order: -1; position: static; }
  .hero { height: 320px; }
  .hero-name { font-size: 1.7rem; }
}

@media (max-width: 600px) {
  .hero { height: 230px; }
  .hero-name { font-size: 1.4rem; }
  .hero-tagline { font-size: 0.88rem; }
  .hero-info .logo-wrap { width: 100px; height: 100px; margin-top: -50px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.3rem; }
  .icon-circle { width: 50px; height: 50px; }
  .icon-circle svg { width: 22px; height: 22px; }
  .icon-buttons { gap: 16px 20px; }
}
