html {
  scroll-behavior: smooth;
}

#hero-section {
  /* Gap control variable - adjust this value to change spacing */
  --hero-gap: 2rem;
  
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
  z-index: 1;
}

#hero-section .cs-container {
  max-width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hero-gap);
}

#hero-section .cs-content {
  max-width: 100%;
}

#hero-section .cs-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

#hero-section .cs-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--bodyTextColor);
  font-family: var(--body-font);
}

#hero-section .cs-button-solid {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--heading-color);
  border-radius: 2rem;
  display: inline-block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  transition: background-color 0.3s;
  font-family: var(--body-font);
  margin-bottom: 1rem;
}

#hero-section .cs-button-solid:hover {
  background-color: #000;
}

#hero-section .cs-supporting-text {
  font-size: 1rem;
  color: var(--bodyTextColor);
  margin-top: 0.1rem;
}

#hero-section .cs-hero-image {
  width: 100%;
  max-width: 400px; /* Increased from 300px */
}

#hero-section .cs-hero-image img {
  width: 100%;
  height: auto;
  max-height: 350px; /* Increased from 250px */
  object-fit: contain;
}

/* Tablet Styles (768px and up) */
@media (min-width: 48rem) {
  #hero-section {
    --hero-gap: 2.5rem; /* Larger gap on tablets */
    padding: 4rem 1rem;
  }
  
  #hero-section .cs-container {
    max-width: 85%;
  }
  
  #hero-section .cs-content {
    max-width: 35rem;
  }
  
  #hero-section .cs-title {
    font-size: 2.75rem;
  }
  
  #hero-section .cs-text {
    font-size: 1.125rem;
  }
  
  #hero-section .cs-button-solid {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
  
  #hero-section .cs-hero-image {
    max-width: 500px; /* Increased from 400px */
  }
  
  #hero-section .cs-hero-image img {
    max-height: 400px; /* Increased from 300px */
  }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 64rem) {
  #hero-section {
    --hero-gap: 3rem; /* Even larger gap on desktop */
    text-align: left;
    padding: 5rem 1rem;
  }
  
  #hero-section .cs-container {
    max-width: 80%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  #hero-section .cs-content {
    width: 55%;
    max-width: 40rem;
    order: 1;
  }
  
  #hero-section .cs-title {
    font-size: 3.5rem;
    text-align: left;
  }
  
  #hero-section .cs-text {
    font-size: 1.25rem;
    text-align: left;
  }
  
  #hero-section .cs-hero-image {
    width: 70%;
    max-width: none;
  }
  
  #hero-section .cs-hero-image img {
    max-height: 500px; /* Increased from 400px */
  }
}

/* Large Desktop Styles (1200px and up) */
@media (min-width: 75rem) {
  #hero-section {
    --hero-gap: 4rem; /* Maximum gap on large screens */
  }
  
  #hero-section .cs-title {
    font-size: 4rem;
  }
  
  #hero-section .cs-text {
    font-size: 1.5rem;
  }
  
  #hero-section .cs-hero-image img {
    max-height: 600px; /* Increased from 500px */
  }
}

/* Extra Large Screens (1440px and up) */
@media (min-width: 90rem) {
  #hero-section .cs-container {
    max-width: 1200px;
  }
  
  #hero-section .cs-hero-image img {
    max-height: 700px; /* Maximum size for very large screens */
  }
}

/* Small Mobile Screens (up to 30rem/480px) */
@media (max-width: 30rem) {
  #hero-section {
    --hero-gap: 1.25rem;
    padding: 1.5rem 0.75rem;
  }
  
  #hero-section .cs-container {
    max-width: 100%;
  }
  
  #hero-section .cs-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  #hero-section .cs-text {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
  
  #hero-section .cs-button-solid {
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
    min-width: 180px;
  }
  
  #hero-section .cs-supporting-text {
    font-size: 0.75rem;
  }
  
  #hero-section .cs-hero-image {
    max-width: 350px; /* Increased from 240px */
  }
  
  #hero-section .cs-hero-image img {
    max-height: 210px; /* Increased from 180px */
  }
}

/* Mobile Enhancement Features */
@media (max-width: 47.9rem) {
  /* Touch-optimized buttons */
  #hero-section .cs-button-solid {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
  
  /* Improved text rendering on mobile */
  #hero-section .cs-title,
  #hero-section .cs-text,
  #hero-section .cs-supporting-text {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Mobile viewport optimization */
  #hero-section {
    min-height: auto;
    overflow-x: hidden;
  }
}



/* Navigation Styles */
.cs-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cs-navbar {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cs-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cs-logo-img {
  max-height: 50px;
  width: auto;
}

.cs-nav-links {
  display: flex;
}

.cs-nav-links ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-nav-links li {
  margin: 0 1rem;
}

.cs-nav-links a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
  padding: 0.5rem 0;
  font-family: var(--body-font);
}

.cs-nav-links a:hover {
  color: var(--primary);
}

.cs-nav-links a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}

.cs-nav-links a:hover:after {
  width: 100%;
}

.cs-nav-cta {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding: 0.5rem 1.25rem;
  background-color: var(--heading-color);
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s;
  white-space: nowrap;
  font-family: var(--body-font);
}

.cs-nav-cta:hover {
  background-color: #e05a2f;
}

.cs-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cs-hamburger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--heading-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Adjust main content spacing to account for the sticky header */
main {
  padding-top: 1rem;
}

/* Mobile navigation */
@media (max-width: 64rem) {
  .cs-nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    display: block;
    visibility: hidden;
    opacity: 0;
  }
  
  .cs-nav-links.active {
    height: auto;
    visibility: visible;
    opacity: 1;
  }
  
  .cs-nav-links ul {
    flex-direction: column;
    padding: 0 1rem;
  }
  
  .cs-nav-links li {
    margin: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .cs-nav-links li:last-child {
    border-bottom: none;
  }

  .cs-nav-cta {
    display: none;
  }
  
  .cs-hamburger {
    display: flex;
  }
  
  /* Show active state for hamburger menu */
  .cs-hamburger[aria-expanded="true"] .cs-hamburger-line:first-child {
    transform: translateY(9px) rotate(45deg);
  }
  
  .cs-hamburger[aria-expanded="true"] .cs-hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .cs-hamburger[aria-expanded="true"] .cs-hamburger-line:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.cards-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 90%;
    max-height: 30%;
}

.card {
    flex: 1;
    max-width: 300px;
    min-height: 300px;
    background: white;
    border-radius: 50%;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.card p {
    font-size: 0.95rem;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-family: var(--body-font);
}

/* Update responsive styles for the circular cards */
@media (max-width: 1992px) {
    .cards-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .card { 
        flex: 0 0 250px;
        margin: 10px;
    }
}

@media (max-width: 576px) {
    .card {
        height: 350px;
        width: auto;
        padding: 20px;
        margin: 8 auto;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .card p {
        font-size: 1rem;
        -webkit-line-clamp: 4;
    }
}

/* About Me Section */
.about-me {
    padding: 60px 20px;
    background-color: var(--background-color);
}

.about-me-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-me-image {
    flex: 1;
    max-width: 400px;
}

.about-me-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-me-image img:hover {
    transform: scale(1.02);
}

.about-me-text {
    flex: 2;
}

.about-me-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.about-me-text p {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: var(--body-font);
}

/* Responsive adjustments for About Me section */
@media (max-width: 992px) {
    .about-me-content {
        padding: 20px;
        gap: 30px;
    }
    
    .about-me-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-me-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-me-image {
        margin-top: 25px;
        max-width: 300px;
        order: 2;
    }
    
    .about-me-text {
        order: 1;
    }

    .about-me-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-me {
        padding: 40px 15px;
    }
    
    .about-me-content {
        padding: 10px;
    }
    
    .about-me-image {
        max-width: 250px;
    }
    
    .about-me-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .about-me-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 50px;
}

.how-it-works .container {
    max-width: 1200px;
    margin:  auto;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--heading-color);
    text-align: center;
    font-family: var(--heading-font);
}

.how-it-works-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.how-it-works-text {
    max-width: 1000px;
    text-align: left;
}

.how-it-works-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #333;
    font-family: var(--body-font);
}

.how-it-works-svg {
    width: 90%;
    max-width: 7000px;
    margin: 20px auto;
}

.how-it-works-svg svg {
    width: 100%;
    height: auto;
    display: flex; 
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .how-it-works {
        padding: 60px 20px;
    }
    
    .how-it-works h2 {
        font-size: 2.2rem;
    }
    
    .how-it-works-text p {
        font-size: 1.1rem;
    }
    
    .how-it-works-svg {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .how-it-works {
        padding: 40px 15px;
    }
    
    .how-it-works h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .how-it-works-text {
        text-align: center;
    }
    
    .how-it-works-text p {
        font-size: 1rem;
    }
    
    .how-it-works-svg {
        margin-top: 15px;
    }
}

.change-in-action {
  padding: 80px 0;
  position: relative;
}

.change-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 60px;
  font-family: var(--heading-font);
}

.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-text {
  flex: 1;
  text-align: center;
}

.quote {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  padding: 0 30px;
  font-family: var(--body-font);
  width: 50rem;
}

.quote::before {
  content: '"';
  font-size: 4rem;
  color: #FF6A00;
  position: absolute;
  top: -20px;
  left: 0;
  font-family: Georgia, serif;
}

.quote::after {
  content: '"';
  font-size: 4rem;
  color: #FF6A00;
  position: absolute;
  bottom: -40px;
  right: 0;
  font-family: Georgia, serif;
}

.author {
  font-size: 1.6rem;
  font-weight: 600;
  color: #666;
  font-style: normal;
  font-family: var(--body-font);
}

/* Tablet Styles */
@media (max-width: 768px) {
  .change-in-action {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  

  .quote {
    font-size: 1.3rem;
    padding: 0 20px;
  }
  
  .quote::before,
  .quote::after {
    font-size: 3rem;
  }
  
  .quote::before {
    top: -15px;
    left: -5px;
  }
  
  .quote::after {
    bottom: -30px;
    right: -5px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .change-in-action {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  
  .quote {
    font-size: 1.1rem;
    padding: 0 15px;
    width: 20rem;
  }
  
  .quote::before,
  .quote::after {
    font-size: 2.5rem;
  }
  
  .author {
    font-size: 1.1rem;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .testimonial-image {
    flex: 0 0 300px;
    height: 200px;
  }
  
  .quote {
    font-size: 1.7rem;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
}




#carousel-section {
  --carousel-gap: 2rem;
  padding: 4rem 1rem;
  position: relative;
}

#carousel-section .cs-container {
  max-width: 90%;
  margin: 0 auto;
}

.cs-carousel-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.cs-carousel-container {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Progress Bar Styles */
.cs-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}

.cs-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--heading-color), #007bff);
  transition: width 0.1s linear;
  border-radius: inherit;
  position: relative;
}

.cs-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
  border-radius: 0 2px 2px 0;
}

.cs-progress-fill.paused {
  animation-play-state: paused;
}

.cs-progress-fill.reset {
  width: 0%;
  transition: width 0.2s ease-out;
}

.cs-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.cs-carousel-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.cs-carousel-slide.active {
  opacity: 1;
}

.cs-slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: white;
  min-height: 400px;
}

.cs-slide-text {
  text-align: center;
  max-width: 100%;
  margin-bottom: 2rem;
}

.cs-slide-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
  line-height: 1.3;
}

.cs-slide-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bodyTextColor);
  margin-bottom: 1.5rem;
}

.cs-slide-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--heading-color);
  color: white;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cs-slide-button:hover {
  background-color: #000;
}

.cs-slide-image {
  width: 100%;
  max-width: 300px;
}

.cs-slide-image img {
  width: 100%;
  height: 1000rem;
  max-height: 250px;
  object-fit: contain;
  border-radius: 1rem;
}

/* Navigation Arrows */
.cs-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(205, 100, 90, 0.3);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cs-carousel-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.cs-carousel-prev {
  left: 1rem;
}

.cs-carousel-next {
  right: 1rem;
}

.cs-carousel-arrow svg {
  color: var(--heading-color);
}

/* Dots Indicator */
.cs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.cs-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cs-dot.active {
  background-color: var(--heading-color);
}

.cs-dot:hover {
  background-color: var(--heading-color);
}

/* Tablet Styles (768px and up) */
@media (min-width: 48rem) {
  #carousel-section {
    --carousel-gap: 3rem;
    padding: 5rem 1rem;
  }
  
  #carousel-section .cs-container {
    max-width: 85%;
  }
  
  .cs-progress-bar {
    height: 5px;
  }
  
  .cs-slide-content {
    padding: 3rem;
    min-height: 450px;
  }
  
  .cs-slide-title {
    font-size: 2.25rem;
  }
  
  .cs-slide-description {
    font-size: 1.125rem;
  }
  
  .cs-slide-image {
    max-width: 400px;
  }
  
  .cs-slide-image img {
    max-height: 300px;
  }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 64rem) {
  #carousel-section {
    --carousel-gap: 4rem;
    padding: 6rem 1rem;
  }
  
  #carousel-section .cs-container {
    max-width: 80%;
  }
  
  .cs-progress-bar {
    height: 6px;
  }
  
  .cs-progress-fill::after {
    width: 15px;
  }
  
  .cs-slide-content {
    flex-direction: row;
    align-items: center;
    padding: 4rem;
    min-height: 500px;
    gap: var(--carousel-gap);
  }
  
  .cs-slide-text {
    text-align: left;
    max-width: 50%;
    margin-bottom: 0;
  }
  
  .cs-slide-title {
    font-size: 2.5rem;
  }
  
  .cs-slide-description {
    font-size: 1.25rem;
  }
  
  .cs-slide-image {
    max-width: 500px;
    flex: 1;
  }
  
  .cs-slide-image img {
    max-height: 400px;
  }
  
  .cs-carousel-prev {
    left: 2rem;
  }
  
  .cs-carousel-next {
    right: 2rem;
  }
}

/* Large Desktop Styles (1200px and up) */
@media (min-width: 75rem) {
  #carousel-section .cs-container {
    max-width: 1200px;
  }
  
  .cs-slide-title {
    font-size: 3rem;
  }
  
  .cs-slide-description {
    font-size: 1.375rem;
  }
  
  .cs-slide-image img {
    max-height: 450px;
  }
}

/* Progress bar hover effects */
.cs-carousel-wrapper:hover .cs-progress-fill {
  animation-play-state: paused;
}


/* Testimonial Styles */


    .testimonial-section {
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .testimonial-heading {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 40px;
    }
    .testimonial {
      max-width: 700px;
      text-align: center;
    }

    .testimonial-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .testimonial-quote {
      font-size: 1.3rem;
      font-style: italic;
      color: #333;
      margin: 0 0 10px;
    }

    .testimonial-name {
      font-size: 1.2rem;
      font-weight: bold;
      color: #555;
    }



/* Enquiry Styles */
.enquiry-heading{
  font-size:2.5rem;
  font-weight:bold;
  margin:0 0 40px;   /* keep the bottom space */
  text-align:center;  /* <-- this is what actually centers it */
}


/* ========== Footer styles ========== */

.site-footer{
  background:#ffffff;     /* footer background colour  */
  color:#000000;             /* default text colour       */
  padding:1.5rem 2rem;
}

/* main flex container */
.footer-inner{
  max-width:1200px;       /* centre and limit width    */
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;         /* lets items wrap on narrow screens */
  padding-bottom: 2rem;
  padding-top: 2rem;
}

/* ---------- CTA button ---------- */
.btn-cta{
  display:inline-block;
  background:#743000;
  color:#ffffff;
  padding:.75rem 1.6rem;
  border-radius:25px;
  font-weight:600;
  text-decoration:none;
  transition:background .25s;
}

.btn-cta:hover,
.btn-cta:focus{
  background:#e35d00;
}

/* ---------- Contact area ---------- */
.footer-contact{
  display:flex;
  align-items:center;
  gap:.5rem;
  flex-wrap:wrap;         /* keeps links on one line if possible */
  font-size: 1.4rem;
}

/* label in front of the links */
.contact-label{
  font-weight:500;
  margin-right:.5rem;
  white-space:nowrap;     /* keep on one line on wide screens   */
}

.footer-contact a{
  color:#000000;
  text-decoration:none;
  transition:color .25s;
}

.footer-contact a:hover,
.footer-contact a:focus{
  color:#ff6a00;
}

.separator{color:#888;}

/* ========== Responsiveness ========== */
@media (max-width:600px){
  .footer-inner{
    flex-direction:column;   /* stack items vertically      */
    text-align:center;
  }

  .footer-contact{
    justify-content:center;
    font-size:1rem;
  }

  .contact-label{
    margin:0 0 .25rem;       /* put label above the links   */
    white-space:normal;
  }

  .separator{display:none;}  /* hide vertical bar when stacked */
}