/* ==========================================================================
   1. RESET & GLOBAL VARIABLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-dark: #1b2845;
  --accent-orange: #e09f67;
  --text-main: #1b2845;
  --text-muted: #667085;
  --bg-gradient-start: #ffffff;
  --bg-gradient-end: #faf7f2;
  --card-bg: #ffffff;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: 0 auto;
}

/* ==========================================================================
   2. NAVBAR & NAVIGATION
   ========================================================================== */
.navbar {
  position: relative;
  background-color: transparent;
  padding: 1.25rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.text-dark { color: var(--primary-dark); }
.text-orange { color: var(--accent-orange); }

/* Hamburger Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  width: 24px;
  height: 2px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav Dropdown */
.nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  z-index: 100;
}

.nav-menu.is-active {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  font-weight: 700;
}

/* Cart Button (Mobile Default) */
.btn-cart {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(27, 40, 69, 0.15);
  transition: transform 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.btn-cart:hover {
  background-color: #121c33;
}

.cart-icon-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
}

/* ==========================================================================
   3. HERO SECTION (index.html)
   ========================================================================== */
.hero {
  padding: 2rem 0 4rem;
  flex-grow: 1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #fdf2e9;
  color: #d97736;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(27, 40, 69, 0.25);
}

.btn-outline {
  border: 1.5px solid var(--primary-dark);
  color: var(--primary-dark);
}

.hero-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-card-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: #ffffff;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

/* ==========================================================================
   4. SHOP CATALOG SECTION (shop.html)
   ========================================================================== */
.shop-section {
  padding: 2rem 0 5rem;
  flex-grow: 1;
}

.shop-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.shop-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.shop-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background-color: #f2f4f7;
  color: var(--primary-dark);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  font-family: inherit;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(27, 40, 69, 0.2);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: 18px;
  overflow: hidden;
}

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

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.25rem 0.25rem 0.25rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.btn-add-cart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  color: #ffffff;
  border: none;
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-add-cart:hover {
  background-color: #121c33;
  box-shadow: 0 4px 10px rgba(27, 40, 69, 0.3);
}

.btn-add-cart:active {
  transform: scale(0.9);
}

/* ==========================================================================
   5. PROMO SECTION (promo.html)
   ========================================================================== */
.promo-section {
  padding: 2rem 0 5rem;
  flex-grow: 1;
}

.promo-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.promo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-promo {
  background-color: #fde8e8;
  color: #e05638;
}

.promo-title {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.promo-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Bundle Grid */
.bundle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

.bundle-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid var(--accent-orange);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.bundle-card.active {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(224, 159, 103, 0.15);
}

.bundle-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #eb5757;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.bundle-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.bundle-price-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.price-old {
  font-size: 0.9rem;
  color: #a0aec0;
  text-decoration: line-through;
  font-weight: 500;
}

.price-new {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.bundle-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bundle-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #27ae60;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: bold;
}

.promo-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.promo-card-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: #ffffff;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.promo-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
}

/* ==========================================================================
   6. ABOUT SECTION (about.html - Mobile First)
   ========================================================================== */
.about-section {
  padding: 2rem 0 4rem;
  flex-grow: 1;
}

.about-container {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-size: 1.85rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: #fdf2e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.about-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-card-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.about-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

/* ==========================================================================
   7. FAQ SECTION (faq.html)
   ========================================================================== */
.faq-section {
  padding: 3rem 0 5rem;
  flex-grow: 1;
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.faq-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.faq-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.faq-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-question-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.question-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #fdf2e9;
  color: var(--accent-orange);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.faq-answer {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   8. CONTACT SECTION (contact.html)
   ========================================================================== */
.contact-section {
  padding: 2rem 0 5rem;
  flex-grow: 1;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: #fdf2e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  font-size: 1.1rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #a0aec0;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--primary-dark);
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #cbd5e1;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(27, 40, 69, 0.08);
}

.form-textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background-color: var(--primary-dark);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background-color: #121c33;
}

.btn-submit:active {
  transform: scale(0.98);
}

/* ==========================================================================
   9. MODAL POPUP STYLES
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 40, 69, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.is-active .modal-card {
  transform: scale(1);
}

.modal-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: #fdf2e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  padding: 12px;
}

.modal-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.modal-message {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn-modal-close {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-dark);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-modal-close:hover {
  background-color: #121c33;
}

/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS (Tablet & Desktop)
   ========================================================================== */

/* Tablet Breakpoints (>= 640px / 768px) */
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .bundle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img {
    height: 320px;
  }
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Desktop Breakpoint (>= 992px) */
@media (min-width: 992px) {
  .container {
    max-width: 1200px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-menu {
    display: block;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .nav-list {
    flex-direction: row;
    gap: 2.5rem;
  }

  /* Cart Button Desktop */
  .btn-cart {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    gap: 0.5rem;
  }

  .cart-icon-img {
    width: 18px;
    height: 18px;
  }

  /* Hero Section Desktop */
  .hero {
    padding: 4rem 0 6rem;
  }

  .hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }

  .hero-content {
    flex: 1;
    max-width: 560px;
  }

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

  .hero-buttons {
    flex-direction: row;
    width: auto;
  }

  .hero-image-wrapper {
    flex: 1;
  }

  .hero-img {
    height: 480px;
  }

  /* Shop Header Desktop */
  .shop-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .shop-title {
    font-size: 2.5rem;
  }

  /* Promo Section Desktop */
  .promo-section {
    padding: 4rem 0 6rem;
  }

  .promo-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }

  .promo-content {
    flex: 1;
    max-width: 580px;
  }

  .promo-title {
    font-size: 3.25rem;
  }

  .promo-image-wrapper {
    flex: 1;
  }

  .promo-img {
    height: 520px;
  }

  /* About Section Desktop */
  .about-section {
    padding: 4rem 0 6rem;
  }

  .about-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }

  .about-image-wrapper {
    flex: 1;
  }

  .about-card-image {
    padding: 12px;
    border-radius: 24px;
  }

  .about-img {
    height: 480px;
    border-radius: 16px;
  }

  .about-content {
    flex: 1;
    max-width: 580px;
  }

  .about-title {
    font-size: 3rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* FAQ Section Desktop */
  .faq-section {
    padding: 4rem 0 6rem;
  }

  .faq-title {
    font-size: 2.5rem;
  }

  /* Contact Section Desktop */
  .contact-section {
    padding: 4rem 0 6rem;
  }

  .contact-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
  }

  .contact-info {
    flex: 1;
    max-width: 480px;
  }

  .contact-title {
    font-size: 3.25rem;
  }

  .contact-form-wrapper {
    flex: 1;
    max-width: 540px;
  }

  .contact-form {
    padding: 2.5rem;
  }
}