/* ==========================================================================
   SELECT TYRES - STYLESHEET
   Matching ChatGPT Design Mockup
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@600;700&display=swap');

:root {
  --primary-red: #D32F2F;
  --primary-red-hover: #B71C1C;
  --dark-bg: #111111;
  --dark-surface: #181818;
  --dark-bar: #0D0D0D;
  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --text-light: #F3F4F6;
  --bg-light: #F8F9FA;
  --border-color: #E5E7EB;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-handwritten: 'Caveat', cursive;
  --transition: all 0.3s ease;
  --container-max: 1240px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

/* ==========================================================================
   1. TOP INFOBAR
   ========================================================================== */
.top-bar {
  background-color: var(--dark-bg);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-item i {
  color: var(--primary-red);
  font-size: 0.95rem;
}

.top-social {
  display: flex;
  align-items: center;
}

.top-social a {
  color: #FFFFFF;
  font-size: 0.9rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.top-social a:hover {
  color: var(--primary-red);
}

/* ==========================================================================
   2. MAIN HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background-color: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  border: 2px solid #333333;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-title .select {
  color: #111111;
}

.logo-title .tyres {
  color: var(--primary-red);
}

.logo-subtitle {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  color: #555555;
  letter-spacing: 2px;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #222222;
  text-transform: uppercase;
  padding: 30px 0;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-red);
}

.nav-link i {
  font-size: 0.75rem;
  margin-left: 3px;
}

/* Header Action Button */
.btn-header-cta {
  background-color: var(--primary-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.25);
  transition: var(--transition);
}

.btn-header-cta:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #111;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.3) 100%),
              url('assets/hero_bg.jpg') center/cover no-repeat;
  padding: 100px 0 120px 0;
  color: #FFFFFF;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-title .white-text {
  color: #FFFFFF;
  display: block;
}

.hero-title .red-text {
  color: var(--primary-red);
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 400;
  color: #E0E0E0;
  margin-bottom: 35px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  transition: var(--transition);
}

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

.btn-secondary-outline {
  background-color: transparent;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  border: 1.5px solid #FFFFFF;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary-outline:hover {
  background-color: #FFFFFF;
  color: #111111;
  transform: translateY(-2px);
}

/* ==========================================================================
   4. FEATURE HIGHLIGHTS BAR (4 COLUMNS)
   ========================================================================== */
.features-bar {
  background-color: var(--dark-bar);
  color: #FFFFFF;
  padding: 35px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.15rem;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 0.8rem;
  color: #A0A0A0;
  line-height: 1.3;
}

/* ==========================================================================
   5. OUR SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 70px 0 90px 0;
  background-color: #FFFFFF;
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  position: relative;
  display: block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-red);
  margin: 12px auto 0 auto;
}

.services-container-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.services-row-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 935px;
  margin: 0 auto;
  width: 100%;
}

.service-card {
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: #D0D0D0;
}

.service-image-box {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image-box img {
  transform: scale(1.05);
}

/* Floating Center Red Icon */
.service-icon-floating {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--primary-red);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 3px solid #FFFFFF;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.service-card-body {
  padding: 35px 20px 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.service-link i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   6. TESTIMONIALS / REVIEWS SECTION
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-light);
  padding: 75px 0 85px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 32px 28px 25px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.quote-icon {
  font-size: 2.2rem;
  color: var(--primary-red);
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: bold;
}

.star-rating {
  color: #FFB800;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: #333333;
  line-height: 1.55;
  margin-bottom: 25px;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #F0F0F0;
  padding-top: 15px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

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

.author-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #111111;
}

.author-status {
  font-size: 0.75rem;
  color: #888888;
}

/* ==========================================================================
   7. APPOINTMENT CTA BANNER
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(to right, #000000 0%, #161616 100%);
  position: relative;
  padding: 55px 0;
  color: #FFFFFF;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: url('assets/service_tyres.jpg') center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.cta-banner-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text-box {
  max-width: 650px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.cta-title .white-text {
  color: #FFFFFF;
}

.cta-title .red-text {
  color: var(--primary-red);
  display: block;
}

.cta-subtitle {
  font-size: 0.95rem;
  color: #CCCCCC;
  margin-top: 8px;
}

.cta-button-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.btn-banner-cta {
  background-color: var(--primary-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  transition: var(--transition);
}

.btn-banner-cta:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
}

.cta-handwritten-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  margin-right: 15px;
}

.handwritten-text {
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  color: #FFFFFF;
  font-weight: 600;
  transform: rotate(-3deg);
}

.handwritten-arrow-svg {
  width: 32px;
  height: 24px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ==========================================================================
   8. CONTACT & MESSAGE SECTION
   ========================================================================== */
.contact-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-top: 10px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon-circle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background-color: var(--primary-red);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.25);
}

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

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-main-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 2px;
}

.contact-sub-value {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-box {
  background-color: #FFFFFF;
}

.form-header-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  background-color: #FAFAFA;
  color: #333;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-form-submit {
  background-color: var(--primary-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}

.btn-form-submit:hover {
  background-color: var(--primary-red-hover);
}

.form-recaptcha-note {
  font-size: 0.72rem;
  color: #999999;
  line-height: 1.4;
  margin-top: 10px;
}

/* ==========================================================================
   9. FOOTER SECTION
   ========================================================================== */
.main-footer {
  background-color: var(--dark-bg);
  color: #A0A0A0;
  padding: 70px 0 0 0;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.3fr 1.2fr 1fr;
  gap: 35px;
  margin-bottom: 50px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
}

.footer-brand-desc {
  margin: 18px 0 20px 0;
  line-height: 1.6;
  color: #888888;
  font-size: 0.83rem;
}

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

.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #222222;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--primary-red);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: #888888;
  font-size: 0.83rem;
}

.footer-links-list a:hover {
  color: #FFFFFF;
  padding-left: 3px;
}

.footer-hours-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #888888;
  font-size: 0.83rem;
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-badge {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 4px 8px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
}

.payment-badge.visa {
  color: #1A1F71;
  font-style: italic;
}

.payment-badge.mastercard {
  color: #EB001B;
}

.payment-badge.eftpos {
  color: #000000;
  font-weight: 800;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 0.78rem;
  color: #777777;
}

.footer-bottom-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal-links {
  display: flex;
  gap: 15px;
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

/* Modal Popup Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-content {
  background: #FFFFFF;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  transform: translateY(-20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-row-top,
  .services-row-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .top-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .services-row-top,
  .services-row-bottom {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-section .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .cta-button-box {
    align-items: flex-start;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
