/* ============================================
   IFA Laptop - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --navy: #0a1e3d;
  --navy-light: #132d5e;
  --navy-dark: #061429;
  --cyan: #3db8e8;
  --cyan-light: #b3e5f7;
  --off-white: #f8f9fb;
  --white: #ffffff;
  --charcoal: #1a2a3a;
  --text-secondary: #5a6b7d;
  --border-light: #e8ecf1;
  
  --font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Arial, sans-serif;
  --container-max: 1200px;
  --header-height: 64px;
  --header-height-lg: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-family);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

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

@media (min-width: 640px) {
  .container { padding: 0 24px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: var(--white);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

@media (min-width: 1024px) {
  .header-content { height: var(--header-height-lg); }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 12px; /* Curves for the logo corners */
}

@media (min-width: 1024px) {
  .logo img {
    height: 44px;
    border-radius: 14px; /* Curved corners on desktop */
  }
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.2s ease;
}

.nav-desktop a:hover {
  background: var(--off-white);
  color: var(--navy);
}

.btn-header {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .btn-header { display: flex; }
}

.btn-header:hover {
  background: var(--navy-light);
  transform: scale(1.02);
}

.mobile-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .mobile-buttons { display: none; }
}

.btn-mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
}

.btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--charcoal);
  transition: background 0.2s ease;
}

.btn-menu:hover {
  background: var(--off-white);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px 16px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 99;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: background 0.2s ease;
}

.mobile-nav a:hover {
  background: var(--off-white);
}

.mobile-menu-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: scale(1.02);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid rgba(10, 30, 61, 0.1);
  background: transparent;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--off-white);
}

.btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-cyan:hover {
  background: var(--cyan-light);
  transform: scale(1.02);
}

.btn-full {
  width: 100%;
}

/* ============================================
   Banner Slider
   ============================================ */
.banner-section {
  margin-top: var(--header-height);
  background: var(--off-white);
  padding: 12px 16px;
}

@media (min-width: 1024px) {
  .banner-section {
    margin-top: var(--header-height-lg);
    padding: 24px 32px;
  }
}

.banner-slider {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.banner-slide {
  position: relative;
  aspect-ratio: 1.966 / 1; /* Perfectly match 1744 x 887 aspect ratio */
  width: 100%;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Swiper Custom */
.banner-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--cyan-light);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.banner-slider .swiper-pagination-bullet-active {
  background: var(--navy);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  display: none;
}

@media (min-width: 1024px) {
  .banner-slider .swiper-button-next,
  .banner-slider .swiper-button-prev {
    display: flex;
  }
}

.banner-slider .swiper-button-next::after,
.banner-slider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  padding: 64px 0;
  background: var(--white);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding: 96px 0; }
}

.hero-decoration-1 {
  position: absolute;
  top: 0;
  left: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(179, 229, 247, 0.3);
  opacity: 0.4;
  pointer-events: none;
}

.hero-decoration-2 {
  position: absolute;
  bottom: 40px;
  right: -128px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(179, 229, 247, 0.2);
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    gap: 80px;
  }
}

.hero-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text { text-align: right; }
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--navy);
}

@media (min-width: 640px) {
  .hero h1 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3rem; }
}

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

.hero-subtitle {
  margin-top: 20px;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(26, 42, 58, 0.8);
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-desc {
  margin-top: 16px;
  max-width: 512px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .hero-desc { max-width: none; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons { justify-content: flex-start; }
}

.hero-image {
  position: relative;
  flex-shrink: 0;
}

.hero-image-glow {
  position: absolute;
  inset: -16px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(61, 184, 232, 0.2), rgba(10, 30, 61, 0.1));
  filter: blur(32px);
}

.hero-image img {
  position: relative;
  width: 320px;
  height: 288px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .hero-image img {
    width: 384px;
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .hero-image img {
    width: 440px;
    height: 384px;
  }
}

/* ============================================
   Trust Features
   ============================================ */
.trust-features {
  padding: 32px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
  .trust-features { padding: 40px 0; }
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .trust-grid { gap: 40px; }
}

@media (min-width: 1024px) {
  .trust-grid { gap: 64px; }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(10, 30, 61, 0.05);
  color: var(--navy);
}

.trust-item span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 640px) {
  .trust-item span { font-size: 1rem; }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .section-header { margin-bottom: 64px; }
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--navy);
}

@media (min-width: 640px) {
  .section-header h2 { font-size: 2.25rem; }
}

.section-header p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.section-header-light h2 {
  color: var(--white);
}

.section-header-light p {
  color: rgba(255, 255, 255, 0.5);
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .section-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .section-title { margin-bottom: 56px; }
}

/* ============================================
   Categories
   ============================================ */
.categories {
  padding: 80px 0;
  background: var(--white);
}

@media (min-width: 1024px) {
  .categories { padding: 112px 0; }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .categories-grid { gap: 32px; }
}

.category-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--off-white);
  transition: all 0.5s ease;
}

.category-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.category-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 30, 61, 0.8), rgba(10, 30, 61, 0.2), transparent);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

@media (min-width: 640px) {
  .category-content { padding: 32px; }
}

.category-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

@media (min-width: 640px) {
  .category-content h3 { font-size: 1.5rem; }
}

.category-content p {
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.category-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
}

.category-link svg {
  transition: transform 0.3s ease;
}

.category-card:hover .category-link svg {
  transform: translateX(-4px);
}

/* ============================================
   Gaming Section
   ============================================ */
.gaming-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
  overflow: hidden;
}

@media (min-width: 1024px) {
  .gaming-section { padding: 112px 0; }
}

.gaming-pattern {
  position: absolute;
  inset: 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.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.gaming-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {
  .gaming-content {
    flex-direction: row;
    gap: 80px;
  }
}

.gaming-image {
  position: relative;
  order: 2;
}

@media (min-width: 1024px) {
  .gaming-image { order: 1; }
}

.gaming-image-glow {
  position: absolute;
  inset: -16px;
  border-radius: 24px;
  background: rgba(61, 184, 232, 0.2);
  filter: blur(32px);
}

.gaming-image img {
  position: relative;
  width: 320px;
  height: 256px;
  object-fit: cover;
  border-radius: 24px;
}

@media (min-width: 640px) {
  .gaming-image img {
    width: 384px;
    height: 288px;
  }
}

@media (min-width: 1024px) {
  .gaming-image img {
    width: 420px;
    height: 320px;
  }
}

.gaming-text {
  flex: 1;
  text-align: center;
  order: 1;
}

@media (min-width: 1024px) {
  .gaming-text {
    text-align: right;
    order: 2;
  }
}

.gaming-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(61, 184, 232, 0.2);
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 700;
}

.gaming-text h2 {
  margin-top: 16px;
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--white);
}

@media (min-width: 640px) {
  .gaming-text h2 { font-size: 2.25rem; }
}

.gaming-text > p {
  margin-top: 20px;
  max-width: 512px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .gaming-text > p { max-width: none; }
}

.gaming-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .gaming-tags { justify-content: flex-start; }
}

.gaming-tags span {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
}

.gaming-text .btn-cyan {
  margin-top: 32px;
}

/* ============================================
   Why IFA
   ============================================ */
.why-ifa {
  position: relative;
  padding: 80px 0;
  background: var(--navy);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .why-ifa { padding: 112px 0; }
}

.why-decoration-1 {
  position: absolute;
  top: 0;
  right: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.why-decoration-2 {
  position: absolute;
  bottom: 0;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(61, 184, 232, 0.1);
  pointer-events: none;
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .why-grid { gap: 24px; }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.why-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .why-card { padding: 32px; }
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(61, 184, 232, 0.2);
  color: var(--cyan);
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .why-icon {
    width: 56px;
    height: 56px;
  }
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

@media (min-width: 640px) {
  .why-card h3 { font-size: 1.125rem; }
}

.why-card p {
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================
   Installment
   ============================================ */
.installment {
  padding: 64px 0;
  background: var(--white);
}

@media (min-width: 1024px) {
  .installment { padding: 80px 0; }
}

.installment-card {
  max-width: 768px;
  margin: 0 auto;
  padding: 32px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--off-white), rgba(179, 229, 247, 0.2));
}

@media (min-width: 640px) {
  .installment-card { padding: 48px; }
}

.installment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(10, 30, 61, 0.05);
  color: var(--navy);
}

.installment h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
}

@media (min-width: 640px) {
  .installment h2 { font-size: 1.875rem; }
}

.installment p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.installment .btn-primary {
  margin-top: 24px;
}

/* ============================================
   Brands
   ============================================ */
.brands {
  padding: 64px 0;
  background: var(--off-white);
}

@media (min-width: 1024px) {
  .brands { padding: 80px 0; }
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
  }
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .brand-card { padding: 24px; }
}

.brand-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

@media (min-width: 640px) {
  .brand-logo { height: 48px; }
}

.brand-card:hover .brand-logo {
  filter: grayscale(0%);
}

.brand-logo svg {
  max-height: 100%;
  width: auto;
}

.brand-card span {
  margin-top: 8px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (min-width: 640px) {
  .brand-card span { font-size: 0.75rem; }
}

/* ============================================
   About
   ============================================ */
.about {
  padding: 80px 0;
  background: var(--white);
}

@media (min-width: 1024px) {
  .about { padding: 112px 0; }
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {
  .about-content {
    flex-direction: row;
    gap: 80px;
  }
}

.about-image {
  position: relative;
  flex-shrink: 0;
}

.about-image-bg {
  position: absolute;
  inset: -16px;
  border-radius: 24px;
  background: rgba(10, 30, 61, 0.05);
  filter: blur(20px);
}

.about-image img {
  position: relative;
  width: 320px;
  height: 256px;
  object-fit: cover;
  border-radius: 24px;
}

@media (min-width: 640px) {
  .about-image img {
    width: 384px;
    height: 288px;
  }
}

@media (min-width: 1024px) {
  .about-image img {
    width: 400px;
    height: 320px;
  }
}

.about-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .about-text { text-align: right; }
}

.about-text h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--navy);
}

@media (min-width: 640px) {
  .about-text h2 { font-size: 2.25rem; }
}

.about-text > p {
  margin-top: 20px;
  max-width: 512px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .about-text > p { max-width: none; }
}

.about-text-secondary {
  margin-top: 12px !important;
  font-size: 0.875rem !important;
  opacity: 0.8;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .about-stats { justify-content: flex-start; }
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--navy);
}

.stat-cyan {
  color: var(--cyan);
}

.stat-label {
  margin-top: 4px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ============================================
   Location
   ============================================ */
.location {
  padding: 64px 0;
  background: var(--off-white);
}

@media (min-width: 1024px) {
  .location { padding: 80px 0; }
}

.location-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .location-card { padding: 32px; }
}

.location-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.location-item:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
}

.location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 30, 61, 0.05);
  color: var(--navy);
  flex-shrink: 0;
}

.location-info {
  text-align: right;
}

.location-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.location-info strong {
  display: block;
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.location-info a {
  display: block;
  margin-top: 2px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s ease;
}

.location-info a:hover {
  color: var(--cyan);
}

/* ============================================
   Navigation Buttons
   ============================================ */
.navigation {
  padding: 64px 0;
  background: var(--white);
}

@media (min-width: 1024px) {
  .navigation { padding: 80px 0; }
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .nav-grid { gap: 16px; }
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background: var(--off-white);
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .nav-card { padding: 24px; }
}

.nav-card:not(.nav-disabled):hover {
  border-color: rgba(10, 30, 61, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-disabled {
  opacity: 0.5;
  cursor: default;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.nav-icon img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

@media (min-width: 640px) {
  .nav-icon {
    width: 64px;
    height: 64px;
  }
  
  .nav-icon img {
    width: 48px;
    height: 48px;
  }
}

.nav-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 640px) {
  .nav-card h3 { font-size: 1rem; }
}

.nav-card p {
  font-size: 0.625rem;
  color: var(--text-secondary);
}

@media (min-width: 640px) {
  .nav-card p { font-size: 0.75rem; }
}

/* ============================================
   Contact
   ============================================ */
.contact {
  padding: 80px 0;
  background: var(--off-white);
}

@media (min-width: 1024px) {
  .contact { padding: 112px 0; }
}

.contact-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--navy);
}

@media (min-width: 640px) {
  .contact h2 { font-size: 2.25rem; }
}

.contact > .contact-content > p {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .contact-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: all 0.2s ease;
}

.btn-contact:hover {
  transform: scale(1.02);
}

.btn-navy {
  background: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
}

.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 56px 0 96px;
  background: var(--navy);
  border-top: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
  .footer { padding: 56px 0; }
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 1024px) {
  .footer-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .footer-brand { align-items: flex-start; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  border-radius: 12px; /* Curved corners for footer logo too */
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
}

.footer-slogan {
  margin-top: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-info {
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-info { text-align: right; }
}

.footer-info p {
  margin-top: 6px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .footer-nav { gap: 32px; }
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d);
  color: var(--white);
}

.social-telegram:hover {
  background: #0088cc;
  color: var(--white);
}

.social-whatsapp:hover {
  background: #25D366;
  color: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Mobile Sticky CTA
   ============================================ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
  .mobile-cta { display: none; }
}

.mobile-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 10px 0;
  border-radius: 12px;
  color: var(--navy);
  transition: background 0.2s ease;
}

.mobile-cta-item:active {
  background: var(--off-white);
}

.mobile-cta-whatsapp {
  color: #25D366;
}

.mobile-cta-instagram {
  color: #E1306C;
}

.mobile-cta-item span {
  font-size: 0.6875rem;
  font-weight: 700;
}

/* ============================================
   Utilities
   ============================================ */
.body-no-scroll {
  overflow: hidden;
}
