:root {
  --bg: #05080f;
  --dark: #0a0e1a;
  --blue: #3aa9ff;
  --blue-dark: #2a7dcc;
  --accent: #ff6b9d;
  --text-light: #e0e0e0;
  --text-muted: #999;
  --border: rgba(58, 169, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* NAVIGATION */
.dynamic-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  z-index: 1000;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dynamic-nav button {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.dynamic-nav button:hover {
  background: rgba(58, 169, 255, 0.1);
  color: var(--blue);
}

.dynamic-nav button.active {
  background: var(--blue);
  color: black;
  box-shadow: 0 0 20px rgba(58, 169, 255, 0.5);
}

/* PAGE TRANSITIONS */
.page {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.page.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  inset: auto;
}

/* ANIMATIONS */
.liquid-item {
  opacity: 0;
  filter: blur(20px);
  transform: translateY(30px);
}

.liquid-item.animate {
  animation: liquidIn 0.8s ease forwards;
}

@keyframes liquidIn {
  0% {
    opacity: 0;
    filter: blur(25px);
    transform: translateY(30px);
  }
  60% {
    opacity: 1;
    filter: blur(8px);
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* BUTTONS */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--blue);
  color: black;
  box-shadow: 0 4px 15px rgba(58, 169, 255, 0.4);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 169, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: var(--blue);
  color: black;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(58, 169, 255, 0.1);
  border-color: var(--blue);
}

/* HOME / HERO */
.hero-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  flex: 1;
  z-index: 10;
}

.logo-hero {
  width: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px var(--blue));
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--blue), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-video {
  flex: 1;
  height: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(58, 169, 255, 0.2);
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

/* STATS SECTION */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 60px;
}

.stat-card {
  background: rgba(58, 169, 255, 0.05);
  border: 1px solid var(--border);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(58, 169, 255, 0.1);
  border-color: var(--blue);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  padding: 80px 20px 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--blue), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
}

.service-card {
  background: rgba(58, 169, 255, 0.05);
  border: 1px solid var(--border);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(58, 169, 255, 0.1);
  border-color: var(--blue);
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(58, 169, 255, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-link:hover {
  color: var(--blue-dark);
  transform: translateX(5px);
}

/* PRICING */
.pricing-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 40px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--blue), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: rgba(58, 169, 255, 0.05);
  border: 1px solid var(--border);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(58, 169, 255, 0.1), rgba(255, 107, 157, 0.05));
  border: 2px solid var(--blue);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(58, 169, 255, 0.2);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: black;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.price {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.price span {
  font-size: 2.2rem;
  color: var(--blue);
  font-weight: 800;
}

.price-features {
  list-style: none;
  margin: 25px 0;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.price-features li:last-child {
  border-bottom: none;
}

.pricing-card button {
  width: 100%;
  margin-top: 20px;
}

/* PORTFOLIO */
.portfolio-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 40px;
}

.portfolio-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.portfolio-description {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1rem;
}

/* GALLERY */
.photo-categories {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-btn {
  background: rgba(58, 169, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.category-btn:hover {
  background: rgba(58, 169, 255, 0.1);
  border-color: var(--blue);
  color: var(--blue);
}

.category-btn.active {
  background: var(--blue);
  color: black;
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(58, 169, 255, 0.5);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.photo-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.gallery[data-category="paysage"] {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.gallery[data-category="paysage"] .photo-card:nth-child(1),
.gallery[data-category="paysage"] .photo-card:nth-child(2) {
  grid-column: 1 / -1;
}

.gallery[data-category="paysage"] .photo-card:nth-child(1) img,
.gallery[data-category="paysage"] .photo-card:nth-child(2) img {
  height: 420px;
}

.gallery[data-category="paysage"] .photo-card:nth-child(3),
.gallery[data-category="paysage"] .photo-card:nth-child(4) {
  grid-column: span 1;
}

.gallery[data-category="paysage"] .photo-card:nth-child(3) img,
.gallery[data-category="paysage"] .photo-card:nth-child(4) img {
  height: 520px;
  object-position: center;
}

.photo-card.featured-landscape {
  grid-column: 1 / -1;
}

.photo-card.featured-landscape img {
  height: 420px;
  object-fit: cover;
}

.photo-card:hover img {
  transform: none;
  border-color: var(--blue);
}

.gallery[data-category="publicitaire"] {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.gallery[data-category="publicitaire"] .photo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(58, 169, 255, 0.12);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery[data-category="publicitaire"] .photo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 169, 255, 0.4);
}

.gallery[data-category="publicitaire"] .photo-card img {
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery[data-category="publicitaire"] .photo-title {
  margin-top: 4px;
}

.video-portfolio {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(58, 169, 255, 0.18);
}

.video-portfolio .portfolio-title {
  margin-bottom: 28px;
}

.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.photo-modal-content {
  position: relative;
  width: min(90vw, 1000px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 14, 26, 0.9);
  border: 1px solid rgba(58, 169, 255, 0.3);
}

.photo-modal-content img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

.photo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .gallery[data-category="publicitaire"] {
    grid-template-columns: 1fr;
  }

  .gallery[data-category="publicitaire"] .photo-card img {
    height: 340px;
  }

  .gallery[data-category="paysage"] {
    grid-template-columns: 1fr;
  }

  .gallery[data-category="paysage"] .photo-card:nth-child(1),
  .gallery[data-category="paysage"] .photo-card:nth-child(2),
  .gallery[data-category="paysage"] .photo-card:nth-child(3),
  .gallery[data-category="paysage"] .photo-card:nth-child(4) {
    grid-column: auto;
  }

  .photo-card img {
    height: 220px;
  }

  .gallery[data-category="paysage"] .photo-card:nth-child(1) img,
  .gallery[data-category="paysage"] .photo-card:nth-child(2) img,
  .gallery[data-category="paysage"] .photo-card:nth-child(3) img,
  .gallery[data-category="paysage"] .photo-card:nth-child(4) img {
    height: 240px;
  }
}

.photo-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* VIDEOS */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.video-player {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.video-card[data-video="pub.mp4"] .video-player {
  aspect-ratio: 9 / 16;
  width: min(100%, 420px);
}

.video-player:hover {
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(58, 169, 255, 0.3);
}

.video-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.video-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* ABOUT */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--blue), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content h3 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.equipment-list {
  list-style: none;
  background: rgba(58, 169, 255, 0.05);
  border-left: 3px solid var(--blue);
  padding: 20px 25px;
  border-radius: 8px;
  margin: 20px 0;
}

.equipment-list li {
  padding: 10px 0;
  color: var(--text-light);
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature {
  background: rgba(58, 169, 255, 0.05);
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(58, 169, 255, 0.1);
  border-color: var(--blue);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature h4 {
  margin-bottom: 10px;
  color: var(--text-light);
}

.feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CONTACT */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-form-wrapper {
  background: rgba(58, 169, 255, 0.05);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 15px;
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.contact-form {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 12px 15px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  margin: 4px 0;
}

.checkbox-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-item input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--blue);
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 4px;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.95rem;
  color: var(--blue);
  margin-top: 2px;
}

.form-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.toggle-btn {
  flex: 1;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--blue);
  color: black;
  border-color: var(--blue);
}

.contact-form.active-form {
  display: flex;
}

.pricing-options {
  display: grid;
  gap: 10px;
}

.price-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
}

.price-option input {
  width: auto;
  accent-color: var(--blue);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--blue);
  box-shadow: 0 0 15px rgba(58, 169, 255, 0.2);
}

.contact-form button {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(58, 169, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(58, 169, 255, 0.1);
  border-color: var(--blue);
}

.contact-icon {
  font-size: 1.8rem;
}

.contact-item h4 {
  margin-bottom: 8px;
  color: var(--text-light);
}

.contact-item a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--blue-dark);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: rgba(58, 169, 255, 0.05);
  border: 1px solid var(--border);

  color: var(--text-light);
  text-decoration: none;

  padding: 12px 20px;
  border-radius: 12px;

  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(58, 169, 255, 0.25);
}

.social-link:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.cta-box {
  background: linear-gradient(135deg, rgba(58, 169, 255, 0.1), rgba(255, 107, 157, 0.05));
  border: 2px solid var(--blue);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.cta-box p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.cta-box button {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero-intro {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    min-height: auto;
    gap: 40px;

    flex-direction: column;
  }

  .hero-video {
    width: 100%;
  }

  .video-wrapper {
    width: 100%;
    max-width: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .services-grid,
  .stats-section {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dynamic-nav {
    flex-wrap: wrap;
    width: 90%;
    gap: 5px;
    padding: 10px;
  }

  .dynamic-nav button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
