/* ============================================================
   ARMANE PHOTOGRAPHY — Premium Stylesheet
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-surface: #1a1a1a;
  --bg-elevated: #222222;
  --text-primary: #f5f0eb;
  --text-secondary: #b0a99f;
  --text-muted: #6b6560;
  --accent: #c9a96e;
  --accent-hover: #dbbf8a;
  --accent-dark: #a88b4a;
  --border-light: rgba(201, 169, 110, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --overlay-dark: rgba(10, 10, 10, 0.65);
  --overlay-heavy: rgba(0, 0, 0, 0.8);
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs: 0.75rem;
  --fs-small: 0.875rem;
  --fs-body: 1rem;
  --fs-lg: 1.125rem;
  --fs-h4: 1.35rem;
  --fs-h3: 1.75rem;
  --fs-h2: 2.5rem;
  --fs-h1: 3.5rem;
  --fs-hero: 4.5rem;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-section: 7rem;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(201, 169, 110, 0.08);
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-normal);
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--bg-primary);
  overflow-x: clip;
}

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

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

a:hover {
  color: var(--accent-hover);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin-bottom: 1rem;
}

strong {
  color: var(--text-primary);
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Utility Classes ── */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: var(--space-section) 0;
}

.section-dark {
  background: var(--bg-secondary);
}

/* ── Section Headers ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  margin: 1.25rem 0 2rem;
  border: none;
}

.divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.solid,
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 2.5rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

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

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

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

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link-wrapper {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-toggle-icon {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.dropdown-toggle-icon:hover {
  color: var(--text-primary);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  transition: all var(--transition);
  display: block;
}

.nav-dropdown-link:hover {
  background: rgba(201, 169, 110, 0.08);
  color: var(--accent);
  padding-left: 1.75rem;
}

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

.nav-cta {
  padding: 0.5rem 1.5rem !important;
  font-size: var(--fs-xs) !important;
}

.lang-toggle {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--accent);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all var(--transition);
}

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

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition);
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0.5rem 0;
  letter-spacing: 1.5px;
  border-bottom: 1px solid transparent;
}

.btn-ghost:hover {
  border-bottom-color: var(--accent);
  color: var(--accent-hover);
}

.btn-lg {
  padding: 1.1rem 2.75rem;
  font-size: var(--fs-body);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
  width: 100%;
}

.header-contact-info {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-contact-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.header-contact-link:hover,
.header-social-link:hover {
  color: var(--accent);
}

.header-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-social-link {
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.hero-label {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-light);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0.1em 0;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: var(--fw-normal);
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── Page Banner (Subpages) ── */
.page-banner {
  position: relative;
  min-height: 50vh;
  padding: 8rem 0 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-hero-img {
    object-position: center 42%;
  }

  .about-hero-img {
    object-position: center 40%;
  }

  .services-hero-img {
    object-position: center 60%;
  }
}


/* ── Intro Section ── */
.intro-section {
  text-align: center;
}

.intro-text {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-style: italic;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: var(--fw-light);
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(201, 169, 110, 0.04) 100%);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card h3 {
  font-size: var(--fs-h4);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border-light);
}

.price-highlight {
  border-color: var(--accent) !important;
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(201, 169, 110, 0.04) 100%);
}

.price-tag {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  color: var(--accent);
  font-weight: var(--fw-bold);
  margin: 0.5rem 0;
}

.price-note {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* Service Cards with Images */
.service-card-img {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card-img:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-image {
  height: 260px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card-img:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 2rem;
}

.card-body h3 {
  font-size: var(--fs-h4);
  margin-bottom: 0.75rem;
}

.card-body p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

/* ── Featured Gallery ── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 4/5;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ── Testimonials ── */
.testimonials-section {
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: var(--fs-small);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: var(--fs-small);
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--accent);
}

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(201, 169, 110, 0.06) 100%);
  padding: var(--space-section) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-banner h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.about-bio h2 {
  margin-bottom: 0.5rem;
}

.about-bio p {
  margin-bottom: 1.25rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
}

.value-card h3 {
  font-size: var(--fs-h4);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
}

/* Press Bar */
.press-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--text-muted);
  font-style: italic;
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.blog-card-body {
  padding: 2rem;
}

.blog-card-date {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: var(--fs-h4);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.08);
  border-radius: 50%;
  color: var(--accent);
}

.contact-info-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: var(--fs-body);
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--text-primary);
}

.contact-info-value a:hover {
  color: var(--accent);
}

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

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

.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: border-color var(--transition);
  outline: none;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b0a99f' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--accent);
  border-radius: var(--border-radius-lg);
  margin-top: 2rem;
}

.form-success h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.map-container iframe {
  display: block;
  border-radius: var(--border-radius-lg);
}

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

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

.footer-tagline {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ── FAQ ── */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-medium);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--overlay-heavy);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: all var(--transition);
}

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

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-counter {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* ── Animations ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
  opacity: 0;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.19s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.26s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.33s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: 0.47s;
}

.stagger-children.visible>*:nth-child(8) {
  transition-delay: 0.54s;
}

.stagger-children.visible>*:nth-child(9) {
  transition-delay: 0.61s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root {
    --fs-hero: 3.2rem;
    --fs-h1: 2.8rem;
    --fs-h2: 2rem;
  }

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

  .about-image {
    position: static;
  }

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

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

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

  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --fs-hero: 2.5rem;
    --fs-h1: 2.2rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.4rem;
    --space-section: 4.5rem;
  }

@media (max-width: 480px) {
  :root {
    --fs-hero: 2.2rem;
    --fs-h1: 1.9rem;
    --fs-h2: 1.6rem;
    --fs-h3: 1.3rem;
  }
}

  section {
    padding: var(--space-section) 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .navbar {
    padding: 1rem 1.25rem;
  }

  .navbar.solid,
  .navbar.scrolled {
    padding: 0.75rem 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2.5rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-link-wrapper {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-toggle-icon {
    padding: 0.5rem;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    min-width: 100%;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
  }

  .nav-item-dropdown:hover .nav-dropdown,
  .nav-item-dropdown:focus-within .nav-dropdown {
    transform: none;
  }

  .nav-item-dropdown.mobile-active .nav-dropdown {
    max-height: 600px;
    margin-top: 0.5rem;
  }

  .nav-dropdown-link {
    padding: 0.6rem 0 0.6rem 1.5rem;
    font-size: 0.75rem;
  }

  .nav-dropdown-link:hover {
    padding-left: 2rem;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 500px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .press-bar {
    font-size: var(--fs-body);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-hero: 2rem;
    --fs-h1: 1.8rem;
    --fs-h2: 1.5rem;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .services-grid {
    gap: 0.75rem;
  }

  .card-image {
    height: 180px;
  }

  .card-body {
    padding: 1.25rem;
  }

  .card-body h3 {
    font-size: 1.1rem;
  }

  .card-body p {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .hero-title {
    font-size: var(--fs-hero);
  }

  .page-banner {
    height: 40vh;
    min-height: 280px;
  }
}

/* ── Language Switcher & Search Toggle ── */
.nav-actions-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all var(--transition);
}

.lang-btn:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 2px 8px rgba(201, 169, 110, 0.2);
}

.search-toggle {
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all var(--transition);
}

.search-toggle:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

/* ── Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
}

.search-close:hover {
  color: var(--accent);
}

.search-container {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  align-items: center;
}

.search-input-wrapper svg {
  color: var(--accent);
  margin-right: 1rem;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: var(--fs-h3);
  font-family: var(--font-heading);
  padding: 1rem 0;
  outline: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-result-item {
  display: block;
  padding: 1rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.search-result-item h4 {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.search-result-url {
  font-size: var(--fs-xs);
  color: var(--accent);
}

.no-results {
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
  padding: 2rem;
}

/* ==========================================================================
   SEO & ACCESSIBILITY
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Responsive Nav Logo */
@media (max-width: 768px) {
  .nav-logo {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
}