/* =============================================
   TEE PARTY GOLF CO LLC — Global Styles
   ============================================= */

:root {
  --navy:       #080A27;
  --navy-light: #131640;
  --dark-grey:  #2A2A2A;
  --green:      #3CB54A;
  --green-dark: #2a9e38;
  --white:      #FFFFFF;
  --off-white:  #F5F6FA;
  --border:     #e0e0e0;
  --text-muted: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-grey);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  background: var(--navy);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.navbar-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.navbar-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.25s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* Book Now button in navbar */
.navbar-links .btn-nav-book {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 4px;
  border-bottom: none !important;
  transition: background 0.25s, transform 0.2s !important;
}

.navbar-links .btn-nav-book:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Page offset for fixed navbar */
.page-top {
  padding-top: 80px;
}

/* =============================================
   HERO — HOME
   ============================================= */

.hero {
  background: linear-gradient(rgba(8, 10, 39, 0.65), rgba(8, 10, 39, 0.65)), url('../images/hero-bg.jpg') center/cover no-repeat;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Decorative green line at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--green);
}

/* Subtle background circles */
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(60, 181, 74, 0.05);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(60, 181, 74, 0.15);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-content h1 .highlight {
  color: var(--green);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
  border: 2px solid var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* =============================================
   SECTION COMMONS
   ============================================= */

section {
  padding: 5.5rem 2rem;
}

.why-choose-section {
  background: linear-gradient(rgba(8, 10, 39, 0.72), rgba(8, 10, 39, 0.72)), url('../images/home2.jpg') center/cover no-repeat;
  color: var(--white);
}

.why-choose-section .section-title h2,
.why-choose-section .section-title p {
  color: var(--white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-title .bar {
  width: 55px;
  height: 4px;
  background: var(--green);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

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

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

/* =============================================
   CARDS GRID
   ============================================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--green);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.13);
}

.card h3 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   PAGE HERO (subpages)
   ============================================= */

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
  color: var(--white);
  border-bottom: 5px solid var(--green);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-hero p {
  opacity: 0.75;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* =============================================
   STATS ROW
   ============================================= */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: var(--green);
  padding: 0;
  text-align: center;
}

.stat-item {
  padding: 2.5rem 1rem;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-story-section {
  background: linear-gradient(rgba(8, 10, 39, 0.6), rgba(8, 10, 39, 0.6)), url('../images/about-bg.jpg') center/cover no-repeat;
}

.about-story-section .about-text h2,
.about-story-section .about-text p,
.about-story-section .about-text .about-list li {
  color: var(--white);
}

.about-story-section .about-text .about-list li::before {
  color: var(--green);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 800;
}

.about-text p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-text .about-list {
  list-style: none;
  margin-top: 1rem;
}

.about-text .about-list li {
  padding: 0.4rem 0;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-text .about-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 15px 40px rgba(11, 28, 62, 0.3);
  position: relative;
  overflow: hidden;
}

.about-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--green);
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--green);
}

.team-card h3 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-card span {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   SERVICES PAGE
   ============================================= */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

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

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-info h3 {
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.service-info .service-tag {
  display: inline-block;
  background: rgba(60, 181, 74, 0.12);
  color: var(--green);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

.service-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-info ul {
  list-style: none;
}

.service-info ul li {
  padding: 0.35rem 0;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.service-info ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-visual {
  border-radius: 12px;
  height: 300px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 28, 62, 0.25);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.3s;
  border: 2px solid var(--border);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--green);
  transform: scale(1.03);
}

.pricing-card.featured .featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card .price-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.5rem 0 1.5rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card ul li {
  padding: 0.4rem 0;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

/* =============================================
   GALLERY PAGE
   ============================================= */

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 62, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  gap: 0.4rem;
}

.gallery-item-overlay span {
  font-weight: 700;
  font-size: 0.95rem;
}

.gallery-item-overlay small {
  color: var(--green);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* =============================================
   CONTACT & SCHEDULE FORMS
   ============================================= */

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-bg-section {
  background: linear-gradient(rgba(8, 10, 39, 0.7), rgba(8, 10, 39, 0.7)), url('../images/contact-us.jpg') center/cover no-repeat;
}

.contact-bg-section .form-info h3,
.contact-bg-section .form-info p,
.contact-bg-section .form-info a {
  color: var(--white) !important;
}

.contact-bg-section .contact-detail-text strong {
  color: var(--white);
}

.contact-bg-section .contact-detail-text span {
  color: rgba(255,255,255,0.75);
}

.form-info h3 {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-detail-text span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 6px 30px rgba(0,0,0,0.09);
  border-top: 4px solid var(--green);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.form-group label .req {
  color: var(--green);
  margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
  color: var(--dark-grey);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(60, 181, 74, 0.12);
}

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

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

.success-msg {
  background: #d4edda;
  color: #155724;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  text-align: center;
  margin-top: 1rem;
  display: none;
  font-weight: 600;
}

.success-msg.show {
  display: block;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--green);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.8;
  margin-bottom: 2.25rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--dark-grey);
  color: var(--white);
  padding: 3.5rem 2rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #444;
}

.footer-brand img {
  height: 58px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  color: var(--green);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-col ul li a:hover {
  color: var(--green);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .about-grid,
  .service-block,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-block.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1.5rem;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--navy);
    padding: 1.5rem 2rem 2rem;
    gap: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    align-items: flex-start;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links a {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  section {
    padding: 4rem 1.25rem;
  }

  .form-card {
    padding: 1.75rem 1.25rem;
  }
}
