/* ============================================
   TEAZA ENERGY LLC - Main Stylesheet
   Modern, Clean, Professional Design
============================================ */

/* CSS Variables */
:root {
  --primary: #1e5631;
  --primary-dark: #174024;
  --primary-light: #2e7d4a;
  --secondary: #0d47a1;
  --secondary-dark: #0a3d8f;
  --secondary-light: #1565c0;
  --accent: #ff9800;
  --accent-light: #ffb74d;
  --success: #4caf50;
  --warning: #ff5722;
  --error: #f44336;
  --text-dark: #212121;
  --text-medium: #424242;
  --text-light: #757575;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-gray: #e8e8e8;
  --bg-dark: #1a1a2e;
  --border: #e0e0e0;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
  --container: 1200px;
  --header-height: 70px;
}

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

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

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  min-height: 100vh;
  padding-top: var(--header-height);
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-height: 50px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--secondary);
  color: var(--text-white);
  border-color: var(--secondary);
}

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

.btn-secondary {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}

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

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

.header .container {
  height: 100%;
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: var(--radius);
  color: var(--text-white);
  font-size: 1.2rem;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  display: block;
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
  background: rgba(13, 71, 161, 0.08);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

.hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger-line:nth-child(2) {
  margin: 5px 0;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 16px 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1e5631 100%);
  overflow: hidden;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(30, 86, 49, 0.85) 100%);
  z-index: 1;
}

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

.hero-content {
  max-width: 700px;
  padding: 60px 0;
}

.hero-title {
  color: var(--text-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 80px 0;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

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

/* ============================================
   SERVICES OVERVIEW
============================================ */
.services-overview {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 4px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  color: var(--text-white);
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-choose-us {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  opacity: 0.2;
  margin-bottom: 10px;
}

.benefit-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-desc {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ============================================
   CONTACT FORM SECTION
============================================ */
.contact-form-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-header {
  text-align: center;
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

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

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--secondary-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
}

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

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 3px;
  accent-color: var(--secondary);
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

.checkbox-group label a {
  color: var(--secondary);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
}

/* Form Success Message */
.form-success {
  display: none;
  padding: 20px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--success);
  border-radius: var(--radius);
  color: var(--success);
  text-align: center;
  margin-top: 20px;
}

.form-success.show {
  display: block;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  color: var(--text-white);
  padding: 60px 0 30px;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
}

.footer-logo .logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: var(--radius);
  font-size: 1.3rem;
  color: var(--text-white);
}

.footer-address {
  font-style: normal;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1rem;
}

.footer-contact {
  margin-top: auto;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: #ffffff;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-title {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--secondary);
  display: inline-block;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #ffffff;
  transition: var(--transition);
  font-size: 1rem;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.disclaimer {
  background: rgba(255,255,255,0.08);
  padding: 18px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.7;
  border: 1px solid rgba(255,255,255,0.1);
}

.copyright {
  font-size: 0.95rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
  padding: 10px 0;
}

/* ============================================
   COOKIE BANNER
============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  color: var(--text-white);
  padding: 24px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.4);
  border-top: 2px solid var(--secondary);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  color: #ffffff;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border);
}

.cookie-modal-header h3 {
  margin: 0;
}

.cookie-modal-body {
  padding: 25px;
}

.cookie-category {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cookie-category-header h4 {
  margin: 0;
  font-size: 1rem;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border);
  border-radius: 26px;
  transition: var(--transition);
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--bg-white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--secondary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(22px);
}

.cookie-category p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.cookie-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ============================================
   ABOUT PAGE
============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  padding: 80px 0;
  text-align: center;
  color: var(--text-white);
}

.page-hero h1 {
  color: var(--text-white);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-hero p {
  color: #ffffff;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .about-grid,
  .about-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

/* ============================================
   SERVICES PAGE
============================================ */
.services-section {
  padding: 80px 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

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

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

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

.service-detail-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-detail-content p {
  margin-bottom: 20px;
  color: var(--text-medium);
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
}

.service-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-section {
  padding: 80px 0;
}

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

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

.contact-info-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 35px;
  margin-bottom: 25px;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--secondary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--text-white);
  border-radius: var(--radius);
  font-size: 1.2rem;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  color: var(--text-medium);
  margin: 0;
  font-size: 0.95rem;
}

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

.map-container {
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   BUSINESS MODEL PAGE
============================================ */
.business-model-section {
  padding: 80px 0;
}

.model-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 30px;
}

.model-card h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.model-card p {
  margin-bottom: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.model-card ul {
  margin-top: 15px;
}

.model-card li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-medium);
}

.model-card li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ============================================
   LEGAL PAGES
============================================ */
.legal-page {
  padding: 80px 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  color: var(--secondary);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 25px 0 15px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

.legal-content ul {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-medium);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.legal-content th,
.legal-content td {
  padding: 12px;
  text-align: left;
  border: 1px solid var(--border);
}

.legal-content th {
  background: var(--bg-light);
  font-weight: 600;
}

/* ============================================
   SITEMAP PAGE
============================================ */
.sitemap-section {
  padding: 80px 0;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.sitemap-category {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 25px;
}

.sitemap-category h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.sitemap-category ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sitemap-category a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: var(--bg-white);
  border-radius: var(--radius);
  color: var(--text-dark);
  transition: var(--transition);
}

.sitemap-category a:hover {
  background: var(--secondary);
  color: var(--text-white);
  transform: translateX(5px);
}

.sitemap-category a::before {
  content: '→';
}

/* ============================================
   UTILITIES
============================================ */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

/* Focus States for Accessibility */
*:focus {
  outline: 3px solid var(--secondary-light);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--secondary-light);
  outline-offset: 2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 20px;
  background: var(--secondary);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 20px;
}

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

  html {
    scroll-behavior: auto;
  }
}

/* Print Styles */
@media print {
  .header,
  .cookie-banner,
  .cookie-modal,
  .btn,
  .hero-buttons {
    display: none !important;
  }

  body {
    padding-top: 0;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: none;
    color: #000;
  }
}
