/**
 * Main Stylesheet
 * Akamba Landing Page
 */

/* ========================================
   Font Import - Neue Haas Grotesk Display Pro
   ======================================== */

/* Roman (Regular - 400) */
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('/akamba/assets/fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Roman Italic */
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('/akamba/assets/fonts/NeueHaasDisplayRomanItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Medium (500) */
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('/akamba/assets/fonts/NeueHaasDisplayMediu.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Medium Italic */
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('/akamba/assets/fonts/NeueHaasDisplayMediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('/akamba/assets/fonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Bold Italic */
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('/akamba/assets/fonts/NeueHaasDisplayBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Black (900) */
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('/akamba/assets/fonts/NeueHaasDisplayBlack.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Black Italic */
@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('/akamba/assets/fonts/NeueHaasDisplayBlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ========================================
   CSS Variables & Reset
   ======================================== */

:root {
  /* Colors */
  --primary-color: #9422A6;
  --secondary-color: #FF311F;
  --background-color: #191B30;


  /* Typography */
  --font-primary: 'Neue Haas Grotesk Display Pro', 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 2.1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 4rem;

  /* Container */
  --container-width: 1200px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-base: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: var(--dark-color);
  background-color: var(--white);
}

/* ========================================
   Typography
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

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

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

ul {
  list-style: none;
}

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

/* ========================================
   Layout
   ======================================== */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.main-content {
  min-height: calc(100vh - 80px);
}

/* ========================================
   Header
   ======================================== */

/* ========================================
   Header Banner
   ======================================== */

.site-header-banner {
  width: 100%;
  position: relative;
  z-index: 100;
}

.header-banner-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.header-banner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Desktop banner height */
@media (min-width: 769px) {
  .header-banner-wrapper {
    height: 120px;
  }
  
  .header-banner-image {
    height: 100%;
    object-fit: cover;
  }
}

/* Mobile banner height */
@media (max-width: 768px) {
  .header-banner-wrapper {
    height: 80px;
  }
  
  .header-banner-image {
    height: 100%;
    object-fit: cover;
  }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-light:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
}

/* ========================================
   Hero Section
   ======================================== */
/*
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
} */

/* ========================================
   Hero Video Section - Full Screen
   ======================================== */

.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.hero-pattern-bg {
  position: absolute;
  bottom: 30%;
  left: 10%;
  z-index: 1;
  max-width: 30%;
  max-height: 35%;
  opacity: 0.9;
}

.hero-pattern-bg img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-section-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-overlay-fecha {
  position: absolute;
  bottom: 30%;
  right: 30%;
  z-index: 2;
  max-width: 45%;
  max-height: 30%;
}

.hero-overlay-logo_akamba {
  position: absolute;
  top: 0;
  right: 40%;
  z-index: 2;
  max-width: 25%;
  max-height: 30%;
}

.hero-overlay-logo_banamex {
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 2;
  max-width: 25%;
  max-height: 30%;
}

.hero-overlay-pattern1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 25%;
  max-height: 30%;
}

.hero-overlay-pattern2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  max-width: 25%;
  max-height: 30%;
}



/* Responsive overlay images */
@media (max-width: 768px) {
  .hero-overlay-pattern2 {
    max-width: 70%;
    max-height: 50%;
  }
  
  .hero-pattern-bg {
    max-width: 50%;
    bottom: 15%;
    left: -3%;
  }
}

@media (max-width: 480px) {
  .hero-overlay-pattern2 {
    max-width: 80%;
    max-height: 40%;
  }
  
  .hero-pattern-bg {
    max-width: 60%;
    bottom: 10%;
    left: -2%;
  }
}

/* ========================================
   Sections
   ======================================== */

.features-section,
.about-content,
.services-content,
.contact-content {
  padding: var(--spacing-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-base);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.feature-card p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ========================================
   Navigation Section
   ======================================== */

.navigation-section {
  background-color: #191B30;
  padding: var(--spacing-xl) 0;
  position: relative;
}

.navigation-section .container {
  position: relative;
}

/* Mobile Menu Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-icon {

    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    align-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.hamburger-icon span {
  width: 30px;
  height: 3px;
  background-color: #FF311F;
  transition: var(--transition-base);
  border-radius: 2px;
}

/* Mobile Close Button */
.mobile-nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #FF311F;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.mobile-nav-close:hover {
  color: #ffffff;
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links{
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: var(--spacing-sm);
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #FF311F;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  transition: var(--transition-base);
}

.nav-links a:hover {
  color: #ffffff;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0 auto;
  }
  
  .mobile-nav-close {
    display: block;
  }
  
  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #191B30;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-2xl);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .navigation.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: var(--spacing-lg);
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    font-size: 1.25rem;
    display: block;
    padding: var(--spacing-sm) 0;
  }
  
  /* Overlay for mobile menu */
  .navigation-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 999;
  }
  
  .navigation-section.menu-open::before {
    opacity: 1;
    visibility: visible;
  }
}

/* ========================================
   Home Card Component
   ======================================== */

.home-card {
  background-color: #191B30;
  border-radius: 15px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  width: 100%;
}

.home-card-image {
  width: 100%;
  max-height: 177px;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-card-image img {
  width: 100%;
  height: 100%;
  max-height: 177px;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

.home-card-image.placeholder {
  background-color: #D9D9D9;
  min-height: 177px;
}

.home-card-title {
  background-color: #FF311F;
  padding: 8px;
  width: 100%;
}

.home-card-title h3 {
  color: #191B30;
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.home-card-description {
  flex-grow: 1;
}

.home-card-description p {
  color: #FF311F;
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

.home-card-button {
  background-color: #9422A6;
  color: white;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-base);
  display: block;
  width: 100%;
}

.home-card-button:hover {
  background-color: #7a1b88;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(148, 34, 166, 0.3);
  color: white;
}

/* Responsive Card */
@media (max-width: 768px) {
  .home-card-image {
    max-height: 150px;
  }
  
  .home-card-image img {
    max-height: 150px;
  }
  
  .home-card-image.placeholder {
    min-height: 150px;
  }
  
  .home-card-title h3 {
    font-size: 30px;
  }
  
  .home-card-description p {
    font-size: 14px;
  }
  
  .home-card-button {
    font-size: 14px;
  }
}

/* ========================================
   Boletos Section
   ======================================== */

.boletos-section {
  background-color: #FF311F;
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.boletos-pattern-bg1 {
  position: absolute;
  top: 10px;
  left: -20px;
  z-index: 0;
  pointer-events: none;
}

.boletos-pattern-bg1 img {
  max-width: 390px;
  height: auto;
  display: block;
  opacity: 0.7;
}

.boletos-pattern-bg2 {
  position: absolute;
  bottom: 20%;
  left: 0;
  transform: translateY(50%);
  z-index: 0;
  pointer-events: none;
}

.boletos-pattern-bg2 img {
  max-width: 500px;
  height: auto;
  display: block;
  opacity: 0.7;
}

.boletos-pattern-bg3 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 0;
  pointer-events: none;
}

.boletos-pattern-bg3 img {
  max-width: 500px;
  height: auto;
  display: block;
  opacity: 0.7;
}

.boletos-section .container {
  position: relative;
  z-index: 1;
}

.boletos-header {
  background-color: #191B30;
  padding: 12px;
  margin: auto;
  width: fit-content;
  text-align: center;
  position: relative;
  z-index: 2;
}

.boletos-header h2 {
  color: #FF311F;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Responsive Boletos Section */
@media (max-width: 768px) {
  .boletos-header h2 {
    font-size: 2rem;
  }
  
  .boletos-pattern-bg1 img {
    max-width: 150px;
  }
  
  .boletos-pattern-bg2 {
    left: auto;
    right: -50px;
    bottom: 50%;
    transform: translateY(50%);
  }
  
  .boletos-pattern-bg2 img {
    max-width: 200px;
  }
  
  .boletos-pattern-bg3 img {
    max-width: 150px;
  }
}

/* ========================================
   Dynamic Pages Section
   ======================================== */

.dynamic-section {
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh;
}

/* Background images for dynamic sections */
.dynamic-section-rojo {
  background-image: url('../img/fondos/desk-rojo-bg.webp');
}

.dynamic-section-azul {
  background-image: url('../img/fondos/desk-azul-bg.webp');
}

.dynamic-section-morado {
  background-image: url('../img/fondos/desk-morado-bg.webp');
}

.dynamic-section .container {
  position: relative;
  z-index: 1;
}

.section-header {
  padding: 12px;
  margin: auto;
  width: fit-content;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Dynamic card styles */
.dynamic-card {
  background-color: #191B30;
  border-radius: 15px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  width: 100%;
}

.dynamic-card-image {
  width: 100%;
  max-height: 177px;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dynamic-card-image img {
  width: 100%;
  height: 100%;
  max-height: 177px;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}

.dynamic-card-image.placeholder {
  background-color: #D9D9D9;
  min-height: 177px;
}

.dynamic-card-title {
  padding: 8px;
  width: 100%;
}

.dynamic-card-title h3 {
  font-size: 35px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.dynamic-card-description {
  flex-grow: 1;
}

.dynamic-card-description p {
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

.dynamic-card-button {
  color: white;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-base);
  display: block;
  width: 100%;
}

.dynamic-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Responsive dynamic pages */
@media (max-width: 768px) {
  .dynamic-section-rojo {
    background-image: url('../img/fondos/mob-rojo-bg.webp');
  }
  
  .dynamic-section-azul {
    background-image: url('../img/fondos/mob-azul-bg.webp');
  }
  
  .dynamic-section-morado {
    background-image: url('../img/fondos/mob-morado-bg.webp');
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .dynamic-card-image {
    max-height: 150px;
  }
  
  .dynamic-card-image img {
    max-height: 150px;
  }
  
  .dynamic-card-image.placeholder {
    min-height: 150px;
  }
  
  .dynamic-card-title h3 {
    font-size: 30px;
  }
  
  .dynamic-card-description p {
    font-size: 14px;
  }
  
  .dynamic-card-button {
    font-size: 14px;
  }
}

/* ========================================
   Product Card Component
   ======================================== */

.product-card {
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: 100%;
  width: 100%;
  align-items: center;
}

.product-card-image {
  width: 200px;
  height: 160px;
  min-width: 200px;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  border-radius: 10px;
}

.product-card-image.placeholder {
  background-color: #D9D9D9;
}

.product-card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
  justify-content: space-between;
}

.product-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-card-subtitle {
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

.product-card-price {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card-select {
  padding: 10px 12px;
  border: 2px solid;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  cursor: pointer;
  transition: var(--transition-base);
  font-family: inherit;
}

.product-card-select:hover {
  opacity: 0.8;
}

.product-card-select:focus {
  outline: none;
  opacity: 1;
}

.product-card-button {
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition-base);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Responsive Product Card */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    align-items: stretch;
  }
  
  .product-card-image {
    width: 100%;
    min-width: 100%;
    height: 180px;
  }
  
  .product-card-title {
    font-size: 24px;
  }
  
  .product-card-subtitle {
    font-size: 14px;
  }
  
  .product-card-price {
    font-size: 20px;
  }
  
  .product-card-select {
    font-size: 15px;
    padding: 8px 10px;
  }
  
  .product-card-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

/* ========================================
   Page Header
   ======================================== */

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ========================================
   About Page
   ======================================== */

.about-intro {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
}

.about-intro h2 {
  margin-bottom: var(--spacing-md);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.mission-card,
.vision-card {
  background-color: var(--light-color);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
}

.values-section {
  margin-bottom: var(--spacing-2xl);
}

.values-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.value-item {
  background-color: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value-item h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

/* Team Section */
.team-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  color: var(--gray-600);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.team-member {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-base);
}

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

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  margin-bottom: var(--spacing-xs);
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.member-bio {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ========================================
   Services Page
   ======================================== */

.services-intro {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.service-item {
  display: flex;
  gap: var(--spacing-lg);
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.service-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateX(5px);
}

.service-icon {
  flex-shrink: 0;
  font-size: 3rem;
}

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

.service-content p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: disc;
  padding-left: var(--spacing-md);
}

.service-features li {
  color: var(--gray-600);
  margin-bottom: var(--spacing-xs);
}

.services-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

.services-cta h2 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.services-cta p {
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
}

.contact-info h2 {
  margin-bottom: var(--spacing-md);
}

.contact-details {
  margin: var(--spacing-xl) 0;
}

.contact-detail-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.detail-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.detail-content h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--primary-color);
}

.detail-content p,
.detail-content a {
  color: var(--gray-600);
}

.contact-social {
  margin-top: var(--spacing-xl);
}

.contact-social h4 {
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.social-link {
  padding: var(--spacing-xs) var(--spacing-md);
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.social-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper h2 {
  margin-bottom: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

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

.form-control {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-base);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Alerts */
.alert {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.alert-success {
  background-color: #d1fae5;
  color: #065f46;
  border-left: 4px solid var(--success-color);
}

.alert-error {
  background-color: #fee2e2;
  color: #991b1b;
  border-left: 4px solid var(--error-color);
}

.alert ul {
  margin-top: var(--spacing-xs);
  padding-left: var(--spacing-md);
}

.alert li {
  list-style: disc;
  margin-bottom: var(--spacing-xs);
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  background-color: #191B30;
  padding: var(--spacing-xl) 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
}

.footer-logo {
  flex: 0 0 auto;
}

.footer-logo img {
  max-width: 300px;
  height: auto;
  display: block;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.footer-social-link {
  transition: var(--transition-base);
  display: block;
}

.footer-social-link img {
  width: 40px;
  height: 40px;
  display: block;
  transition: var(--transition-base);
}

.footer-social-link:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo img {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-social-link img {
    width: 35px;
    height: 35px;
  }
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {

  /* Typography */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  /* Header */
  .mobile-menu-toggle {
    display: flex;
  }

  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-md);
  }

  .main-navigation.active {
    display: block;
  }

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

  .nav-link {
    display: block;
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--gray-200);
  }

  /* Hero */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  /* Services */
  .service-item {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .features-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}