/* ==========================================================================
   naz by nazish — Luxury Interior Design & Staging
   Design System & Master Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Warm Alabaster, Champagne Gold, Deep Charcoal */
  --bg-color: #f7f3ee;
  --bg-overlay: rgba(247, 243, 238, 0.45);
  
  --card-bg: rgba(255, 253, 250, 0.82);
  --card-bg-hover: rgba(255, 255, 255, 0.95);
  --card-border: rgba(212, 175, 55, 0.22);
  --card-border-strong: rgba(197, 160, 89, 0.55);
  
  --gold-primary: #C5A059;
  --gold-accent: #D4AF37;
  --gold-dark: #9A7B39;
  --gold-light: #F4ECE1;
  
  --text-primary: #1C1917;
  --text-secondary: #57534E;
  --text-muted: #78716C;
  --text-inverse: #FFFFFF;
  
  --glass-blur: blur(16px);
  --shadow-subtle: 0 10px 30px -10px rgba(41, 37, 36, 0.06);
  --shadow-elevated: 0 20px 40px -15px rgba(197, 160, 89, 0.18);
  --shadow-card: 0 8px 32px 0 rgba(28, 25, 23, 0.05);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Universal Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

/* 
   3. Fixed Universal Background Constraint:
   Apply a fixed, non-scrolling background image across the entire site/body
   with 80% opacity so the background image stays stationary at 80% opacity while content scrolls smoothly.
*/
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  position: relative;
  background-color: var(--bg-color);
  min-height: 100vh;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('public/assets/background.jpg'), url('/assets/background.jpg'), url('assets/background.jpg');
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 992px) {
  body::before {
    background-attachment: fixed;
  }
}

/* Base Link & Typography Styles */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.serif-italic {
  font-style: italic;
  font-family: var(--font-heading);
}

/* Container & Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.section {
  padding: 3rem 0;
  position: relative;
}

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

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.glass-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-strong);
  box-shadow: var(--shadow-elevated);
}

.glass-panel {
  background: rgba(255, 253, 250, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

/* Gold Accent Badge & Eyebrows */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold-primary);
}

.section-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    white-space: normal;
    text-align: center;
    word-break: break-word;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
  color: #FFFFFF;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-secondary {
  background: rgba(255, 253, 250, 0.8);
  color: var(--text-primary);
  border-color: var(--card-border-strong);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   Navigation Bar (Frosted Glass Sticky Header)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(247, 243, 238, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 0.5rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 68px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.brand-text-container {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  z-index: 1002;
  position: relative;
  pointer-events: auto;
}

.mobile-toggle:hover, .mobile-toggle.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(255, 253, 250, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1001;
  border-top: 1px solid var(--card-border);
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mobile-menu.open {
  display: flex !important;
  animation: fadeInDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-primary);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: all var(--transition-fast);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--gold-dark);
  font-style: italic;
  padding-left: 0.5rem;
}

@media (max-width: 991px) {
  .nav-container {
    min-height: 70px;
    padding: 0.35rem 0;
  }
  .brand-logo-img {
    height: 48px;
    max-width: 150px;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .lang-switcher {
    padding: 0.2rem 0.3rem;
  }
  .lang-btn {
    padding: 0.35rem 0.55rem;
    min-height: 38px;
    min-width: 38px;
    font-size: 0.8125rem;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-actions .btn {
    display: none;
  }
}

/* ==========================================================================
   Page View Switching System
   ========================================================================== */
.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.page-view.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.4s ease-in-out forwards;
}

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

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

/* ==========================================================================
   Home Page Sections
   ========================================================================== */
.hero-section {
  padding: 1.5rem 0 2.5rem;
  min-height: auto;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-section {
    padding: 3.5rem 0 5rem;
    min-height: calc(100vh - 80px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2rem, 7vw, 4.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1.15rem, 4.5vw, 2.35rem);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

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

.built-for-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .built-for-pill {
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
}

.built-for-label {
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.built-for-text {
  color: var(--text-secondary);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-primary-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
}

.hero-secondary-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}

.hero-secondary-ctas .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 0;
  }
  .hero-primary-cta {
    width: auto;
  }
  .hero-secondary-ctas {
    display: flex;
    width: auto;
    gap: 0.875rem;
  }
  .hero-secondary-ctas .btn {
    width: auto;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* Stat Metrics Bar */
.metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem 0.5rem;
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border-strong);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

@media (min-width: 768px) {
  .metrics-bar {
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 1.5rem 1.25rem;
  }
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 5vw, 2.25rem);
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  font-weight: 600;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .metric-label {
    font-size: 0.8125rem;
    margin-top: 0.4rem;
  }
}

/* Section Centered Headers */
.section-header-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-header-center {
    margin-bottom: 4rem;
  }
}

.eyebrow-center {
  justify-content: center;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.1875rem;
    margin-bottom: 3rem;
  }
}

/* Feature Image Frame */
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--card-border-strong);
  max-width: 100%;
}

.hero-image-frame img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

@media (min-width: 640px) {
  .hero-image-frame img {
    height: 350px;
  }
}

@media (min-width: 992px) {
  .hero-image-frame {
    border-radius: var(--radius-lg);
  }
  .hero-image-frame img {
    height: 480px;
  }
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
}

@media (min-width: 768px) {
  .hero-badge-overlay {
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
  }
}

.hero-badge-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .hero-badge-title {
    font-size: 1.25rem;
  }
}

.hero-badge-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

@media (min-width: 768px) {
  .hero-badge-text {
    font-size: 0.8125rem;
  }
}

/* 3 Step Process */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.process-card {
  padding: 1.35rem 1.15rem;
  position: relative;
  border-left: 3px solid var(--gold-primary);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

@media (min-width: 768px) {
  .process-card {
    padding: 2.5rem 2rem;
    border-left: 1px solid var(--card-border);
  }
  .process-card:hover {
    border-color: var(--gold-primary);
  }
}

.process-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: rgba(197, 160, 89, 0.35);
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  line-height: 1;
  font-style: italic;
}

@media (min-width: 768px) {
  .process-number {
    font-size: 3.5rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .process-title {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
  }
}

.process-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonial Card */
.testimonial-card {
  padding: 2.25rem 1.25rem;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--card-border-strong);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 4rem 3rem;
  }
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .testimonial-stars {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3.5vw, 2.1rem);
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--gold-dark);
  margin-top: 0.25rem;
}

/* Before & After Interactive Preview */
.comparison-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--card-border-strong);
  margin-top: 2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  position: relative;
  overflow: hidden;
}

.comparison-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.comparison-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(28, 25, 23, 0.85);
  color: #FFFFFF;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.comparison-tag.after {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
}

/* ==========================================================================
   Pricing Page
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-card {
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .pricing-card {
    padding: 1.75rem 1.125rem;
  }
}

.pricing-card.featured {
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-8px);
}

@media (max-width: 991px) {
  .pricing-card.featured {
    transform: none;
    margin-top: 0.75rem;
  }
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
  white-space: nowrap;
  max-width: 90%;
}

.pricing-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
  min-width: 0;
}

.pricing-title {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
  word-break: break-word;
}

.pricing-price-currency {
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 0.25rem;
}

.pricing-scope {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  word-break: break-word;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  min-width: 0;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.pricing-card .btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  padding: 0.875rem 1.25rem;
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   Portfolio Page
   ========================================================================== */
.portfolio-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border-strong);
  background: rgba(255, 253, 250, 0.75);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(28, 25, 23, 0.15);
}

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

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

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

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.portfolio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-image-wrapper img {
  transform: scale(1.08);
}

.portfolio-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 253, 250, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-card-title {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.portfolio-card-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(28, 25, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-modal.open {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

.lightbox-content {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  -webkit-overflow-scrolling: touch;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 20;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold-light);
  color: var(--gold-dark);
  border-color: var(--gold-primary);
}

.lightbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.lightbox-img-wrapper {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-alt);
}

.lightbox-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.lightbox-details {
  display: flex;
  flex-direction: column;
}

.lightbox-title {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.lightbox-impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--gold-dark);
  font-weight: 600;
  background: var(--gold-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  width: fit-content;
  border: 1px solid rgba(202, 138, 4, 0.2);
}

.lightbox-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.lightbox-wa-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 0.875rem;
  padding: 0.85rem 1rem;
}

/* Tablet & Desktop Lightbox Improvements */
@media (min-width: 768px) {
  .lightbox-modal {
    padding: 2rem;
  }

  .lightbox-content {
    padding: 2.25rem;
    border-radius: 20px;
  }

  .lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .lightbox-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
  }

  .lightbox-image {
    height: 380px;
  }

  .lightbox-title {
    font-size: 1.85rem;
  }

  .lightbox-desc {
    font-size: 0.9375rem;
  }

  .lightbox-wa-btn {
    width: auto;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }
}

.contact-info-panel {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact-info-panel {
    padding: 3rem 2.25rem;
    gap: 2rem;
  }
}

.contact-panel-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .contact-panel-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}

.contact-panel-subtitle {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .contact-panel-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--card-border);
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .contact-channel-item {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.contact-channel-item:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateX(4px);
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid var(--card-border);
}

@media (min-width: 768px) {
  .contact-icon-box {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

.contact-channel-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

@media (min-width: 768px) {
  .contact-channel-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
}

.contact-channel-detail {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .contact-channel-detail {
    font-size: 0.875rem;
  }
}

.contact-form-panel {
  padding: 1.5rem 1.25rem;
}

@media (min-width: 768px) {
  .contact-form-panel {
    padding: 3rem 2.5rem;
  }
}

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

@media (min-width: 768px) {
  .form-group {
    margin-bottom: 1.5rem;
  }
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
  .form-label {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
  }
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--card-border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}

.faq-item.open {
  border-color: var(--gold-dark);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-trigger {
  width: 100%;
  padding: 1.15rem 1.15rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  gap: 0.875rem;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .faq-trigger {
    padding: 1.6rem 2rem;
    font-size: 1.35rem;
    gap: 1.25rem;
  }
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
  pointer-events: none;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-dark);
  color: #FFFFFF;
  border-color: var(--gold-dark);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.15rem;
}

@media (min-width: 768px) {
  .faq-content {
    padding: 0 2rem;
  }
}

.faq-item.open .faq-content {
  padding: 0 1.15rem 1.25rem 1.15rem;
}

@media (min-width: 768px) {
  .faq-item.open .faq-content {
    padding: 0 2rem 1.75rem 2rem;
  }
}

.faq-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.site-footer {
  background: rgba(28, 25, 23, 0.95);
  backdrop-filter: blur(20px);
  color: #E7E5E4;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

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

.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: brightness(1.1);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.9375rem;
  color: #A8A29E;
  max-width: 400px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: #A8A29E;
}

.footer-link:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #78716C;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ==========================================================================
   Language Switcher & RTL Support
   ========================================================================== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border-strong);
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-full);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  color: var(--gold-dark);
}

.lang-btn.active {
  background: var(--gold-dark);
  color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.lang-divider {
  color: var(--card-border-strong);
  font-size: 0.7rem;
  user-select: none;
}

.mobile-lang-switcher {
  padding: 1rem 0 0.5rem;
  border-top: 1px solid var(--card-border);
  margin-top: 1rem;
}

.mobile-lang-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-lang-buttons {
  display: flex;
  gap: 0.5rem;
}

.mobile-lang-buttons .lang-btn {
  flex: 1;
  min-height: 44px;
  padding: 0.6rem 0.5rem;
  border: 1px solid var(--card-border-strong);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  background: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-fast);
}

.mobile-lang-buttons .lang-btn.active {
  background: var(--gold-dark);
  color: #FFFFFF;
  border-color: var(--gold-dark);
  box-shadow: 0 2px 6px rgba(184, 134, 11, 0.25);
}

/* RTL Styles for Arabic */
[dir="rtl"] {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: right;
}

[dir="rtl"] .hero-title,
[dir="rtl"] .section-title,
[dir="rtl"] .brand-logo,
[dir="rtl"] .footer-brand {
  font-family: 'Cormorant Garamond', 'Amiri', 'Traditional Arabic', serif;
}

[dir="rtl"] .eyebrow {
  letter-spacing: normal;
}

[dir="rtl"] .form-select {
  background-position: left 1rem center;
  padding-left: 2.5rem;
  padding-right: 1rem;
}

[dir="rtl"] .process-card {
  border-left: none;
  border-right: 3px solid var(--gold-primary);
}

@media (min-width: 768px) {
  [dir="rtl"] .process-card {
    border-right: 1px solid var(--card-border);
  }
}

