@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=JetBrains+Mono:wght@300;400&display=swap');

:root {
  --bg: #050505;
  --bg-alt: #0a0a0a;
  --gold: #c9a96e;
  --gold-bright: #d4af37;
  --gold-glow: rgba(201, 169, 110, 0.3);
  --cyan: #00f0ff;
  --text: #f0ece4;
  --text-dim: rgba(240, 236, 228, 0.6);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

body {
  overflow-x: hidden;
  background-color: var(--bg);
}

body.rtl-mode {
  direction: rtl;
  text-align: right;
}

body.rtl-mode .lang-option {
  text-align: right;
}

body.rtl-mode .about-grid, 
body.rtl-mode .contact-grid {
  direction: rtl;
}

body.rtl-mode .form-group input, 
body.rtl-mode .form-group textarea {
  text-align: right;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-bright);
}

/* Selection */
::selection {
  background-color: var(--gold);
  color: var(--bg);
}

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

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.loaded {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 120px;
  height: 60px;
  margin-bottom: 20px;
}

.logo-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 2s ease forwards;
}

.logo-path-2 {
  animation-delay: 0.5s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.preloader-text {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Custom Cursor */
@media (pointer: fine) {
  body.custom-cursor-active {
    cursor: none;
  }
  body.custom-cursor-active a, 
  body.custom-cursor-active button {
    cursor: none;
  }
  
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
  }
  
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
  }
  
  .cursor-ring.expanded {
    width: 60px;
    height: 60px;
    background-color: rgba(201, 169, 110, 0.1);
  }
}

/* Scroll Progress Bar */
.progress-bar {
  position: fixed;
  left: 0;
  top: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-bright));
  z-index: 1001;
  transform-origin: top;
  height: 0;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.main-nav.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding: 1rem 3rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-mark {
  font-weight: 700;
}

.nav-logo .logo-text {
  font-size: 1.2rem;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: color 0.3s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.lang-toggle:hover {
  background: var(--gold);
  color: var(--bg);
}

.lang-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: rgba(5,5,5,0.95);
  border: 1px solid var(--gold);
  border-radius: 4px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  z-index: 2000;
}

.lang-dropdown:hover .lang-menu,
.lang-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 0.8rem 1rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover, .lang-option.active {
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background-color: var(--gold);
  transition: 0.3s;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.98);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin-bottom: 2rem;
}

.mobile-nav-links a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text);
  letter-spacing: 2px;
}

/* Cinematic Hero */
.cinematic-container {
  position: relative;
  height: 700vh;
}

.cinematic-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}

.scene {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
  opacity: 0;
  /* Transitions handled by JS */
}

.scene.active {
  opacity: 1;
}

.scene-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scene-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 50%);
  z-index: 1;
}

.scene-overlay-dark {
  background: rgba(5,5,5,0.6);
}

.scene-text {
  position: absolute;
  z-index: 2;
  padding: 5%;
}

.scene-text-bottom {
  bottom: 5%;
  left: 5%;
}

.scene-text-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.scene-text-left {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.scene-text-right {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  text-align: right;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--gold);
  letter-spacing: 8px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--text-dim);
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

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

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-dim);
}

.scene-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.scene-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.scene-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text-dim);
  margin-bottom: 3rem;
}

.cta-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  transition: all 0.4s;
}

.cta-btn:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 20px var(--gold-glow);
}

.scene-indicators {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: 0.3s;
}

.indicator.active {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  transform: scale(1.5);
}

/* About Section */
.about-section {
  padding: 10rem 5%;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--text-dim);
  margin-bottom: 3rem;
}

.about-text, .about-text-secondary {
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--text-dim);
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 110, 0.3);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  display: inline-block;
}

.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  vertical-align: top;
}

.stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* Services Section */
.services-section {
  padding: 8rem 5%;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 3rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  color: var(--gold);
  margin-bottom: 2rem;
  background: rgba(201,169,110,0.1);
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.2);
  transition: 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--bg);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Projects Section */
.projects-section {
  padding: 8rem 5%;
  background: var(--bg-alt);
}

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

.section-header .section-line {
  margin: 0 auto 2rem;
}

.filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: transparent;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.filter-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
}

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

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #111;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.project-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin: 0.5rem 0;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-name {
  transform: translateY(0);
}

.project-category, .project-count {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.project-count {
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.project-card.hidden {
  display: none;
}

.project-card.filtering-out {
  opacity: 0;
  transform: scale(0.9);
  transition: 0.3s;
}

.project-card.filtering-in {
  opacity: 1;
  transform: scale(1);
  transition: 0.3s;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-wrapper {
  display: flex;
  width: 95%;
  height: 90vh;
  gap: 2rem;
  background: var(--bg-alt);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.lightbox-visual {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 2rem;
}

.lightbox-story-panel {
  width: 400px;
  background: var(--bg);
  padding: 2.5rem;
  overflow-y: auto;
  border-left: 1px solid var(--glass-border);
  display: none; /* hidden by default if no story */
}

.lightbox-story-panel.active {
  display: block;
}

.lightbox-story-content h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.lightbox-story-content p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.lightbox-counter {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--gold);
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.3s;
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--gold);
  color: var(--bg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5,5,5,0.5);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
  z-index: 10;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--bg);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* Responsive Lightbox */
@media (max-width: 900px) {
  .lightbox-wrapper {
    flex-direction: column;
    height: 95vh;
  }
  .lightbox-story-panel {
    width: 100%;
    height: 40vh;
    border-left: none;
    border-top: 1px solid var(--glass-border);
  }
  .lightbox-visual {
    height: 55vh;
    flex: none;
    padding: 1rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 8rem 5%;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  transition: 0.3s;
}

.contact-item:hover .contact-icon {
  background: var(--gold);
  color: var(--bg);
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.contact-value {
  font-size: 1.1rem;
  color: var(--text);
  transition: 0.3s;
}

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

.contact-form-wrapper {
  background: var(--glass);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  color: var(--text);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 10px var(--gold-glow);
  background: rgba(0, 0, 0, 0.4);
}

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

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.submit-btn:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 20px var(--gold-glow);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-error {
  color: #ff4444;
  font-size: 0.8rem;
  display: block;
  margin-top: 0.5rem;
}

.form-success {
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--gold);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  color: var(--gold);
  margin-top: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Footer */
.main-footer {
  padding: 3rem 5%;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  background: var(--bg-alt);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-social a {
  color: var(--text-dim);
  transition: color 0.3s;
  display: inline-block;
  margin-left: 1rem;
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

/* SEO Pages Styles */
.seo-page {
  padding-top: 80px;
}

.seo-hero {
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-alt), #1a1a1a);
  text-align: center;
  padding: 0 5%;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.seo-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.seo-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-dim);
}

.seo-content {
  max-width: 800px;
  margin: 5rem auto;
  padding: 0 5%;
}

.seo-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin: 4rem 0 1.5rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.seo-content h2:first-child {
  margin-top: 0;
}

.seo-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}

.seo-content p {
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.seo-cta {
  max-width: 700px;
  margin: 4rem auto 6rem;
  text-align: center;
  background: var(--glass);
  padding: 4rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.seo-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.seo-cta p {
  color: var(--text-dim);
  margin-bottom: 2rem;
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers for stagger effect */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-nav {
    padding: 1rem 2rem;
  }
  .scene-indicators {
    right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }
  .filter-btn {
    white-space: nowrap;
  }
  .scene-text-left, .scene-text-right {
    left: 5%;
    right: 5%;
    text-align: left;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .cta-heading {
    font-size: 2rem;
  }
  .stat-card {
    padding: 1.5rem;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
