/* ===== FONTS ===== */
@font-face {
  font-family: Clashgrotesk;
  src: url('../fonts/ClashGrotesk-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashgrotesk;
  src: url('../fonts/ClashGrotesk-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashgrotesk;
  src: url('../fonts/ClashGrotesk-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashgrotesk;
  src: url('../fonts/ClashGrotesk-Extralight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashgrotesk;
  src: url('../fonts/ClashGrotesk-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashgrotesk;
  src: url('../fonts/ClashGrotesk-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
  --main-font: Clashgrotesk, Arial, sans-serif;
  --secondary-font: Outfit, sans-serif;
  --green: #a3ef05;
  --blue: #00388f;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--secondary-font);
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 600;
  line-height: 1.1;
}

/* ===== UTILITIES ===== */
.container {
  width: 90vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER / NAV ===== */
.site-header {
  z-index: 900;
  width: 100vw;
  height: 75px;
  position: fixed;
  top: 0;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.logo-wrap {
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  height: 100%;
  display: flex;
}

.logo-link {
  background-image: url('../images/RCH.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 90%;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links a {
  font-family: var(--secondary-font);
  color: #fff;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 18px;
  font-weight: 600;
  line-height: 35px;
  transition: color 0.3s ease;
}

.site-header.scrolled .nav-links a {
  color: var(--blue);
}

.nav-links a:hover {
  text-decoration: underline;
}

.header-cta-wrap {
  justify-content: flex-end;
  align-items: center;
  width: 25%;
  height: 100%;
  display: flex;
}

.btn-cta {
  background-color: var(--green);
  font-family: var(--main-font);
  color: #00388f;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  height: 55px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  text-decoration: underline;
}

/* ===== HERO ===== */
.hero {
  margin-top: 0;
  position: relative;
  width: 100vw;
  min-height: 800px;
  max-height: 90vw;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 90vw;
  max-width: 1200px;
  height: 100%;
  min-height: 800px;
  max-height: 90vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 55px;
  font-weight: 600;
  line-height: 55px;
  color: #fff;
}

.hero-text {
  font-family: var(--secondary-font);
  color: #fff;
  width: 550px;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

.hero-text-mobile {
  display: none;
  font-family: var(--secondary-font);
  color: #fff;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

.btn-primary {
  background-color: var(--green);
  font-family: var(--main-font);
  color: #013890;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 225px;
  height: 55px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  border: none;
  cursor: pointer;
}

/* ===== PRICING / SERVICES OVERVIEW ===== */
.pricing-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title {
  font-family: var(--main-font);
  color: #000;
  margin-bottom: 100px;
  font-size: 75px;
  font-weight: 600;
  line-height: 75px;
  text-align: center;
}

.section-title .highlight {
  background-color: var(--green);
  color: var(--blue);
  border-radius: 100px;
  padding-left: 35px;
  padding-right: 35px;
}

.pricing-content {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.services-overview {
  width: 50%;
  padding-right: 100px;
}

.services-overview h2 {
  font-family: var(--main-font);
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-overview p {
  font-family: var(--secondary-font);
  color: #000;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 25px;
}

.service-check {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.check-icon {
  background-color: var(--blue);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  min-width: 25px;
  display: flex;
}

.check-icon img {
  width: 60%;
}

.service-check span {
  font-family: var(--secondary-font);
  color: #000;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

/* Package selection card */
.package-card {
  background-color: #f4f4f7;
  border-radius: 20px;
  width: 50%;
  height: auto;
  padding: 30px 30px 20px;
  overflow: hidden;
}

.package-card h2 {
  font-family: var(--main-font);
  color: #000;
  margin-top: 0;
  font-weight: 600;
}

.package-card > p {
  font-family: var(--secondary-font);
  color: #000;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
}

/* Step indicators */
.step-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.step-indicator.active,
.step-indicator.completed {
  opacity: 1;
}

.step-num {
  background-color: var(--blue);
  color: #fff;
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 600;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-indicator.completed .step-num {
  background-color: var(--green);
  color: var(--blue);
}

.step-label {
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.step-connector {
  width: 30px;
  height: 2px;
  background-color: #ccc;
  margin: 0 8px;
}

/* Form steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h2 {
  font-family: var(--main-font);
  color: #000;
  margin-top: 0;
  font-weight: 600;
}

.form-step p {
  font-family: var(--secondary-font);
  color: #000;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .form-input {
  width: 50%;
}

.step-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.btn-back {
  background-color: #fff;
  font-family: var(--main-font);
  color: var(--blue);
  letter-spacing: 1px;
  border: 2px solid var(--blue);
  border-radius: 100px;
  min-width: 120px;
  height: 55px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0;
  line-height: 51px;
}

.btn-back:hover {
  background-color: #f0f0f0;
}

/* Package options */
.package-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.package-option {
  cursor: pointer;
  display: block;
}

.package-option input[type="radio"] {
  display: none;
}

.package-option-content {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.package-option input:checked + .package-option-content {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.package-price {
  font-family: var(--main-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  min-width: 70px;
}

.package-name {
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.package-desc {
  font-family: var(--secondary-font);
  font-size: 13px;
  color: #666;
  width: 100%;
  line-height: 18px;
}

/* Booking form */
#booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-input {
  font-family: var(--secondary-font);
  border: 1px solid var(--blue);
  border-radius: 7px;
  height: 50px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  background-color: #fff;
}

.date-picker-wrap {
  position: relative;
  width: 100%;
}

input[type="date"].date-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  pointer-events: none;
}

@media (hover: none) and (pointer: coarse) {
  input[type="date"].date-overlay {
    pointer-events: auto;
  }
}

.btn-date-picker {
  font-family: var(--secondary-font);
  background-color: #fff;
  border: 2px solid var(--blue);
  border-radius: 7px;
  height: 55px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-date-picker.has-date {
  color: #000;
  border-color: var(--blue);
}

.btn-date-picker:hover {
  border-color: var(--green);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  padding-right: 40px;
}

.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(163, 239, 5, 0.25);
}

.form-input::placeholder {
  color: #999;
}

.form-textarea {
  height: 80px;
  padding: 12px 15px;
  resize: vertical;
}

.btn-checkout {
  background-color: var(--blue);
  font-family: var(--main-font);
  color: #fff;
  letter-spacing: 1px;
  border: none;
  border-radius: 100px;
  width: 100%;
  height: 55px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.step-buttons .btn-checkout {
  flex: 1;
  margin-top: 0;
  height: 55px;
  box-sizing: border-box;
  padding: 0;
  line-height: 55px;
  font-size: 16px;
}

.btn-checkout:hover {
  background-color: #145ac9;
}

.btn-checkout:disabled {
  background-color: #999;
  cursor: not-allowed;
}

/* Success/cancel toast */
.toast {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 30px;
  border-radius: 10px;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}

.toast.show {
  opacity: 1;
}

.toast-success {
  background-color: var(--green);
  color: var(--blue);
}

.toast-error {
  background-color: #ff4444;
  color: #fff;
}

/* ===== SERVICES DETAIL SECTION ===== */
.services-detail {
  background-color: var(--blue);
  padding-top: 60px;
  padding-bottom: 100px;
}

.services-detail .container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.services-label {
  font-family: var(--secondary-font);
  color: var(--green);
  font-size: 18px;
  font-weight: 500;
}

.services-detail h2 {
  font-family: var(--main-font);
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-size: 55px;
  font-weight: 600;
  line-height: 65px;
}

.services-grid {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  width: 350px;
  height: 300px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 25px;
}

.service-icon {
  background-color: var(--blue);
  border-radius: 100px;
  width: 65px;
  height: 65px;
  padding: 13px;
}

.service-card h3 {
  font-family: var(--main-font);
  color: #000;
  margin-top: 10px;
  font-size: 25px;
  font-weight: 600;
}

.service-card p {
  font-family: var(--secondary-font);
  color: #000;
  font-size: 16px;
  line-height: 25px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-content {
  width: 90vw;
  max-width: 1200px;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-text {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-right: 100px;
  display: flex;
}

.about-text h2 {
  font-family: var(--main-font);
  color: #000;
  font-size: 55px;
  font-weight: 600;
  line-height: 65px;
  margin-bottom: 10px;
}

.about-text p {
  font-family: var(--secondary-font);
  color: #000;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 25px;
}

.about-image {
  background-image: url('../images/Adobe-Express---file-1-min.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: flex-end;
  width: 50%;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.about-name {
  z-index: 9;
  font-family: var(--main-font);
  color: var(--green);
  font-size: 75px;
  font-weight: 600;
  line-height: 55px;
  position: absolute;
  inset: auto auto 30px 0%;
}

.about-name-shadow {
  z-index: 8;
  font-family: var(--main-font);
  color: var(--blue);
  font-size: 75px;
  font-weight: 600;
  line-height: 55px;
  position: absolute;
  inset: auto auto 30px 0%;
  margin-bottom: 5px;
  margin-left: -3px;
}

/* ===== HOW WE WORK ===== */
.process-section {
  background-color: var(--blue);
  border-radius: 20px;
  width: 90vw;
  max-width: 1200px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 35px 40px;
}

.process-label {
  font-family: var(--secondary-font);
  color: var(--green);
  font-size: 16px;
  font-weight: 500;
}

.process-section h2 {
  font-family: var(--main-font);
  color: #fff;
  margin-bottom: 20px;
  font-size: 55px;
  font-weight: 600;
  line-height: 55px;
}

.process-steps {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.process-step {
  width: 30%;
}

.step-number {
  font-family: var(--main-font);
  color: #214b8d;
  font-size: 65px;
  font-weight: 600;
  line-height: 65px;
}

.step-title {
  font-family: var(--main-font);
  color: #fff;
  text-align: right;
  margin-top: -23px;
  margin-bottom: 20px;
  padding-right: 10px;
  font-size: 45px;
  font-weight: 600;
  line-height: 55px;
}

.process-step p {
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 16px;
  line-height: 25px;
}

/* ===== PROUD TO SERVE ===== */
.serve-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.serve-content {
  width: 90vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.serve-image {
  background-image: url('../images/ChatGPT-Image-Nov-29-2025-09_30_42-PM-min.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  width: 50%;
}

.serve-text {
  width: 50%;
  padding-left: 60px;
  padding-right: 20px;
}

.serve-text h2 {
  font-family: var(--main-font);
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.serve-text p {
  font-family: var(--secondary-font);
  color: #000;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 25px;
}

.area-list .service-check span {
  font-size: 20px;
}

/* ===== FAQ ===== */
.faq-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

.faq-content {
  width: 90vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-header {
  width: 40%;
}

.faq-label {
  font-family: var(--secondary-font);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.faq-header h2 {
  font-family: var(--main-font);
  color: #000;
  font-weight: 600;
}

.faq-list {
  width: 60%;
  padding-top: 40px;
}

.faq-item {
  background-color: #f4f3f7;
  border-radius: 15px;
  flex-flow: column;
  width: 100%;
  margin-bottom: 10px;
  padding: 15px;
  cursor: pointer;
  display: block;
}

.faq-question {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.faq-question h3 {
  font-family: var(--secondary-font);
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.faq-toggle {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.faq-answer {
  font-family: var(--secondary-font);
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 10px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-toggle {
  transition: transform 0.3s ease;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.cta-content {
  justify-content: space-between;
  align-items: center;
  width: 90vw;
  max-width: 1200px;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cta-main {
  background-image: linear-gradient(90deg, var(--blue), #00388f00 70%), url('../images/CTA-2-min.png');
  background-position: 0 0, -100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 65%;
  height: 100%;
  padding: 0% 0% 0% 50px;
  display: flex;
}

.cta-label {
  font-family: var(--secondary-font);
  color: var(--green);
  font-size: 16px;
  font-weight: 500;
}

.cta-main h2 {
  font-family: var(--main-font);
  color: #fff;
  margin-bottom: 40px;
  font-size: 55px;
  font-weight: 600;
  line-height: 55px;
}

.cta-sidebar {
  background-color: var(--green);
  border-radius: 20px;
  width: 34%;
  height: 100%;
  padding: 25px;
}

.cta-avatar {
  background-color: var(--blue);
  background-image: url('../images/HEadsot.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 100px;
  width: 75px;
  height: 75px;
}

.cta-sidebar h3 {
  font-family: var(--main-font);
  color: var(--blue);
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
}

.btn-dark {
  background-color: var(--blue);
  font-family: var(--main-font);
  color: #fff;
  letter-spacing: 1px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 275px;
  height: 55px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--blue);
  width: 100vw;
  padding-bottom: 40px;
}

.footer-content {
  width: 90vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-top {
  margin-bottom: 0;
  padding-top: 60px;
  display: flex;
}

.footer-brand {
  width: 40%;
  padding-right: 40px;
}

.footer-logo {
  background-color: #fff;
  background-image: url('../images/RCH.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  display: block;
}

.footer-tagline {
  font-family: var(--secondary-font);
  color: #fff;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

.btn-footer {
  background-color: var(--green);
  font-family: var(--main-font);
  color: var(--blue);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 175px;
  height: 55px;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  border: none;
}

.footer-col {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 30%;
  display: flex;
}

.footer-col-title {
  font-family: var(--main-font);
  color: #fff;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  line-height: 35px;
}

.footer-col a {
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-social {
  width: 10%;
}

.footer-social-title {
  font-family: var(--main-font);
  color: #fff;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  line-height: 35px;
}

.social-icons {
  display: flex;
}

.social-link {
  background-color: #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
  margin-right: 10px;
  display: flex;
}

.social-link img {
  width: 80%;
}

.footer-hours {
  width: 325px;
  margin-bottom: 60px;
}

.hours-row {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  display: flex;
}

.hours-row span {
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

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

.footer-copyright {
  font-family: var(--secondary-font);
  color: #fff;
  font-weight: 500;
}

.footer-credit {
  display: flex;
  align-items: center;
}

.footer-credit span {
  font-family: var(--secondary-font);
  color: #fff;
  padding-right: 5px;
}

.footer-credit a {
  font-family: var(--secondary-font);
  color: #fff;
  font-weight: 400;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE — TABLET ===== */
@media screen and (max-width: 991px) {
  .hero-text {
    width: 400px;
  }

  .hero-text-mobile {
    display: none;
  }

  .logo-wrap, .header-cta-wrap {
    width: 50%;
  }

  .nav-links {
    display: none;
  }

  .package-card {
    width: 100%;
    margin-top: 20px;
  }

  .services-overview {
    width: 100%;
  }

  .section-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .pricing-content {
    flex-flow: column;
  }

  .serve-text {
    padding-left: 20px;
    padding-right: 0;
  }

  .about-text {
    padding-right: 20px;
  }

  .about-image {
    background-position: 50% 100%;
    background-size: cover;
  }

  .cta-content {
    flex-flow: column;
    height: auto;
  }

  .cta-main {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .cta-sidebar {
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: none;
  }

  .process-step {
    width: 100%;
    margin-bottom: 20px;
  }

  .step-title {
    margin-top: -58px;
  }

  .process-step p {
    font-size: 18px;
  }

  .process-steps {
    flex-flow: column;
  }

  .faq-section {
    padding-bottom: 60px;
  }

  .cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .services-grid {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .service-card {
    width: 325px;
    height: 275px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .service-card h3 {
    margin-bottom: 0;
  }

  .service-card p {
    font-size: 14px;
    line-height: 22px;
  }

  .services-detail .services-grid-wrap {
    width: 100%;
    display: flex;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media screen and (max-width: 479px) {
  .site-header {
    height: 65px;
  }

  .hero {
    height: 90vh;
    min-height: auto;
    max-height: none;
  }

  .hero-content {
    min-height: auto;
    max-height: none;
    height: 90vh;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 40px;
  }

  .hero-text {
    padding-right: 100px;
    font-size: 18px;
    line-height: 22px;
    display: none;
  }

  .hero-text-mobile {
    display: block;
  }

  .btn-primary {
    display: flex;
  }

  .logo-wrap {
    width: 25%;
  }

  .header-cta-wrap {
    width: 75%;
  }

  .btn-cta {
    height: 45px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
  }

  .footer-top {
    flex-flow: column;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-social {
    width: 100%;
  }

  .social-link {
    margin-right: 10px;
  }

  .package-card {
    padding: 15px;
  }

  .step-label {
    display: none;
  }

  .step-connector {
    width: 20px;
    margin: 0 4px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row .form-input {
    width: 100%;
  }

  .services-overview {
    padding-right: 0;
  }

  .section-title {
    font-size: 55px;
  }

  .pricing-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .services-overview h2 {
    display: none;
  }

  .check-icon {
    flex: none;
  }

  .services-overview p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .package-card h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .serve-content {
    flex-flow: column;
  }

  .serve-text {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .serve-image {
    width: 100%;
    height: 400px;
  }

  .footer-bottom {
    flex-flow: column;
  }

  .footer-credit {
    margin-top: 10px;
  }

  .about-content {
    flex-flow: column;
    height: auto;
  }

  .about-text {
    width: 100%;
    padding-right: 0;
  }

  .about-image {
    width: 100%;
    height: 450px;
  }

  .process-section {
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cta-main {
    background-position: 0 0, 50%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .cta-main h2 {
    margin-bottom: 140px;
    font-size: 35px;
    line-height: 38px;
  }

  .serve-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .process-section h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 28px;
  }

  .step-number {
    font-size: 75px;
  }

  .step-title {
    margin-top: -23px;
    margin-bottom: 0;
    font-size: 32px;
  }

  .faq-content {
    flex-flow: column;
  }

  .faq-header {
    width: 100%;
  }

  .faq-list {
    width: 100%;
    padding-top: 20px;
  }

  .faq-header h2 {
    margin-top: 0;
  }

  .faq-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .services-detail {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .services-detail h2 {
    font-size: 32px;
    line-height: 35px;
  }

  .services-grid {
    flex-flow: column;
    margin-bottom: 0;
  }

  .services-detail .services-grid-wrap {
    flex-flow: column-reverse;
  }

  .footer-hours {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .social-icons {
    display: flex;
  }
}
