/* Variables & Styling */

/* Fonts Import (Playfair Display for Titles, Lora / DM Sans for Body) */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=Playfair+Display:ital,wght@1,500;1,600&display=swap');
:root {
  --bg-cream: #FDFBF7;
  --text-main: #1B1B1D;
  --color-cordovan: #834A49;
  --color-border: #834A49;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background-color: #f8f6e3;
  color: var(--text-main);
}

/* Hero Section Layout */
.hero-section {
  padding: 50px 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  /*max-width: 1200px;*/
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding:0 50px;
}

/* Left Content Styles */
.hero-content {
  flex: 1;
  max-width: 600px;
}
.footer-bottom p{
    color:#1b1b1d;
}
.footer-privacy {
      color:#1b1b1d;
}
.hero-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #c49797;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-family:lore;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 2.8vw, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #1b1b1d;
  margin-bottom: 42px;
  font-family:lora;
}

/* Buttons Styles */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  background-color: var(--color-cordovan);
  color: #fff;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--color-border);
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: rgba(131, 74, 73, 0.05);
}

/* Footer Bottom Subtext */
.hero-footer-text {
  font-size: 0.85rem;
  color: #5A5A5C;
}

/* Right Image Styles */
.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Optional: if rounded edges needed */
  object-fit: cover;
}

/* Responsive Design for Tablets & Mobiles */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: left;
     padding:0 15px;
  }
  
  .hero-content {
    max-width: 100%;
  }

  .hero-image-wrapper {
    width: 100%;
    justify-content: center;
  }
  
  .hero-image {
    width: 100%;
    max-height: 450px;
  }
  
}

/* Quote Section Styles */
:root {
  --color-cordovan: #834A49;
  /*--color-cordovan: #C49797;*/
  --color-ivory: #F8F6E3;
}

.quote-section {
  background-color: var(--color-cordovan);
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/*.quote-container {*/
/*  max-width: 900px;*/
/*  width: 100%;*/
/*}*/

.quote-section blockquote {
  margin: 0;
  padding: 0;
}

.quote-section p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-ivory);
  margin: 0;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .quote-section {
    padding: 50px 16px;
  }
}



/* Shared Theme Variables (If already added in main style, you can skip root) */
:root {
  --bg-dark: #191617;          /* Dark charcoal/black section background */
  --color-cordovan: #834A49;   /* Brand accent / button / eyebrow color */
  --color-ivory: #F8F6E3;      /* Text / Heading color */
  --text-muted: #B8B5B6;       /* Subdued paragraph text color */
}

/* Section Layout */
.what-we-do-section {
  background-color: var(--bg-dark);
  padding: 100px 20px;
  color: var(--color-ivory);
  font-family: 'DM Sans', sans-serif;
}

.what-we-do-container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  display: flex;
  gap: 120px;
  padding:0 120px 0 75px;
  justify-content: space-between;
}

/* Left Column Styles */
.what-we-do-left {
  flex: 1;
  max-width: 570px;
}

.what-we-do-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #C49797;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family:lora;
}

.what-we-do-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.2rem);
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-ivory);
  margin-bottom: 14px;
}

.what-we-do-title em {
  font-style: italic;
  font-weight: 400;
  color: #C49797 /* Matches soft dusty pink/cordovan accent */
}

.what-we-do-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f8f6e3;
  margin-bottom: 15px;
  font-family:lora;
}

.what-we-do-image-wrapper {
  width: 100%;
  height: 380px; 
  border-radius: 6px;
  overflow: hidden; 
  margin-bottom: 15px;
}

.what-we-do-img {
  width: 100%;
  height: 100%;
     object-fit: cover;
    object-position: center top;
}

/* Button Styles */
.what-we-do-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-cordovan);
  color: #fff;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s ease;
  font-family:lora;
}

.what-we-do-btn:hover {
  opacity: 0.9;
}

.btn-arrow {
  font-size: 1.1rem;
}

/* Right Column Styles (Steps 01, 02, 03) */
.what-we-do-right {
  flex: 1;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-top: 40px;
  max-width:540px;
}

.what-we-do-step {
  display: flex;
  flex-direction: column;
}

.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #dfc6bd;
  line-height: 1;
  margin-bottom: 16px;
}



.step-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f8f6e3;
  margin: 0;
      font-family: lora;
}
.Bots-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1b1b1d;
  margin: 0;
      font-family: lora;
}

/* Responsive Design for Tablets and Mobiles */
@media (max-width: 992px) {
  .what-we-do-container {
    flex-direction: column;
    gap: 60px;
    padding:0 15px;
  }
  .what-we-do-section{
      padding: 30px 20px;
  }

  .what-we-do-left, 
  .what-we-do-right {
    max-width: 100%;
  }
}


/* Variables (Mundu sections lo unna ave variables ikkada use chestunnam) */
:root {
  --bg-cream: #FDFBF7;
  --text-main: #1B1B1D;
  --color-cordovan: #834A49;
  --card-bg: #F4EFE6; /* Cards ki unna soft cream/beige background */
  --text-muted: #5A5A5C;
}

/* Section Layout */
.pain-points-section {
  background-color: var(--bg-cream);
  padding: 100px 20px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-main);
}

.pain-points-container {
    padding:0 50px;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

/* Header Styles */
.pain-header {
  /*text-align: center;*/
  max-width: 800px;
  margin: 0 0 60px 0;
}

.pain-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-cordovan);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family:lora;
}

.pain-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 2.2rem);
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-main);
  margin: 0;
}

.pain-title em {
  /*font-style: italic;*/
  font-weight: 700;
  color: var(--color-cordovan);
}

/* Grid Layout (2 Columns) */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card Design with Left Border Accent */
.pain-card {
  background-color: var(--card-bg);
  padding: 35px 35px;
  border-radius: 8px;
  border-left: 4px solid var(--color-cordovan); /* Left side solid cordovan line */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  
  color:var(--color-cordovan);;
  margin: 0 0 14px 0;
  line-height: 1.4;
}

.pain-card p {
  font-size: 0.85rem;
  line-height: 1.6;
 font-family:lora;
  margin: 0;
  color: var(--text-main);
}

/* Responsive Design for Mobile / Tablets */
@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr; /* Mobile lo single column ga maripotundi */
    gap: 20px;
  }
  
  .pain-points-section {
    padding: 60px 16px;
  }
  .pain-points-container {
    padding:0 15px;
  }
}


/* Variables for this section */
:root {
  --bg-dark-green: #3e4437;      /* Dark olive green background */
  --card-bg-cream: #F8F4E8;      /* Light cream card background */
  --text-dark: #1B1B1D;          /* Main card text color */
  --text-muted: #5A5A5C;         /* Subtitle / description text */
  --color-cordovan-soft: #B87A79;/* Soft pinkish/cordovan accent color */
  --color-ivory: #F8F6E3;        /* Main heading color */
}

/* Section Layout */
.how-it-works-section {
  background-color: #3d4436;
  padding: 100px 20px;
  font-family: 'DM Sans', sans-serif;
  color: var(--color-ivory);
}

.how-it-works-container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding:0 50px;
}

/* Header Styles */
.how-header {
  text-align: start;
    /*text-align: center;*/
  max-width: 800px;
  margin: 0 0 60px 0;
  /*margin: 0 auto 60px auto;*/
}
.how-header h2{
        /*display: flex;*/
    align-items: center;
}
.how-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-cordovan-soft);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family:lora;
}

.how-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--color-ivory);
  margin: 14px 0 16px 0;
      display: flex;
}

.how-divider {
  width: 30px;
  height: 2px;
  background-color: var(--color-cordovan-soft);
 
     /*margin: 10px auto 10px auto;*/
     margin: 20px 5px 10px 10px;
}

.how-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-cordovan-soft);
  margin: 0;
}

/* 4 Columns Grid Layout */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Individual Card Styling */
.how-card {
  background-color: var(--card-bg-cream);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.how-card-img-wrapper {
 width: 100%;
  height: 316px; 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: fill; 
  object-position: center;
  padding:10px;
}

.how-card-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.how-card-content h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: #834a49;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.how-card-content p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #1b1b1d;
  margin: 0;
  font-family:lora;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablets lo 2x2 grid ga maruthundi */
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .how-grid {
    grid-template-columns: 1fr; /* Mobile lo single column ga maruthundi */
  }
  
  .how-it-works-section {
    padding: 60px 16px;
  }
  .how-it-works-container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding:0 15px;
}
}


/* Variables for this section */
:root {
  --bg-cream: #FDFBF7;
  --text-main: #1B1B1D;
  --color-cordovan: #834A49;
  --text-muted: #5A5A5C;
}

/* Section Layout */
.nobots-section {
  background-color: var(--bg-cream);
  padding: 100px 20px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-main);
}

.nobots-container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  display: flex;
  gap: 100px;
  padding:0 50px;
  justify-content: space-between;
}

/* Left Column Styles */
.nobots-left {
  flex: 1;
  max-width: 600px;
}

.nobots-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-cordovan);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family:lora;
}

.nobots-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.2rem);
  line-height: 1.15;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 24px;
}

.nobots-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-cordovan);
}

.nobots-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1b1b1d;
  margin-bottom: 35px;
     font-family: lora;
}

/* Image Wrapper with fixed height to match half-image requirement */
.nobots-image-wrapper {
  width: 100%;
  height: 350px;
  border-radius: 6px;
  overflow: hidden;
}

.nobots-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Right Column Styles (Steps 01, 02, 03) */
.nobots-right {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 10px;
}

.nobots-step {
  display: flex;
  flex-direction: column;
}



.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: #C49797;
  margin-bottom: 10px;
}

.step-title-1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: #191617;
  margin-bottom: 10px;
}


/* Responsive Design for Tablets and Mobiles */
@media (max-width: 992px) {
  .nobots-container {
    flex-direction: column;
    gap: 60px;
  }

  .nobots-left, 
  .nobots-right {
    max-width: 100%;
  }
  .nobots-container {
  padding:0 15px;
  }
}


/* Home Page FAQ Section Class Names */
/* Home Page FAQ Section Class Names */
.home-faq-section {
  background-color: #1b1b1d;
  padding: 100px 20px;
  font-family: 'DM Sans', sans-serif;
  color: #F8F6E3;
}

.home-faq-container {
    padding:0 50px;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

.home-faq-header {
  text-align: start;
  /*max-width: 800px;*/
  margin: 0 0 40px 0;
}

.home-faq-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #B87A79;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family:lora;
}

.home-faq-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #F8F6E3;
  margin: 0;
  line-height: 1.2;
}

.home-faq-title em {
  font-style: italic;
  font-weight: 700;
  color: #B87A79;
}

/* Grid Layout */
.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

}

/* FAQ Card with Vertical and Horizontal Lines */
.home-faq-card {
  display: flex;
  flex-direction: column;
  padding: 50px 0;
  
  
  /* Horizontal line (bottom) */
  border-bottom: 1px solid #2D2A2B; 
}

/* Odd items (1st, 3rd, 5th columns) ki right side lo vertical line kosam */
.home-faq-card:nth-child(odd) {
  padding-right: 60px;
  border-right: 1px solid #2D2A2B; /* Vertical line */
}

/* Even items (2nd, 4th, 6th columns) ki left padding neat alignment kosam */
.home-faq-card:nth-child(even) {
  padding-left: 20px;
}

.home-faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.home-faq-icon {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: 1px solid #B87A79;
  color: #B87A79;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  flex-shrink: 0;
}

.home-faq-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  color: #c49797;
  margin: 0;
  line-height: 1.3;
}

.home-faq-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: #f8f6e3;
  margin: 0;
  padding-left: 42px;
  font-family:lora;
}

/* Responsive Design for Tablets and Mobiles */
@media (max-width: 900px) {
  .home-faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  /* Mobile lo vertical lines disable chesi, only bottom lines unchali */
  .home-faq-card:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  
  .home-faq-card:nth-child(even) {
    padding-left: 0;
  }

  .home-faq-card {
    padding-bottom: 35px;
  }
  
  .home-faq-section {
    padding: 60px 16px;
  }
  .home-faq-container {
    padding: 0 15px;
  }
}



/* Home Page Promise Section Class Names */
.home-promise-section {
  background-color: #834A49;        /* Rich brown background */
  padding: 100px 20px;
  color: #F8F6E3;                   /* Cream text color */
}

.home-promise-container {
    padding:0 120px 0 75px;
  /*max-width: 1200px;*/
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 100px;
      justify-content: space-between;
}

/* Left Image Styles */
.home-promise-image-wrapper {
  flex: 1;
  max-width: 480px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-promise-img {
      width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    object-position: center top;
}

/* Right Content Styles */
.home-promise-content {
  flex: 1.2;
  max-width: 620px;
}

.home-promise-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #B87A79;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family:lora;
}

.home-promise-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #F8F6E3;
  margin: 0 0 20px 0;
  line-height: 1.15;
}

.home-promise-title em {
  font-style: italic;
  font-weight: 700;
  color:#B87A79;
}

.home-promise-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #f8f6e3;
  margin-bottom: 16px;
  font-family:lora;
}

.home-promise-subtext {
  font-size: 1rem;
  color: #F8F6E3;
  margin-bottom: 25px;
  font-weight: 500;
  font-family:lora;
}

/* Main Featured Social Card */
.home-social-card-main {
  background-color: #F8F4E8;        /* Soft cream card background */
  color: #1B1B1D;                   /* Dark text for card */
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.home-social-card-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  /*font-style: italic;*/
  font-weight: 600;
  color: #1B1B1D;
  margin: 0 0 12px 0;
  line-height: 1.35;
}

.home-social-card-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #5A5A5C;
  margin: 0 0 16px 0;
  font-family:lora;
}

.home-social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-social-tags span {
  background-color: #F0EAD6;
  color: #834A49;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.home-social-arrow {
  /*font-size: 110px;*/
  /*color: #1B1B1D;*/
  /*background: #EBE5D8;*/
  /*width: 45px;*/
  /*height: 45px;*/
  /*border-radius: 50%;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  /*flex-shrink: 0;*/
  padding-top:100px;
}
.home-social-arrow img{
    width:60px;
}

/* Bottom Small Social Links Row */
.home-social-links-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.home-social-pill {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0px;
  border-radius: 6px;
  text-decoration: none;
  color: #F8F6E3;
  display: flex;
  flex-direction: row;
  gap: 0px;
  transition: background-color 0.2s ease;
}
.home-social-pill img{
        display: inline;
    margin-right: 10px;
    margin-left: 10px;
    height: 28px;
    width: 28px;

}
.home-social-links-row-inner{
  display: flex;
  flex-direction: column;
  gap: 4px;   
}
.home-social-pill:hover {
  background-color: rgba(255, 255, 255, 0.15);
  
}

.home-social-pill strong {
  font-size: 0.8rem;
  font-weight: 700;
}

.home-social-pill span {
  font-size: 0.6rem;
  color: #E6DFD5;
  line-height: 1.5;
}

/* Responsive Design for Tablets and Mobiles */
@media (max-width: 992px) {
  .home-promise-container {
    flex-direction: column;
    gap: 40px;
    padding:0 15px;
  }

  .home-promise-image-wrapper, 
  .home-promise-content {
    max-width: 100%;
  }

  .home-promise-img {
    height: 400px;
  }
.quote-section p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);

  .home-social-links-row {
    grid-template-columns: 1fr;
  }

  .home-promise-section {
    padding: 60px 16px;
  }
  .home-social-arrow {
  font-size: 65px;
  }
  .home-social-links-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.home-promise-title {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}
}
/* Home Page CTA Section Class Names */
/* Home Page Footer CTA Section Class Names */
.home-footer-cta-section {
  background-color: #3d4436;        /* Dark olive green background */
  padding: 0px 20px 0px 20px;
  /*font-family: 'DM Sans', sans-serif;*/
  color: #F8F6E3;                   /* Cream text color */
  overflow: hidden;
}

.home-footer-cta-container {
    padding:0 50px;
  /*max-width: 1200px;*/
  
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-footer-cta-content {
  flex: 1;
  max-width: 600px;
  padding-top:60px;
}

.home-footer-cta-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #c49797;                   /* Soft cordovan accent for eyebrow */
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family:lora;
}

.home-footer-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 2.8rem);
  font-weight: 400;
  color: #F8F6E3;
  margin: 0 0 20px 0;
  line-height: 1.15;
}

.home-footer-cta-title em {
  font-style: italic;
  font-weight: 700;
  color: #c49797;                   /* Soft cordovan accent for italic text */
}

.home-footer-cta-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #f8f7e3;                   /* Muted grey text */
  margin-bottom: 30px;
  font-family:lora;
  
}

.home-footer-cta-action-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-footer-cta-btn {
  background-color: #834A49;        /* Rich cordovan brown button background */
  color: #F8F6E3;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.home-footer-cta-btn:hover {
  background-color: #9C5B5A;
}

.home-footer-cta-subtext {
  font-size: 0.82rem;
  color: #f8f7e3;
}

.home-footer-cta-image-wrapper {
  flex: 1;
  max-width: 580px;
  display: flex;
  justify-content: center;
}

.home-footer-cta-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Responsive Design for Tablets and Mobiles */
@media (min-width: 1920px) and (max-width: 2560px) {
.how-card-img-wrapper{
    max-height:500px;
  }
}
@media (max-width: 900px) {
  .home-footer-cta-container {
    flex-direction: column;
    text-align: left;
    gap: 30px;
    padding:0 15px;
  }

  .home-footer-cta-content, 
  .home-footer-cta-image-wrapper {
    max-width: 100%;
  }

  .home-footer-cta-action-group {
    align-items: flex-start;
  }
  
  .home-footer-cta-section {
    padding: 60px 16px 0 16px;
  }
  .how-title {
   
    font-size: 18px
        margin: 14px 0 16px 0;
    
}
.how-subtitle {
    font-size: 18px;}
.home-social-links-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.home-social-arrow {
    padding-top: 265px;
}
.home-social-arrow img {
    width: 30px;
}
}

/*why cher*/


/* Base Container Styles */
.why_cher {
  background-color: #f8f6e3; /* Warm cream background */
  padding: 20px 20px 0 20px;
  font-family: 'Lora', serif; /* Default Text Font */
  /*color: #333333;*/
  overflow: hidden;
}

.why_cher_container {
  /*max-width: 1300px;*/
  /*margin: 0 auto;*/
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding:0 80px;
}

/* Content Area */
.why_cher_content {
  flex: 1;
  padding-bottom: 90px;
  /*max-width: 650px;*/
}

/* Subtitle */
.why_cher_subtitle {
  display: block;
  font-family: 'Lora', serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C49797;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Header Styles */
.why_cher_heading {
  font-family: 'Playfair Display', serif; /* Header Font */
  font-size: clamp(2.5rem, 2.5vw, 3.5rem);
  line-height: 1.15;
  font-weight: 400;
  color: #1b1b1d;
  margin-bottom: 24px;
}

.why_cher_heading .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: #834a49; /* Maroon accent color */
}

/* Paragraph Body Text */
.why_cher_text {
  font-family: 'Lora', serif; /* Body Text Font */
  font-size: 16px;
  line-height: 1.6;
  color: #1b1b1d;
  margin-bottom: 36px;
  max-width: 540px;
}

/* Buttons Area */
.why_cher_buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Lora', serif;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Primary Button */
.btn_primary {
  background-color: #834a49;
  color: #F8f6e3;
  border: 1px solid #834a49;
}

.btn_primary:hover {
  background-color: #653436;
}

/* Secondary Button */
.btn_secondary {
  background-color: transparent;
  color: #333333;
  border: 1px solid #834a49;
}

.btn_secondary:hover {
  background-color: rgba(125, 66, 68, 0.05);
}

/* Image Area */
.why_cher_image_wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.why_cher_image {
  max-width: 80%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Design (Mobile Support) */
@media (max-width: 900px) {
  .why_cher_container {
    flex-direction: column;
    align-items: center;
  }

  .why_cher_content {
    padding-bottom: 20px;
  }

  .why_cher_heading {
    font-size: 28px;
  }

  .why_cher_image_wrapper {
    width: 100%;
    justify-content: center;
  }
  .why_cher_image {
  max-width: 100%;
  
}
}



/* Section Container Styling */
.comparison-section {
  background-color: #1b1b1d; /* Dark Background */
  padding: 60px 80px;
  font-family: 'Lora', serif;
  /*color: #e0dcd;*/
  display: flex;
  justify-content: space-between;
}

.comparison-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /*max-width: 1200px;*/
  width: 100%;
}

/* Individual Card Styling */
.comparison-card {
  background-color: #0000;
  border: 1px solid #332d30;
  border-radius: 12px;
  padding: 32px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover Effect */
.comparison-card:hover {
  transform: translateY(-5px);
}

/* Highlighted 4th Card (Cher Digital) */
.comparison-card.highlight-card {
  background-color: #322526;
  border: 1px solid #c49797; /* Soft dusty pink border */
}

/* Number (01, 02, 03, 04) */
.card-number {
  font-size: 14px;
  color: #c49797;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'lora';
}

/* Title (Playfair Display Cursive/Italic Style) */
.card-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: #c49797;
  margin: 0 0 12px 0;
}

/* Underline/Divider below Title */
.card-divider {
  width: 100%;
  height: 1px;
  background-color: #42383a;
  margin-bottom: 20px;
}

/* Tagline */
.card-tagline {
  font-size: 15px;
  color: #c49797;
  margin: 0 0 12px 0;
  line-height: 1.4;
  font-family: 'Lora', serif;
}

/* Description Text */
.card-description {
  font-size: 15px;
  color: #f8f6e3;
  line-height: 1.5;
  margin: 0;
  font-family: 'Lora', serif;
}

.card-description strong {
  font-weight: 600;
 font-family: 'Lora', serif;
}

/* ==========================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   ========================================== */

/* Tablets (Max 1024px) - 2 Columns */
@media (max-width: 1024px) {
  .comparison-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Screens (Max 600px) - 1 Column */
@media (max-width: 600px) {
    .why_cher_container {
  padding:0 10px;
    }
  .comparison-container {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    padding: 24px 20px;
  }

  .card-title {
    font-size: 22px;
  }
  .comparison-section {
  padding: 60px 30px;
  }
}

/*THE FULL BREAKDOWN*/

/* Main Section */
.breakdown-section {
  background-color: #f8f6e3; /* Light Cream Background */
  padding: 80px 80px;
  font-family: 'Lora', serif;
  color: #1b1b1d;
}

/*.breakdown-container {*/
/*  max-width: 1100px;*/
/*  margin: 0 auto;*/
/*}*/

/* Header Grid */
.breakdown-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: flex-end;
}

.eyebrow-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c49797;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
   font-family: 'Lora', serif;
}

.breakdown-main-heading {
    font-family: 'Playfair Display', serif;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0;
  color: #1b1b1d;
}

.breakdown-main-heading span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
      font-weight: 600;
    color: #834a49;
}

.breakdown-description-text {
  font-size: 14px;
  line-height: 1.6;
  color: #1b1b1d;
  margin: 0;
  font-family: 'Lora', serif;
}

/* Responsive Table Wrapper */
.table-wrapper {
  width: 100%;
  overflow-x: auto; /* Enables smooth scrolling on small screens */
  border-radius: 8px;
}

/* Table Design */
.comparison-table {
      border-right: 1px solid #b2ab9d;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
    border-bottom:1px solid #b2ab9d;
    background-color: #f8f6e3;
    border-left: 1px solid #b2ab9d;
}

/* Table Headers */
.comparison-table th {
     font-family: 'Inter', sans-serif;
  background-color: #1b1b1d; /* Dark Header */
  color: #f8f6e3;
  padding: 22px 20px;
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius:10px;
  border-right: 1px solid #b2ab9d;
  text-align:center;
}

/* Highlight Column Header (Cher Digital) */
.comparison-table th.highlight-header {
  background-color: #834a49; /* Deep Cordovan Accent */
  color: #ffffff;
  border-right: none;
}

/* Table Cells */
.comparison-table td {
  padding: 20px 22px;
  font-size: 14px;
 color: #1b1b1d;
 font-weight:600;
 font-family: 'Inter', sans-serif;
  border-bottom: 1px solid #b2aa9d;
  border-right: 1px solid #b2ab9d;
  vertical-align: middle;
}

.comparison-table td.feature-label {
  font-weight: 700;
  color: #1b1b1d;
  font-weight:blod;
      font-family: 'Inter', sans-serif;
}

/* Highlighted Column Background (Cher Digital Column) */
.comparison-table td.highlight-col {
  background-color: #ebdccf;
  font-weight: 600;
  color: #1b1b1d;
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Custom Status Dots (Empty, Half, Full) */
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.dot.empty {
  border: 1.5px solid #834a49;
  background-color: transparent;
}

.dot.half {
  border: 1.5px solid #834a49;
  background: linear-gradient(90deg, #834a49 50%, transparent 50%);
}

.dot.full {
  background-color: #834a49;
  border: 1.5px solid #834a49;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .breakdown-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .breakdown-main-heading {
    font-size: 28px;
  }
  .breakdown-section {
  padding: 50px 30px;

}
}

/*CHER'S AI SEARCH USP • THE THING NO ONE ELSE DOES*/

/* Main Section */
.ai-search-section {
  background-color: #3d4436; /* Olive Dark Green Background */
  padding: 125px 80px 0px 80px;
  font-family: 'Lora', serif;
  color: #f8f6e3;
  overflow: hidden;
}

.ai-search-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

/* Eyebrow / Subtitle */
.eyebrow-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c49797;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

/* Main Heading */
.ai-search-section-title {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 24px 0;
  color: #f8f6e3;
  font-family: 'Playfair Display', serif;
}

.ai-search-section-title span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #c49797; /* Dusty Pink Highlight */
}

/* Paragraph Text */
.ai-search-description-text {
  font-size: 16px;
  line-height: 1.6;
  color: #f8f6e3;
  margin-bottom: 20px;
   font-family: 'lora', serif;
  
}

/* Stats Section */
.stats-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
   margin-bottom: 75px;
  padding-top: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: #f8f6e3;
  margin-bottom: 8px;
  font-weight: 600;
}

.stat-label {
    font-family: 'lora', serif;
  font-size: 10px;
  color: #f8f6e3;
  max-width: 110px;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background-color: #4b5446;
}

/* Visual Column (Image + Tooltip Badges) */
.ai-search-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Feature Badge Base Style */
.feature-badge {
  position: absolute;
  background-color: #5d463e;/* Translucent Cordovan */
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 170px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-badge h4 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  margin: 6px 0 2px 0;
  color: #f8f6e3;
  font-weight: 600;
}

.feature-badge p {
  font-size: 11px;
  color: #f8f6e3;
  margin: 0;
  font-family: 'lora', serif;
}

/* Pill Tag on top of Badges */
.badge-pill {
    position:absolute;
    top:-10px;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: inline-block;
}

.badge-pill.exclusive {
    font-family: 'lora', serif;
  background-color: #e2a6a6;
  color: #1b1b1d;
}

.badge-pill.standard {
  background-color: #d1cdc4;
  color: #222;
}

/* Floating Positioning for Badges (Desktop) */
.badge-top-left { top: -11%; left: 34%; }
.badge-mid-left { top: 32%; left: 0%; }
.badge-bot-left { bottom: 15%; left: -5%; }
.badge-mid-right { top: 28%; right: 5%; }
.badge-bot-right { bottom: 20%; right: 0%; }

/* ==========================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================== */

@media (max-width: 1024px) {
  .ai-search-container {
    grid-template-columns: 1fr;
    
  }

  /* Reset Badges for Smaller Screens */
  .ai-search-visual {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-image {
    width: 100%;
  }
ai-search-section-title {
  font-size: 33px;
}
  /*.feature-badge {*/
  /*  position: static;*/
  /*  width: 100%;*/
  /*  margin-bottom: 8px;*/
  /*}*/
}

@media (max-width: 600px) {
  .Honest-section-title {
    font-size: 30px;
  }

  .stats-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
        align-items: center;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .ai-search-section {
  
  padding: 50px 30px 0px 30px;
}
.ai-search-visual {
        flex-wrap: wrap;
        gap: 10px;
    }
    .feature-badge {
    padding: 12px 7px;
    min-width: 115px;
}
.badge-top-left {
    top: -30%;
    left: 27%;
}
.badge-mid-right {
    top: 0%;
    right: -4%;
}
.feature-badge h4 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 10px;}
    
   .badge-pill {
    position: absolute;
    top: -10px;
    font-size: 6px;
    }
.badge-mid-left {
    top: 0%;
    left: -7%;
}
.badge-bot-right {
    bottom: 44%;
    right: -5%;
}
.badge-bot-left {
    bottom: 46%;
    left: -5%;
}
feature-badge p {
    font-size: 10px;
}
}



/*AI Search Engines*/


/* Main Section Styling */
.geo-process-section {
  background-color: #1b1b1b; /* Dark Background */
  padding: 80px 80px;
    font-family: 'Playfair Display', serif;
  color: #f8f8e3;
}

/*.geo-process-container {*/
/*  max-width: 1100px;*/
/*  margin: 0 auto;*/
/*}*/

/* Section Title */
.geo-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: #f8f8e3;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.geo-title span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #c49797; /* Dusty Pink Highlight */
  font-weight: 600;
}

/* Grid Layout (2 Columns Desktop) */
.geo-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 25px; /* Vertical & Horizontal spacing */
}

/* Card Container */
.geo-card {
  position: relative;
  background-color: #342526; /* Dark Cordovan Tint Card Background */
  border: 1px solid #c49797; /* Subtle Border */
  border-radius: 12px;
  padding: 36px 30px 28px 30px;
  box-sizing: border-box;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover Effect */
.geo-card:hover {
  transform: translateY(-4px);
  border-color: #e2a6a6;
}

/* Overlapping Number Badges */
.card-badge {
  position: absolute;
  top: -18px;
  left: 30px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 6px;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Dark Badge (01) */
.dark-badge {
  background-color: #3b2b2e;
  color: #e2a6a6;
  border: 1px solid #6b4d50;
}

/* Light Ivory Badges (02, 03, 04) */
.light-badge {
  background-color: #f8f6e3;
  color: #a37171;
  font-family: 'lora', serif;
}

/* Card Headings */
.card-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: #f8f8e3;
  margin: 10px 0 10px 0;
  line-height: 1.3;
}

/* Card Text */
.card-text {
    font-family: 'lora', serif;
  font-size: 14px;
  color: #f8f8e3;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================
   RESPONSIVE DESIGN (Mobile & Tablet)
   ========================================== */

/* Tablets & Mobile Screens (Max 800px) */
@media (max-width: 800px) {
  .geo-title {
    font-size: 25px;
    margin-bottom: 40px;
  }

  .geo-cards-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
    gap: 30px;
  }

  .geo-card {
    padding: 30px 24px 24px 24px;
  }

  .card-heading {
    font-size: 20px;
  }
}





/* Main Section */
.right-for-section {
  background-color: #f8f6e3; /* Cream Light Background */
  padding: 80px 80px;
  font-family: 'Playfair Display', serif;
  color:#1b1b1d;
}

/*.right-for-container {*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*}*/

/* Header Area */
.right-for-header {
  /*max-width: 750px;*/
  margin-bottom: 50px;
}

.Honest-section-title {
    font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
  color: #1b1b1d;
  margin: 0 0 16px 0;
}

.Honest-section-title span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #834a49; /* Deep Cordovan Accent */
  font-weight: 600;
}

.Honest-section-subtitle {
    width:500px;
  font-size: 15px;
  line-height: 1.6;
  color: #1b1b1d;
  margin: 0;
  font-family: 'lora', serif;
}

/* Cards Grid Layout */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Standard Card (Light Theme) */
.standard-card {
  background-color: #f8f6e3;
  border: 1px solid #e0d8cc;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.standard-card:hover {
  transform: translateY(-4px);
}

.standard-card .card-header {
  padding: 24px 20px 16px 20px;
  border-bottom: 1px solid #e0d8cc;
}

.standard-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1b1b1d;
  margin: 0 0 8px 0;
}

.standard-card .card-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #1b1b1d;
  margin: 0;
  line-height: 1.4;
}

.standard-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.standard-card .works-title {
    font-family: 'lora', serif;
  font-size: 14px;
  font-weight: 700;
  color: #1b1b1d;
  margin: 0 0 12px 0;
}

.standard-card .works-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.standard-card .works-list li {
     font-family: 'lora', serif;
  font-size: 14px;
  color: #1b1b1d;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.standard-card .works-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1b1b1d;
}

.standard-card .warning-note {
    font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: #1b1b1d;
  font-weight: 600;
  margin: auto 0 0 0;
}

/* Highlighted Card (Cher Digital - Dark Theme) */
.highlight-card {
  background-color: #834a49; /* Deep Rich Cordovan */
  border-radius: 14px;
  color: #f8f6e3;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(114, 62, 63, 0.3);
  transform: scale(1.03); /* Slightly larger pop-out effect */
  overflow: hidden;
  z-index: 2;
}

.highlight-card .card-header {
  padding: 28px 20px 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight-card .card-title {
  font-family: 'Playfair Display', serif;;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f8f6e3;
  margin: 0 0 8px 0;
}

.highlight-card .card-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #f8f6e3;
  margin: 0;
  line-height: 1.4;
}

.highlight-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.highlight-card .works-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 600;
  color: #f8f6e3;
  margin: 0 0 12px 0;
}

.highlight-card .works-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.highlight-card .works-list li {
     font-family: 'lora', serif;
  font-size: 14px;
  color: #f8f6e3;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.highlight-card .works-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e8a7a7;
}

.highlight-card .best-fit-tag {
    font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: #f8f6e3; /* Yellow Star Accent */
  font-weight: 700;
  margin: auto 0 0 0;
}

/* ==========================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================== */

/* Tablets (Max 1024px) - 2 Columns */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .highlight-card {
    transform: none; /* Reset scaling on smaller screens */
  }
}

/* Mobile Screens (Max 600px) - Single Column */
@media (max-width: 600px) {
  .Honest-section-title {
    font-size: 29px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
  .Honest-section-subtitle {
    width:100%;
  
}
.geo-process-section {
  padding: 80px 30px;
}
.right-for-section {
  padding: 80px 30px;
}
}
  
  
  
/*WE HEAR THESE A LOT*/

/* Main Wrapper */
.whycher-section {
  background-color: #3d4436; /* Dark olive green */
  padding: 80px 80px;
  font-family: 'lora', sans-serif;
  color: #f8f6e3;
  box-sizing: border-box;
}

/*.whycher-container {*/
/*  max-width: 1100px;*/
/*  margin: 0 auto;*/
/*}*/

/* Header Styles */
.whycher-header {
  margin-bottom: 50px;
}
.whycher-header-block{
    display:block;
}
.whycher-header-none{
    display:none;
}
.whycher-eyebrow {
    font-family: 'lora', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c49797; /* Dusty pink */
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.whycher-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  color: #f8f6e3;
}

.whycher-highlight {
  font-style: italic;
   font-family: 'Playfair Display', serif;
  color: #c49797;
  font-weight: 600;
}

/* Grid Layout */
.whycher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* FAQ Card */
.whycher-card {
  border: 1px solid #c49797; /* Subtle pink border */
  border-radius: 10px;
  padding: 30px;
  background-color: #4b5342;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.whycher-card:hover {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: #e2a6a6;
}

.whycher-question {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #f8f6e3;
  line-height: 1.3;
}

.whycher-answer {
    font-family: 'lora', serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #f8f6e3;
}

/* =======================================
   Responsive Design (Mobile & Tablet)
   ======================================= */
@media (max-width: 900px) {
  .whycher-grid {
    grid-template-columns: 1fr; /* Switch to single column on small screens */
  }
  
  .whycher-title {
    font-size: 32px;
  }
  
  .whycher-card {
    padding: 24px;
  }
  .whycher-section {
  padding: 80px 30px;
  }
  .whycher-header-block{
    display:none;
}
.whycher-header-none{
    display:block;
}
}

@media (max-width: 480px) {
  .whycher-title {
    font-size: 28px;
  }
  
  .whycher-question {
    font-size: 22px;
  }
}


/* Main Container */
.why_cher_faqs__section {
  background-color: #1b1b1d; /* Dark Charcoal / Near Black */
  padding: 0 80px 80px 80px;
  font-family: 'lora', sans-serif;
  color: #f8f6e3; /* Soft Dusty Pink */
  overflow: hidden;
}

.why_cher_faqs__container {
  /*max-width: 1200px;*/
  /*margin: 0 auto;*/
  display: grid;
  grid-template-columns: 555px 1fr;
  gap: 10px;
  align-items: center;
}

/* Image Column */
.why_cher_faqs__image-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.why_cher_faqs__phone-img {
  width: 100%;
  /*max-width: 280px;*/
  height: auto;
  display: block;
}

/* Right Content Column */
.why_cher_faqs__title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: #f8f6e3;
  margin: 50px 0 40px 0;
  line-height: 1.2;
}

.why_cher_faqs__title-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #c49797;
  font-weight: 600;
}

/* Accordion Wrapper */
.why_cher_faqs__accordion-wrapper {
  display: flex;
  flex-direction: column;
}

/* Individual Item */
.why_cher_faqs__item {
  border-bottom: 1px solid rgba(226, 166, 166, 0.25);
  transition: all 0.3s ease;
}

/* Trigger Button */
.why_cher_faqs__trigger {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.why_cher_faqs__question {
     font-family: 'lora', serif;
  font-size: 16px;
  font-weight: 500;
  color: #c49797;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.why_cher_faqs__trigger:hover .why_cher_faqs__question {
  color: #ffffff;
}

/* Plus/Minus Icon using CSS Pseudo Elements */
.why_cher_faqs__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.why_cher_faqs__icon::before,
.why_cher_faqs__icon::after {
  content: '';
  position: absolute;
  background-color: #c49797;
  transition: transform 0.3s ease;
}

/* Horizontal line (for + and -) */
.why_cher_faqs__icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 1.5px;
}

/* Vertical line (hidden when active) */
.why_cher_faqs__icon::after {
  top: 0;
  left: 6px;
  width: 1.5px;
  height: 14px;
}

/* Active State Styles */
.why_cher_faqs__item--active .why_cher_faqs__icon::after {
  transform: rotate(90deg);
  opacity: 0; /* Converts + into - */
}

/*.why_cher_faqs__panel {*/
/*  max-height: 0;*/
/*  overflow: hidden;*/
/*  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);*/
/*}*/
.why_cher_faqs__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-in-out;
}

.why_cher_faqs__item--active .why_cher_faqs__panel {
  max-height: 300px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/*.why_cher_faqs__answer {*/
/*     font-family: 'lora', serif;*/
/*  font-size: 12px;*/
/*  line-height: 1.6;*/
/*  color: #f8f6e3;*/
/*  margin: 0 0 22px 0;*/
/*}*/
.why_cher_faqs__answer {
  overflow: hidden;
  font-family: 'lora', serif;
  font-size: 12px;
  line-height: 1.6;
  color: #f8f6e3;
  margin: 0;
  padding-bottom: 22px; /* Smooth padding handling */
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

/* ==========================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================== */

@media (max-width: 900px) {
  .why_cher_faqs__container {
      display:block;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why_cher_faqs__image-col {
    order: 2; /* Move image below FAQs on mobile */
  }

  .why_cher_faqs__content-col {
    order: 1;
  }

  .why_cher_faqs__title {
    font-size: 32px;
  }

  .why_cher_faqs__question {
    font-size: 15px;
  }
  .why_cher_faqs__section {
  padding: 0 30px 80px 30px;
  }
}


.why_cher_faqs__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out; /* Smooth slide animation */
}

/*.why_cher_faqs__item--active .why_cher_faqs__panel {*/
  /*max-height: 500px; */
/*  transition: max-height 0.4s ease-in;*/
/*}*/
/* Active State Styles */
.why_cher_faqs__item--active .why_cher_faqs__panel {
  grid-template-rows: 1fr;
}

.why_cher_faqs__item--active .why_cher_faqs__answer {
  opacity: 1;
}
/* Plus/Minus Icon Animation Update */
.why_cher_faqs__icon::before,
.why_cher_faqs__icon::after {
  content: '';
  position: absolute;
  background-color: #c49797;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.why_cher_faqs__item--active .why_cher_faqs__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.why_cher_faqs__item--active .why_cher_faqs__icon::before {
  transform: rotate(180deg);
}

/* Main Section Wrapper */
.why_cher_cta__section {
  background-color: #834a49; /* Deep Cordovan Accent Background */
  padding: 80px 80px 0 80px; /* Bottom padding is 0 to align model image seamlessly */
 
  color: #f8f6e3;
  overflow: hidden;
}

.why_cher_cta__container {
  /*max-width: 1200px;*/
  /*margin: 0 auto;*/
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-end;
}

/* Left Content Column */
.why_cher_cta__content-col {
  padding-bottom: 80px; /* Offset space for text content */
}

.why_cher_cta__eyebrow {
      font-family: 'lora', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c49797; /* Soft Dusty Pink */
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.why_cher_cta__title {
    font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 400;
  color: #f8f6e3;
  margin: 0 0 24px 0;
}

.why_cher_cta__title-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #c49797;
  font-weight: 600;
}

.why_cher_cta__description {
    font-family: 'lora', serif;
  font-size: 15px;
  line-height: 1.6;
  color: #f8f6e3;
  max-width: 540px;
  margin: 0 0 36px 0;
}

/* Buttons Styling */
.why_cher_cta__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.why_cher_cta__btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
   font-family: 'lora', serif;
}

/* Primary Button (Ivory) */
.why_cher_cta__btn--primary {
     font-family: 'lora', serif;
  background-color: #f8f6e3;
  color: #1b1b1d;
}

.why_cher_cta__btn--primary:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.why_cher_cta__arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.why_cher_cta__btn--primary:hover .why_cher_cta__arrow {
  transform: translateX(4px);
}

/* Secondary Button (Bordered) */
.why_cher_cta__btn--secondary {
  background-color: transparent;
  color: #f8f6e3;
  border: 1px solid #f8f6e3
}

.why_cher_cta__btn--secondary:hover {
  background-color: #c49797;
  border-color: #c49797;
}

/* Sub-note Text */
.why_cher_cta__subnote {
    font-family: 'lora', serif;
  font-size: 12px;
  color: #f8f6e3;
  margin: 0;
}

/* Right Image Column */
.why_cher_cta__image-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.why_cher_cta__person-img {
  width: 100%;
  /*max-width: 440px;*/
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================== */

@media (max-width: 900px) {
  .why_cher_cta__section {
    padding-bottom: 0;
  }

  .why_cher_cta__container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why_cher_cta__content-col {
    padding-bottom: 20px;
  }

  .why_cher_cta__title {
    font-size: 28px;
  }

  .why_cher_cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why_cher_cta__btn {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .why_cher_cta__image-col {
    justify-content: center;
  }

  .why_cher_cta__person-img {
    max-width: 320px;
  }
  .why_cher_cta__section {
    background-color: #834a49;
    padding: 80px 30px 0 30px;
  }
} 






 