/* ==========================================================================
   AL AMEEN INTERIOR DECORATION WORKS - ARCHITECTURAL DESIGN SYSTEM
   Location: Al Muwaihat 3, Ajman, United Arab Emirates
   Phone: +971 6 537 0705
   Google Maps: https://maps.app.goo.gl/BqJn327GXz3c85bx7
   ========================================================================== */

:root {
  /* Color Palette - Norm Architects Minimalist Luxury & Arabian Craftsmanship */
  --bg-dark: #111214;
  --bg-card-dark: #191B1F;
  --bg-sand: #F7F5F0;
  --bg-sand-accent: #EFECE6;
  --color-gold: #C5A880;
  --color-gold-light: #E5D5C0;
  --color-gold-dark: #A48760;
  --text-dark: #151618;
  --text-muted: #6B707B;
  --text-light: #FAF8F5;
  --text-light-muted: #A3A8B3;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(197, 168, 128, 0.3);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-elevated: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-dark: 0 25px 50px rgba(0, 0, 0, 0.5);
  
  /* Layout */
  --container-max: 1320px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-sand);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--color-gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--text-light);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section-subtitle.light {
  color: var(--text-light-muted);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-gold:hover {
  background-color: #d4b892;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 168, 128, 0.3);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Header & Glass Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(17, 18, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.scrolled {
  background-color: rgba(17, 18, 20, 0.96);
  height: 72px;
  box-shadow: var(--shadow-dark);
  border-bottom-color: rgba(197, 168, 128, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo Styling */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-main span {
  color: var(--color-gold);
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

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

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

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

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.phone-link {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link:hover {
  color: var(--text-light);
}

.mobile-call-btn {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--bg-dark);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  font-size: 1.3rem;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}

/* Hero Section Layout */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
  padding-bottom: 90px;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.slide-item.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(17, 18, 20, 0.85) 0%,
    rgba(17, 18, 20, 0.55) 50%,
    rgba(17, 18, 20, 0.92) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 40px 0;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-light);
}

.hero-headline span {
  color: var(--color-gold);
  font-style: italic;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  margin-bottom: 36px;
  max-width: 620px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats Bar - Separate Block Flow */
.hero-stats-bar {
  position: relative;
  z-index: 4;
  width: 100%;
  background: rgba(25, 27, 31, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 20px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light-muted);
  margin-top: 6px;
}

/* About / Narrative Section */
.about-section {
  padding: 120px 0;
  background-color: var(--bg-sand);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-narrative p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-narrative blockquote {
  border-left: 2px solid var(--color-gold);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-dark);
}

/* Transformation Mastery Static Reveal Slider */
.ba-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-elevated);
  user-select: none;
  cursor: ew-resize;
  background-color: #000;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}

.ba-image.after-img {
  z-index: 1;
}

.ba-image.before-img {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: opacity 0.1s ease-out;
}

.ba-badge-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.ba-badge {
  padding: 8px 14px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-left: 3px solid var(--color-gold);
  box-shadow: var(--shadow-subtle);
}

.ba-badge.after-tag {
  border-left-color: #4CAF50;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 3px;
  background-color: var(--color-gold);
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.ba-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-dark);
  font-size: 1rem;
  font-weight: 700;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-dark);
}

.service-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(197, 168, 128, 0.3);
  margin-bottom: 24px;
  line-height: 1;
}

.service-card:hover .service-num {
  color: var(--color-gold);
}

.service-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.service-desc {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '▪';
  color: var(--color-gold);
}

/* Portfolio Section */
.portfolio-section {
  padding: 120px 0;
  background-color: var(--bg-sand);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-item {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--bg-dark);
}

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

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(17, 18, 20, 0.92) 0%,
    rgba(17, 18, 20, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.project-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.project-title {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.project-meta {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(17, 18, 20, 0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  background-color: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.lightbox-img-wrapper {
  height: 520px;
  background-color: #000;
}

.lightbox-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-details {
  padding: 40px;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold);
}

.spec-list {
  margin: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.spec-label {
  color: var(--text-light-muted);
}

.spec-value {
  color: var(--color-gold);
  font-weight: 500;
}

/* Social Media Section & Interactive Grid */
.social-section {
  padding: 110px 0;
  background-color: var(--bg-sand-accent);
  border-top: 1px solid var(--border-light);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.social-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.social-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-elevated);
}

/* Per-brand hover colors */
.social-card[data-brand="instagram"]:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
  color: #fff;
}

.social-card[data-brand="whatsapp"]:hover {
  background-color: #25D366;
  border-color: #25D366;
  color: #fff;
}

.social-card[data-brand="facebook"]:hover {
  background-color: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

.social-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--bg-sand);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.social-card:hover .social-icon {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.social-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.social-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-card:hover .social-handle {
  color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.testimonial-card {
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
  position: relative;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 28px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.client-name {
  font-size: 1.05rem;
  color: var(--text-light);
  font-family: var(--font-serif);
}

.client-role {
  font-size: 0.78rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  background-color: var(--bg-sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 18px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bg-dark);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-val {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

.hours-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--color-gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 6px;
}

.contact-form {
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-elevated);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-field {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--bg-sand);
  border: 1px solid var(--border-light);
  outline: none;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.input-field:focus {
  border-color: var(--color-gold);
  background-color: #ffffff;
}

textarea.input-field {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  padding: 14px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-status.error {
  display: block;
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* Location Card (Clean Map Link Button) */
.location-card-box {
  margin-top: 50px;
  padding: 36px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.location-card-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.location-card-title {
  font-size: 1.1rem;
  font-family: var(--font-serif);
  color: var(--text-light);
}

.location-card-sub {
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

/* Site Footer */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  font-family: var(--font-serif);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLING (Strict Single Column Flow)
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid, .contact-grid, .lightbox-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .logo-sub {
    display: none;
  }

  .logo-main {
    font-size: 1.25rem;
  }

  .logo-img {
    height: 36px;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(17, 18, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    padding: 30px;
  }
  
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.15rem;
  }
  
  .header-cta-group .phone-link {
    display: none;
  }

  .mobile-call-btn, .mobile-toggle {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 0;
  }

  .hero-content {
    padding: 20px 0 40px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-stats-bar {
    position: relative;
    background: var(--bg-card-dark);
    margin-top: 20px;
    padding: 20px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
  }

  .ba-container {
    height: 320px;
  }

  .location-card-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .location-card-box .btn {
    width: 100%;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .ba-badge-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
