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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #cccccc;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-hebrew: 'Heebo', sans-serif;
}

/* ===== RTL / HEBREW SUPPORT ===== */
[dir="rtl"] body {
  font-family: var(--font-hebrew);
}
[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
[dir="rtl"] .about-stats {
  direction: rtl;
}
[dir="rtl"] .project-info {
  border-left: none;
  border-right: 2px solid var(--gold);
  text-align: right;
}
[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
  text-align: right;
}
[dir="rtl"] .contact-details {
  direction: rtl;
}
[dir="rtl"] .social-links {
  justify-content: flex-end;
}
[dir="rtl"] .submit-btn {
  align-self: flex-end;
}
[dir="rtl"] .hero-subtitle,
[dir="rtl"] .hero-slogan,
[dir="rtl"] .hero-scroll span,
[dir="rtl"] .section-tag,
[dir="rtl"] .about-title-tag {
  letter-spacing: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

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

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 30px;
  padding: 5px 12px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.45;
  filter: grayscale(50%);
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.lang-btn img {
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.lang-btn:hover {
  opacity: 0.85;
  filter: grayscale(0%);
}

.lang-btn.active {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.15);
}

.lang-divider {
  color: rgba(201, 168, 76, 0.4);
  font-size: 0.8rem;
  user-select: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1510 50%, #0a0a0a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-subtitle {
  font-size: 0.75rem;
  letter-spacing: 8px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: 12px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 30px;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 30px;
}

.hero-slogan {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--light-gray);
  letter-spacing: 4px;
  font-style: italic;
  margin-bottom: 50px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  font-size: 0.65rem;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 60px;
  background: var(--dark);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--gray);
}

.image-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.4; }
.image-placeholder p { font-size: 0.75rem; letter-spacing: 2px; }

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 3px;
}

.about-title-tag {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: block;
}

.about-text p {
  color: var(--light-gray);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

/* ===== PROJECTS ===== */
.projects {
  padding: 120px 60px;
  background: var(--black);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
}

.project-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.05);
}

.project-img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.project-img-placeholder i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  transition: all 0.4s;
}

.project-card:hover .project-img-placeholder {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.4);
}

.project-card:hover .project-img-placeholder i {
  opacity: 0.7;
  transform: scale(1.1);
}

.project-info {
  padding: 20px;
  background: var(--dark);
  border-left: 2px solid var(--gold);
}

.project-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.project-info p {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 1px;
}

.project-year {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  display: block;
  margin-top: 8px;
}

.project-credit {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 1px;
  margin-top: 6px;
  font-style: italic;
}

/* ===== QUOTES ===== */
.quotes {
  padding: 100px 60px;
  background: linear-gradient(135deg, #0f0d08 0%, #1a1510 50%, #0f0d08 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.quotes-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quote-slide {
  display: none;
  animation: fadeInQuote 0.8s ease;
}

.quote-slide.active {
  display: block;
}

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

.quote-slide p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--light-gray);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 25px;
}

.quote-slide p::before { content: '\201C'; color: var(--gold); font-size: 2rem; }
.quote-slide p::after  { content: '\201D'; color: var(--gold); font-size: 2rem; }

.quote-slide span {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.quote-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

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

/* ===== SERVICES ===== */
.services {
  padding: 120px 60px;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  padding: 40px 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.3s;
  text-align: center;
}

.service-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.03);
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 60px;
  background: var(--black);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.contact-info > p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--light-gray);
  font-size: 0.85rem;
}

.contact-item i {
  color: var(--gold);
  width: 18px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.whatsapp-link {
  border-color: rgba(37, 211, 102, 0.4);
  color: #25d366;
}

.whatsapp-link:hover {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

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

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

.submit-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.submit-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 40px 60px;
  text-align: center;
}

.footer p {
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-slogan {
  color: var(--gold) !important;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem !important;
  letter-spacing: 3px !important;
}

/* ===== PROJECT OVERLAY ===== */
.project-img-wrapper {
  position: relative;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.project-overlay i {
  font-size: 2rem;
  color: var(--gold);
}

.project-overlay span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.gallery-modal.open {
  display: flex;
}

.gallery-modal-inner {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-close:hover {
  background: var(--gold);
  color: var(--black);
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.gallery-main {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery-main-img {
  max-height: 70vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(201,168,76,0.2);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gallery-arrow:hover {
  background: var(--gold);
  color: var(--black);
}

.gallery-prev { left: -60px; }
.gallery-next { right: -60px; }

.gallery-counter {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gray);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.gallery-thumb {
  width: 70px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

/* ===== ACCESSIBILITY ===== */
.skip-to-content {
  position: fixed;
  top: -100px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 99999;
  transition: top 0.3s;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 10px;
}

.accessibility-widget {
  position: fixed;
  bottom: 160px;
  left: 30px;
  z-index: 9998;
}

.accessibility-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
  transition: all 0.3s;
}

.accessibility-toggle:hover {
  transform: scale(1.1);
}

.accessibility-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 220px;
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.accessibility-panel.open {
  display: flex;
}

.accessibility-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold);
}

.acc-close {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.9rem;
}

.accessibility-options {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 4px;
}

.acc-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--light-gray);
  padding: 9px 12px;
  cursor: pointer;
  font-family: var(--font-hebrew);
  font-size: 0.8rem;
  text-align: right;
  transition: all 0.2s;
  border-radius: 2px;
}

.acc-btn:hover, .acc-btn.active {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.acc-btn i { width: 16px; text-align: center; color: var(--gold); }

.acc-reset {
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  color: var(--gray);
}

.accessibility-statement-link {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.accessibility-statement-link a {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-decoration: underline;
}

/* Accessibility Modes */
body.high-contrast {
  filter: contrast(150%) brightness(1.1);
}

body.readable-font,
body.readable-font * {
  font-family: Arial, sans-serif !important;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

body.highlight-links a {
  text-decoration: underline !important;
  outline: 2px solid var(--gold);
}

body.stop-animations *,
body.stop-animations *::before,
body.stop-animations *::after {
  animation: none !important;
  transition: none !important;
}

/* Focus indicators for keyboard navigation */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== PAGE LOAD ANIMATION ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 8px;
  color: var(--gold);
  animation: loaderPulse 1s ease infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  left: 30px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: floatPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 60px;
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 40px 30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.3s;
  text-align: center;
}

.testimonial-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.03);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--light-gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #navbar { padding: 20px 30px; }
  #navbar.scrolled { padding: 14px 30px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { letter-spacing: 6px; }

  .about { padding: 80px 30px; }
  .about-content { grid-template-columns: 1fr; gap: 50px; }

  .projects { padding: 80px 30px; }
  .projects-grid { grid-template-columns: 1fr; }

  .quotes { padding: 70px 30px; }

  .services { padding: 80px 30px; }
  .services-grid { grid-template-columns: 1fr; }

  .contact { padding: 80px 30px; }
  .contact-content { grid-template-columns: 1fr; gap: 50px; }

  .footer { padding: 30px; }

  .about-stats { gap: 30px; }
}
