/* ===================================
   AGO CONSULTING LLC - STYLE.CSS
   Shared stylesheet for all pages
   Color Palette: Navy & Gold
   =================================== */

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Colors - Navy & Gold */
  --navy-dark: #0a1628;
  --navy: #1a2744;
  --navy-light: #2a3f5f;
  --gold: #c9a227;
  --gold-light: #e3c565;
  --gold-dark: #a68419;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-light: #e9ecef;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --black: #212529;
  
  /* Shadows */
  --shadow: rgba(10, 22, 40, 0.15);
  --shadow-dark: rgba(10, 22, 40, 0.25);
  
  /* Typography */
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

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

ul {
  list-style: none;
}

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

.section {
  padding: var(--section-padding);
}

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

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

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

.section-tag {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.25) 100%);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.section-dark .section-tag {
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.section-description {
  font-size: 18px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: var(--font-primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.45);
}

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

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

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

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

.btn-full {
  width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 30px var(--shadow);
}

/* For inner pages - start with white background */
.navbar-light {
  background: var(--white);
  box-shadow: 0 2px 30px var(--shadow);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  gap: 10px;
}

.logo-ago {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}

.logo-consulting {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar.scrolled .logo-consulting,
.navbar-light .logo-consulting {
  color: var(--navy);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 5px 0;
}

.navbar.scrolled .nav-links a,
.navbar-light .nav-links a {
  color: var(--navy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span,
.navbar-light .hamburger span {
  background: var(--navy);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover;
  opacity: 0.12;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, var(--navy-dark) 75%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  max-width: 950px;
}

.hero-tag {
  display: inline-block;
  padding: 10px 28px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 50px;
  margin-bottom: 30px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(17px, 2.5vw, 22px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 45px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (for inner pages) */
.page-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover;
  opacity: 0.08;
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.page-hero .section-tag {
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold);
}

.page-hero .section-title {
  color: var(--white);
  margin-bottom: 15px;
}

.page-hero .section-description {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== INTRO SECTION ===== */
.intro {
  padding: var(--section-padding);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 60px var(--shadow-dark);
}

.intro-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 16px;
  z-index: -1;
}

.intro-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.intro-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 35px;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.intro-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.25) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.intro-feature-text h4 {
  font-size: 16px;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.intro-feature-text p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 45px 35px;
  box-shadow: 0 15px 40px var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px var(--shadow-dark);
}

.service-card.featured {
  border: 2px solid var(--gold);
}

.service-badge {
  position: absolute;
  top: 25px;
  right: -35px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 50px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 28px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--navy-dark);
  margin-bottom: 15px;
}

.service-description {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-features {
  margin-bottom: 30px;
}

.service-features li {
  padding: 10px 0;
  color: var(--gray-dark);
  font-size: 14px;
  position: relative;
  padding-left: 28px;
  border-bottom: 1px solid var(--gray-light);
}

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

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

.service-pricing {
  text-align: center;
  padding: 25px 0;
  margin-bottom: 25px;
  background: var(--off-white);
  border-radius: 12px;
}

.service-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy-dark);
}

.service-price-note {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-top: 5px;
}

/* ===== TEAM SECTION ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px var(--shadow-dark);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--navy-dark), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-info {
  padding: 25px 20px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.team-role {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--navy-dark);
  margin-bottom: 30px;
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 10px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

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

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 20px;
}

/* Success Message */
.success-message {
  display: none;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
  color: #155724;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 25px;
}

.success-message.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-message h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.success-message p {
  margin: 0;
  font-size: 15px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: var(--off-white);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid var(--gray-light);
}

.info-card.dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  border: none;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--navy-dark);
}

.info-card.dark h3 {
  color: var(--white);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

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

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.25) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-card.dark .info-icon {
  background: rgba(201, 162, 39, 0.2);
}

.info-item strong {
  display: block;
  color: var(--navy-dark);
  font-size: 15px;
  margin-bottom: 4px;
}

.info-card.dark .info-item strong {
  color: var(--white);
}

.info-item p {
  color: var(--gray);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.info-card.dark .info-item p {
  color: rgba(255, 255, 255, 0.75);
}

/* Google Map */
.map-container {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}

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

/* ===== ABOUT PAGE SPECIFIC ===== */
.story-section {
  padding: var(--section-padding);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.story-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.story-content .highlight-text {
  font-size: 20px;
  color: var(--navy-dark);
  font-weight: 500;
  border-left: 4px solid var(--gold);
  padding-left: 25px;
  margin: 35px 0;
  font-style: italic;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px var(--shadow-dark);
}

.story-image-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  padding: 25px 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
}

.story-image-badge .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.story-image-badge .label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mission & Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px var(--shadow-dark);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 30px;
}

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--gold);
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 15px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links li,
.footer-services li {
  margin-bottom: 14px;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover;
  opacity: 0.05;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 42px);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
  
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .intro-grid,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px var(--shadow-dark);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: var(--white) !important;
    font-size: 22px;
  }
  
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-features {
    grid-template-columns: 1fr;
  }
  
  .intro-image-accent,
  .story-image-badge {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-description {
    margin: 0 auto;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .page-hero {
    padding: 150px 0 80px;
  }
  
  .service-card {
    padding: 35px 25px;
  }
}
