/* ============================================
   Eaglewings Iron Craft LLC
   Main Stylesheet
   ============================================ */

/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary: #1a252f;
  --primary-light: #2c3e50;
  --secondary: #c9a227;
  --secondary-dark: #a6851f;
  --accent: #8b4513;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-light: #999;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --border: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
  min-height: 44px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.header .container {
  height: 100%;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--secondary);
}

.logo-text {
  line-height: 1.2;
}

.logo-subtext {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-gray);
}

.nav-desktop {
  display: none;
}

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

.nav-menu a {
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

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

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.header-phone:hover {
  color: var(--secondary);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem;
  z-index: 999;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--primary);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a.active {
  background: var(--bg-light);
  color: var(--secondary);
}

.mobile-phone {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 37, 47, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  color: var(--white);
  padding: 2rem 0;
}

.hero-content h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.hero-details {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-details p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.hero-details p:last-child {
  margin-bottom: 0;
}

.hero-details strong {
  color: var(--secondary);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.services-preview,
.why-choose-us,
.contact-section {
  padding: 4rem 0;
}

.why-choose-us {
  background: var(--bg-light);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

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

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

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.service-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
}

.service-link:hover {
  gap: 0.75rem;
}

.services-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

.contact-info {
  color: var(--white);
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.9);
}

.contact-item a {
  color: var(--white);
  transition: var(--transition);
}

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

.contact-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

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

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: 1;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.required {
  color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--secondary);
}

.consent-text {
  color: var(--text-gray);
  line-height: 1.4;
}

.consent-text a {
  color: var(--secondary);
  text-decoration: underline;
}

.consent-text a:hover {
  color: var(--secondary-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

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

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
}

.footer-disclaimer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-disclaimer strong {
  color: var(--secondary);
}

/* ============================================
   PAGE BANNERS
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 6rem 0 3rem;
  margin-top: 70px;
  text-align: center;
  color: var(--white);
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  padding: 3rem 0;
}

.content-section.alt-bg {
  background: var(--bg-light);
}

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

.content-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}

.content-text h2 {
  margin-bottom: 1rem;
}

.content-text p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.content-text ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-text li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

/* ============================================
   VALUES/MISSION CARDS
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.value-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================
   BUSINESS MODEL PAGE
   ============================================ */
.model-section {
  padding: 3rem 0;
}

.model-section.alt-bg {
  background: var(--bg-light);
}

.model-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.model-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.model-card ul {
  padding-left: 1.5rem;
}

.model-card li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
  padding: 3rem 0;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.policy-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-light);
}

.policy-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.policy-content li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.policy-content ol li {
  list-style: decimal;
}

.last-updated {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-section {
  padding: 3rem 0;
}

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

.contact-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-box h3 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-box p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.contact-box ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.contact-box li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.info-list {
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-icon {
  font-size: 1.25rem;
  color: var(--secondary);
}

.info-content strong {
  display: block;
  margin-bottom: 0.25rem;
}

.info-content p,
.info-content a {
  color: var(--text-gray);
  margin-bottom: 0;
}

.info-content a:hover {
  color: var(--secondary);
}

.business-hours {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1rem;
}

.business-hours h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.hours-row span:first-child {
  color: var(--text-dark);
}

.hours-row span:last-child {
  color: var(--text-gray);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-list {
  padding: 3rem 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail:nth-child(even) .service-detail-image {
  order: -1;
}

.service-detail-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-detail-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-detail-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: bold;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__text h3 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookie-banner__text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cookie-banner__text a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cookie-btn--accept {
  background: var(--secondary);
  color: var(--primary);
}

.cookie-btn--accept:hover {
  background: var(--secondary-light);
}

.cookie-btn--reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.cookie-btn--reject:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.cookie-btn--customize {
  background: transparent;
  color: var(--secondary);
}

.cookie-btn--customize:hover {
  color: var(--secondary-light);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.cookie-modal__content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cookie-modal__header h2 {
  font-size: 1.25rem;
}

.cookie-modal__close {
  font-size: 1.5rem;
  color: var(--text-gray);
}

.cookie-modal__close:hover {
  color: var(--primary);
}

.cookie-modal__body {
  padding: 1.5rem;
}

.cookie-option {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.cookie-option__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-option__title {
  font-weight: 600;
  color: var(--primary);
}

.cookie-option__badge {
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.cookie-option__description {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cookie-modal__footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.cookie-modal__footer .cookie-btn {
  flex: 1;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 10001;
  transition: var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-cta {
    flex-direction: row;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-group.full-width {
    grid-column: span 2;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-detail {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .service-detail:nth-child(even) .service-detail-image {
    order: 1;
  }
  
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cookie-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
  
  .header-phone {
    display: flex;
  }
  
  .mobile-menu-toggle,
  .nav-mobile {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* ============================================
   BEM CLASSES FOR INTERNAL PAGES
   ============================================ */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 8rem 0 3rem;
  margin-top: 70px;
  color: var(--white);
}

.page-hero__container {
  text-align: center;
}

.page-hero__title {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb__item {
  color: rgba(255,255,255,0.7);
}

.breadcrumb__item--current {
  color: var(--secondary);
}

.breadcrumb__separator {
  color: rgba(255,255,255,0.5);
}

/* Section BEM */
.section {
  padding: 3rem 0;
}

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

.section--dark {
  background: var(--primary);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.section__subtitle {
  display: block;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section__title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section--dark .section__title {
  color: var(--white);
}

.section__description {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section__description {
  color: rgba(255,255,255,0.7);
}

/* About Story */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-story__image {
  position: relative;
}

.about-story__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-story__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-story__content h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-story__content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

/* Mission Card */
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  color: var(--secondary);
}

.mission-card__icon svg {
  width: 100%;
  height: 100%;
}

.mission-card__title {
  color: var(--primary);
  margin-bottom: 1rem;
}

.mission-card__text {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Value Card */
.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--secondary);
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card__title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-card__description {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

.services-detail__item {
  margin-bottom: 1.5rem;
}

.services-detail__title {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.services-detail__text {
  color: var(--text-gray);
  line-height: 1.7;
}

.services-detail__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta__title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta__description {
  color: rgba(0,0,0,0.7);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 1rem;
}

.cta__phone-icon {
  width: 20px;
  height: 20px;
}

/* Footer BEM */
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer__brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__description {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer__section {
  margin-bottom: 1rem;
}

.footer__title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--secondary);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer__contact-text a {
  color: inherit;
}

.footer__contact-text a:hover {
  color: var(--secondary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.footer__bottom-content {
  text-align: center;
}

.footer__disclaimer {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer__copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

.footer__legal-link {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer__legal-link:hover {
  color: var(--secondary);
}

/* Cookie Banner BEM */
.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cookie-banner__title {
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.cookie-banner__description {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.cookie-banner__description a {
  color: var(--secondary);
}

.cookie-banner__btn {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-banner__btn--accept {
  background: var(--secondary);
  color: var(--primary);
  border: none;
}

.cookie-banner__btn--accept:hover {
  background: var(--secondary-light);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-banner__btn--decline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Button BEM */
.btn--dark {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

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

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Responsive BEM */
@media (min-width: 768px) {
  .page-hero__title {
    font-size: 3rem;
  }
  
  .about-story {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-detail {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .cta__actions {
    flex-direction: row;
    justify-content: center;
  }
  
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cookie-banner__container {
    flex-direction: row;
    justify-content: space-between;
  }
}

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