/**
 * COZQ - COMPLETELY NEW WEBSITE DESIGN
 * Fresh, Bold, Unique - Built from Scratch
 */

/* ==========================================
   CUSTOM FONTS
   ========================================== */

@font-face {
  font-family: 'OTSono';
  src: url('../fonts/OTSono.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================
   DESIGN TOKENS - BRAND NEW SYSTEM
   ========================================== */

:root {
  /* Brand Colors - Orange Focus */
  --primary: #FF6B35;
  --primary-dark: #E85A2A;
  --primary-light: #FF8C5A;
  --secondary: #1A1A2E;
  --accent: #FFD93D;
  
  /* Neutrals */
  --white: #FFFFFF;
  --black: #0F0F0F;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Typography - OTSono for Everything */
  --font-heading: 'OTSono', sans-serif;
  --font-body: 'OTSono', sans-serif;
  
  /* Fluid Type Scale */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.375rem);
  --fs-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  --fs-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
  --fs-3xl: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --fs-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --fs-5xl: clamp(3rem, 2.25rem + 3.75vw, 5.5rem);
  --fs-6xl: clamp(3.75rem, 2.75rem + 5vw, 7rem);
  
  /* Spacing - 8px base */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 2.5rem;
  --s-6: 3rem;
  --s-8: 4rem;
  --s-10: 5rem;
  --s-12: 6rem;
  --s-16: 8rem;
  --s-20: 10rem;
  
  /* Borders */
  --br-sm: 8px;
  --br-md: 16px;
  --br-lg: 24px;
  --br-xl: 32px;
  --br-full: 9999px;
  
  /* Shadows - Dramatic */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.24);
  
  /* Transitions */
  --ease-1: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-2: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-3: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ==========================================
   RESET & BASE
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ==========================================
   LAYOUT
   ========================================== */

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--s-4);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--s-6);
  }
}

/* ==========================================
   HEADER - SPLIT DESIGN
   ========================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--black);
  transition: transform 0.3s var(--ease-1);
}

.site-header.hide {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--s-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--black);
  position: relative;
}

.brand::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-1);
}

.brand:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.logo {
  height: 220px;
  width: auto;
}

.logo-menu {
  height: 40px;
  width: auto;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: var(--black);
  color: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--br-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-2);
}

.mobile-nav-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05) rotate(-2deg);
}

.mobile-nav-toggle:active {
  transform: scale(0.95);
}

/* ==========================================
   MOBILE MENU - SLIDE IN
   ========================================== */

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 500px;
  background: var(--secondary);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-3);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}

.mobile-nav--open {
  transform: translateX(0);
}

.mobile-nav__header {
  padding: var(--s-4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.modal-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-close {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: var(--fs-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-2);
}

.mobile-nav-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-8) var(--s-4);
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.menu-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-4xl);
  color: var(--white);
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.3s var(--ease-1);
}

.mobile-nav--open .menu-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav--open .menu-list li:nth-child(1) .menu-link { transition-delay: 0.1s; }
.mobile-nav--open .menu-list li:nth-child(2) .menu-link { transition-delay: 0.15s; }
.mobile-nav--open .menu-list li:nth-child(3) .menu-link { transition-delay: 0.2s; }
.mobile-nav--open .menu-list li:nth-child(4) .menu-link { transition-delay: 0.25s; }

.menu-link::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 4px;
  background: var(--primary);
  transition: width 0.3s var(--ease-1);
}

.menu-link:hover {
  color: var(--primary);
  transform: translateX(10px);
}

.menu-link:hover::before {
  width: 12px;
}

.mobile-nav__footer {
  padding: var(--s-4);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  color: var(--gray-400);
  font-size: var(--fs-sm);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-1);
  backdrop-filter: blur(4px);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.site-main {
  margin-top: 80px;
}

/* ==========================================
   HERO - BOLD & ASYMMETRIC
   ========================================== */

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: var(--s-10) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-8);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: var(--black);
  color: var(--white);
  border-radius: var(--br-full);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--s-4);
  animation: slideDown 0.6s var(--ease-1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  font-size: var(--fs-6xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--s-4);
  animation: slideUp 0.6s var(--ease-1) 0.1s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title .highlight {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.hero__title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--accent);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 0.8s var(--ease-1) 0.5s forwards;
}

@keyframes underline {
  to { transform: scaleX(1); }
}

.hero__description {
  font-size: var(--fs-xl);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--s-6);
  animation: slideUp 0.6s var(--ease-1) 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  animation: slideUp 0.6s var(--ease-1) 0.3s both;
}

.hero__image {
  position: relative;
  animation: slideUp 0.6s var(--ease-1) 0.4s both;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--br-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 4px solid var(--black);
  transform: rotate(2deg);
  transition: transform 0.3s var(--ease-1);
  aspect-ratio: 4/3;
  min-height: 400px;
}

.hero__image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease-in-out;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.stat {
  text-align: center;
  padding: var(--s-4);
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--br-md);
  transition: all 0.3s var(--ease-2);
}

.stat:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stat__value {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--s-1);
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-base);
  border-radius: var(--br-full);
  transition: all 0.3s var(--ease-2);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-1);
  z-index: -1;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   SECTIONS
   ========================================== */

.section {
  padding: var(--s-16) 0;
  position: relative;
}

.section--dark {
  background: var(--secondary);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--gray {
  background: var(--gray-50);
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--s-10);
}

.section__badge {
  display: inline-block;
  padding: var(--s-1) var(--s-3);
  background: var(--black);
  color: var(--white);
  border-radius: var(--br-full);
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-3);
}

.section__title {
  font-size: var(--fs-5xl);
  font-weight: 800;
  margin-bottom: var(--s-4);
}

.section__title .highlight {
  color: var(--primary);
  position: relative;
}

.section__description {
  font-size: var(--fs-lg);
  color: var(--gray-600);
  line-height: 1.7;
}

.section--dark .section__description {
  color: var(--gray-400);
}

/* ==========================================
   CARDS
   ========================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-4);
}

.card {
  padding: var(--s-6);
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--br-lg);
  transition: all 0.3s var(--ease-2);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-1);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-xl);
}

.card__icon {
  width: 64px;
  height: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--br-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-3xl);
  margin-bottom: var(--s-4);
}

.card__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--s-2);
}

.card__description {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: var(--s-12) 0 var(--s-4);
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--s-3);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.footer-col a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-text {
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 400px;
}

.footer-bottom {
  padding-top: var(--s-4);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--gray-500);
  font-size: var(--fs-sm);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: Show content if JS doesn't load */
.no-js .reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Show content immediately if animations are disabled */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================
   LIGHTBOX
   ========================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-1);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox__content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  padding: var(--s-4);
  transform: scale(0.9);
  transition: transform 0.3s var(--ease-2);
}

.lightbox.is-open .lightbox__content {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--black);
  color: var(--black);
  font-size: var(--fs-3xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-2);
  z-index: 3;
}

.lightbox__close:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.lightbox__image {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  border: 4px solid var(--white);
  border-radius: var(--br-lg);
  box-shadow: var(--shadow-2xl);
}

.lightbox__caption {
  margin-top: var(--s-3);
  text-align: center;
  color: var(--white);
  font-size: var(--fs-lg);
  font-weight: 600;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* ==========================================
   RESPONSIVE DESIGN - TABLET & BELOW
   ========================================== */

@media (max-width: 1024px) {
  /* Hero Section */
  .hero {
    padding-top: 120px;
    padding-bottom: var(--s-10);
  }
  
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  
  .hero__image {
    order: -1;
  }
  
  .hero__title {
    font-size: var(--fs-6xl);
  }
  
  .hero__description {
    font-size: var(--fs-lg);
  }
  
  /* Sections */
  .section {
    padding: var(--s-12) 0;
  }
  
  .section__title {
    font-size: var(--fs-4xl);
  }
  
  /* Grids */
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
  }
  
  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Showcase Page */
  .showcase-filters {
    flex-wrap: wrap;
    gap: var(--s-3);
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  
  /* About Page */
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
  }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */

@media (max-width: 768px) {
  /* Base */
  .container {
    padding-left: var(--s-4);
    padding-right: var(--s-4);
  }
  
  /* Header */
  .site-header {
    width: calc(100% - var(--s-4));
    padding: var(--s-2) var(--s-4);
  }
  
  .site-logo {
    height: 28px;
  }
  
  /* Hero Section */
  .hero {
    padding-top: 100px;
    padding-bottom: var(--s-8);
  }
  
  .hero__title {
    font-size: var(--fs-4xl);
    margin-bottom: var(--s-4);
  }
  
  .hero__description {
    font-size: var(--fs-base);
    margin-bottom: var(--s-6);
  }
  
  .hero__actions {
    flex-direction: column;
    gap: var(--s-3);
    width: 100%;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero__image-wrapper {
    min-height: 300px;
  }
  
  /* Sections */
  .section {
    padding: var(--s-10) 0;
  }
  
  .section__title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--s-3);
  }
  
  .section__description {
    font-size: var(--fs-base);
  }
  
  .section__badge {
    font-size: var(--fs-xs);
    padding: var(--s-1) var(--s-2);
  }
  
  /* Stats */
  .stats-row {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  
  .stat-card {
    padding: var(--s-5);
  }
  
  .stat-card__number {
    font-size: var(--fs-4xl);
  }
  
  /* Cards & Grids */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  
  .card {
    padding: var(--s-5);
  }
  
  .card__title {
    font-size: var(--fs-xl);
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  
  /* Buttons */
  .btn {
    padding: var(--s-3) var(--s-5);
    font-size: var(--fs-sm);
  }
  
  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  
  .contact-card {
    padding: var(--s-5);
  }
  
  /* Showcase Page */
  .showcase-filters {
    gap: var(--s-2);
  }
  
  .filter-btn {
    padding: var(--s-2) var(--s-4);
    font-size: var(--fs-sm);
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  /* Showcase Detail */
  .showcase-detail-hero {
    padding: var(--s-10) 0;
  }
  
  .showcase-detail-title {
    font-size: var(--fs-3xl);
  }
  
  .showcase-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  
  .showcase-detail-sidebar {
    position: static;
  }
  
  .showcase-detail-gallery {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  
  .related-projects-grid {
    grid-template-columns: 1fr;
  }
  
  /* About Page */
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  
  .footer-col h3 {
    font-size: var(--fs-xl);
  }
  
  /* Mobile Menu */
  .mobile-nav {
    width: 100%;
    max-width: 100%;
  }
  
  .menu-link {
    font-size: var(--fs-3xl);
  }
}

/* ==========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ========================================== */

@media (max-width: 480px) {
  /* Hero */
  .hero__title {
    font-size: var(--fs-3xl);
  }
  
  .hero__image-wrapper {
    min-height: 250px;
  }
  
  /* Sections */
  .section {
    padding: var(--s-8) 0;
  }
  
  .section__title {
    font-size: var(--fs-2xl);
  }
  
  /* Stats */
  .stat-card__number {
    font-size: var(--fs-3xl);
  }
  
  .stat-card__label {
    font-size: var(--fs-sm);
  }
  
  /* Mobile Menu */
  .menu-link {
    font-size: var(--fs-2xl);
  }
  
  /* Showcase Detail */
  .showcase-detail-title {
    font-size: var(--fs-2xl);
  }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-primary { background: var(--primary); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

