/*
 * ===========================================================
 * FP AUTOMATISMES - Romantic Poster Fashion Theme
 * ===========================================================
 * Theme: Beautiful, romantic, and fashionable poster aesthetic
 * Colors: Creams, dusty roses, and muted golds
 * Typography: Large, artistic serif fonts with generous letter-spacing
 * Layout: Non-traditional, design-driven, gallery-like
 * Focus: Visual storytelling and emotional connection
 * ===========================================================
 */

/* ===== CSS VARIABLES ===== */
:root {
  /* Romantic Palette - Creams, Dusty Roses, Muted Golds */
  --color-cream: #F5F1E8;
  --color-cream-dark: #E8E0D0;
  --color-dusty-rose: #C9A9A6;
  --color-dusty-rose-light: #E8D4D2;
  --color-dusty-rose-dark: #A88B89;
  --color-muted-gold: #C4A962;
  --color-muted-gold-light: #D4C587;
  --color-muted-gold-dark: #A89050;

  /* Professional Neutrals */
  --color-charcoal: #2C2C2C;
  --color-taupe: #8B7E74;
  --color-warm-white: #FFFEF9;
  --color-soft-beige: #F0EBE3;

  /* Corporate Header Colors */
  --color-navy: #1A2A3A;
  --color-navy-light: #2C3E50;
  --color-silver: #C0C0C0;
  --color-silver-light: #D4D4D4;

  /* Semantic Colors */
  --color-primary: #2b2d42;
  --color-secondary: #8d99ae;
  --color-accent: #edf2f4;
  --color-neutral: #ef233c;
  --color-background: #ffffff;
  --color-text: #1a1a1a;

  /* Typography */
  --font-primary: 'Playfair Display', 'Georgia', serif;
  --font-secondary: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body: 'Lato', 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.16);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 50%;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-warm-white);
  color: var(--color-charcoal);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--color-charcoal);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: var(--spacing-sm);
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-muted-gold), transparent);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.06em;
  color: var(--color-dusty-rose-dark);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-family: var(--font-secondary);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-gold-dark);
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-taupe);
}

a {
  color: var(--color-dusty-rose-dark);
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  color: var(--color-muted-gold);
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-soft-beige);
}

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.flex {
  display: flex;
  gap: var(--spacing-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.mt-lg { margin-top: var(--spacing-lg); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.pt-lg { padding-top: var(--spacing-lg); }
.pb-lg { padding-bottom: var(--spacing-lg); }

/* ===== BACKGROUND WITH BLUR ===== */
.bg-blur {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bg-blur::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(3px);
  z-index: 0;
}

.bg-blur > * {
  position: relative;
  z-index: 1;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-normal);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-muted-gold), transparent);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  position: relative;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 234px;
  height: auto;
  object-fit: contain;
}

.header-logo-text {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-warm-white);
  letter-spacing: 0.12em;
  font-weight: 400;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-warm-white);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--color-muted-gold);
  transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-muted-gold);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link .material-symbols-rounded {
  font-size: 1.2rem;
}

.header-actions {
  display: flex;
  gap: var(--spacing-sm);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-muted-gold) 0%, var(--color-muted-gold-dark) 100%);
  color: var(--color-charcoal);
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-soft);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-contact .material-symbols-rounded {
  font-size: 1.2rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-warm-white);
  cursor: pointer;
  padding: var(--spacing-xs);
}

.mobile-menu-btn .material-symbols-rounded {
  font-size: 2rem;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: block;
  }

  .header-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-navy);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-strong);
  }

  .header-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    padding: var(--spacing-sm);
  }

  .header-actions {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../GALORY/IMG/Set_of_factory_buildings_Set_of_factory_buildings__3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(44, 44, 44, 0.4) 0%,
    rgba(44, 44, 44, 0.3) 50%,
    rgba(44, 44, 44, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xl);
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 169, 98, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-warm-white);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--color-warm-white);
  letter-spacing: 0.15em;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-lg);
  font-weight: 300;
  font-family: var(--font-secondary);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1.25rem 3rem;
  background: var(--color-muted-gold);
  color: var(--color-charcoal);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(196, 169, 98, 0.4);
  transition: var(--transition-normal);
}

.hero-cta:hover {
  background: var(--color-muted-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196, 169, 98, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll .material-symbols-rounded {
  font-size: 2.5rem;
  color: var(--color-warm-white);
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

/* ===== CARDS ===== */
.card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-content {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-charcoal);
}

.card-text {
  flex: 1;
  color: var(--color-taupe);
  font-size: 1rem;
  line-height: 1.8;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
  color: var(--color-dusty-rose-dark);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-link .material-symbols-rounded {
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.card-link:hover .material-symbols-rounded {
  transform: translateX(5px);
}

/* ===== FEATURED SECTION ===== */
.featured {
  position: relative;
  padding: var(--spacing-xxl) 0;
}

.featured-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../GALORY/IMG/Various_manufacturing_robots_arms_Various_manufact_33.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.featured-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(232, 241, 242, 0.92) 0%,
    rgba(237, 242, 244, 0.88) 100%
  );
  z-index: 1;
}

.featured > .container {
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--color-dusty-rose-light);
  color: var(--color-dusty-rose-dark);
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-charcoal);
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-taupe);
  line-height: 1.9;
}

/* ===== SERVICES ===== */
.service-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-normal);
  border: 1px solid var(--color-cream-dark);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-dusty-rose), var(--color-muted-gold));
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon .material-symbols-rounded {
  font-size: 2.5rem;
  color: var(--color-muted-gold);
}

.service-card h3 {
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  margin-bottom: 0;
  color: var(--color-taupe);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--color-muted-gold);
  color: var(--color-charcoal);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.about-badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-primary);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content h2 {
  margin-bottom: var(--spacing-md);
}

.about-content p {
  margin-bottom: var(--spacing-md);
}

.about-stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--color-dusty-rose-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-taupe);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== CONTACT ===== */
.contact-section {
  position: relative;
  padding: var(--spacing-xxl) 0;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../GALORY/IMG/Cnc_workspace_Cnc_lathe_workspace_Automation_suppl_31.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.contact-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(245, 241, 232, 0.94) 0%,
    rgba(255, 254, 249, 0.90) 100%
  );
  z-index: 1;
}

.contact-section > .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-xl);
}

.contact-info-card {
  background: var(--color-warm-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-cream-dark);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-cream);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon .material-symbols-rounded {
  font-size: 1.5rem;
  color: var(--color-muted-gold);
}

.contact-details h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--color-charcoal);
}

.contact-details p {
  margin-bottom: 0;
  color: var(--color-taupe);
}

.contact-form-wrapper {
  background: var(--color-warm-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-charcoal);
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  background: var(--color-warm-white);
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-muted-gold);
  box-shadow: 0 0 0 3px rgba(196, 169, 98, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--color-muted-gold) 0%, var(--color-muted-gold-dark) 100%);
  color: var(--color-charcoal);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-soft);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.map-container {
  margin-top: var(--spacing-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(44, 44, 44, 0.7) 100%
  );
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-md);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--color-warm-white);
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-warm-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-muted-gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo img {
  width: 200px;
  height: auto;
  margin-bottom: var(--spacing-md);
  filter: brightness(0) invert(1);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.footer-title {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  color: var(--color-muted-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-muted-gold);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item .material-symbols-rounded {
  color: var(--color-muted-gold);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--color-muted-gold);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: calc(var(--spacing-xl) + 72px) 0 var(--spacing-xl);
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-warm-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--color-muted-gold);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.legal-content h2::after {
  left: 0;
  transform: none;
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--color-charcoal);
}

.legal-content p,
.legal-content ul {
  margin-bottom: var(--spacing-md);
  color: var(--color-taupe);
}

.legal-content ul {
  padding-left: var(--spacing-md);
}

.legal-content li {
  margin-bottom: var(--spacing-xs);
}

.legal-content strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

.info-box {
  background: var(--color-cream);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-muted-gold);
  margin-bottom: var(--spacing-md);
}

.info-box p {
  margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 5rem;
  }

  .header-container {
    padding: var(--spacing-sm);
  }

  .header-logo img {
    width: 180px;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .section-header {
    margin-bottom: var(--spacing-lg);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .legal-content {
    padding: var(--spacing-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== 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;
}

:focus-visible {
  outline: 3px solid var(--color-muted-gold);
  outline-offset: 2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-charcoal);
  color: var(--color-warm-white);
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .btn-contact,
  .hero-scroll {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }
}
