/* Global Styles */
/* ------------------------------------------
   Updated Color Variables for Dakotah Gray Law
--------------------------------------------- */
:root {
  --color-cascades: #273E3E;      /* New Primary */
  --color-rambling-rose: #995D62; /* New Secondary */
  --color-urbane-bronze: #54504A; /* Accent */
  --color-evergreen-fog: #95978A; /* Accent */
  --color-gold: #C7AC72;          /* Gold from Logo */
  --text-light: #FFFFFF;
  --text-dark: #212529;
}

/* Global Styles */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background-color: #F9F9F9;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: #0F52BA; /* Sapphire Blue */
    margin-bottom: 10px;
}

/* Heading Sizes */
h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 400;
}

h6 {
    font-size: 1rem;
    font-weight: 300;
}

/* Links */
a {
    color: var(--color-cascades);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--color-gold);
}

.grecaptcha-badge { visibility: hidden; }

/* Buttons */
.btn-primary {
    background-color: var(--color-rambling-rose); /* Dark pink/mauve */
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: var(--color-gold); /* Gold on hover */
    color: var(--text-light);
}

.btn-danger {
    background-color: var(--color-cascades); /* Blue-green (Cascades) */
    color: var(--text-light);
    border: none;
}

.btn-danger:hover {
    background-color: var(--color-urbane-bronze); /* Urbane Bronze hover */
}


/* Container Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ---------------------------------------------------<NavBar>---------------------------------------------------------- */

/* ------------------------------------------
   Top Bar Update (Fixed Position & New Color)
--------------------------------------------- */
.top-bar {
  background-color: white; /* Different from navbar */
  color: var(--color-gold);
  position: fixed;
  top: 0;
  width: 100%;
  height: 45px;
  z-index: 1050;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.top-bar-text {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  color: var(--color-gold);
}

/* Adjust navbar position to account for fixed top bar */
.navbar {
  background-color: var(--color-cascades);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin-top: 45px; /* Adjusted to avoid overlap with fixed top bar */
}

/* ------------------------------------------
   Main Navbar Styling
--------------------------------------------- */
.navbar-nav .nav-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--color-rambling-rose);
}

.navbar-nav .nav-link.active {
  color: var(--color-gold);
  font-weight: 700;
}

/* Dropdown Menu Styling - Different from Navbar */
.dropdown-menu {
  background-color: var(--color-evergreen-fog); /* Lighter than navbar */
  border: 1px solid var(--color-urbane-bronze);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
  color: var(--text-dark);
}

.dropdown-item:hover, 
.dropdown-item:focus {
  background-color: var(--color-rambling-rose);
  color: var(--text-light);
}

/* Toggler Icon Adjustment */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Logo Padding */
.logo {
  padding: 0 20px 0 0;
}

.navbar .container {
  padding: 0!important;
}

@media (max-width: 768px) {
  .top-bar {
    justify-content: center;
    padding-top: 5px;
    height: 55px;
  }

  .logo {
    /*display: none;*/
  }

  .navbar-brand {
    padding-left: 15px;
    color: var(--text-light);
  }

  .navbar-toggler {
    margin-right: 15px;
  }

  .navbar-collapse {
    padding: 10px 15px;
  }

  .navbar-nav .nav-item {
    padding: 5px 0;
  }
}

/* ---------------------------------------------------</NavBar>---------------------------------------------------------- */

/* ---------------------------------------------------<Hero>---------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 3rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Background Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darker overlay for contrast */
    z-index: 2;
}

/* Ensure content stays above overlay */
.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Hero Image (Positioning Adjusted) */
.hero-side-img {
    width: auto;
    height: 100%;
    /*max-width: 40%;*/
    object-fit: contain; /* Prevents image distortion */
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Hero Headings */
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-gold);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-evergreen-fog);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Removes Card Styling - Makes the Form Float */
.hero-form {
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

/* Form Fields */
.hero-form .form-control {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid var(--color-gold);
}

.hero-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Form Labels */
.hero-form .form-label {
    font-weight: 600;
    color: white;
}

/* Submit Button */
.hero-form .btn-primary {
    background-color: var(--color-rambling-rose); /* New Secondary */
    border: none;
    transition: background 0.3s ease-in-out;
}

.hero-form .btn-primary:hover {
    background-color: var(--color-gold); /* Gold Hover Effect */
    color: var(--text-dark);
    font-weight: 500;
}

/* ---- Mobile Adjustments ---- */
@media (max-width: 992px) {
    .hero-section {
        text-align: center;
        padding: 60px 20px;
        flex-direction: column-reverse; /* 👈 Moves the image above the form */
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section h4 {
        font-size: 1.2rem;
    }

    /* Adjust Image for Mobile */
    .hero-side-img {
        max-width: 100%; /* Full width for mobile */
        height: auto;
        position: static; /* Removes absolute positioning */
        margin-bottom: 20px; /* Adds spacing */
    }
}
/* ---------------------------------------------------</Hero>---------------------------------------------------------- */

/* ---------------------------------------------------<Hero2>---------------------------------------------------------- */
.hero2-section {
    position: relative;
    width: 100%;
    min-height: 300px; /* Adjust as needed */
    background-color: black; /* Solid Black Background */
    display: flex;
    align-items: center;
}

/* Image on Left - Anchored to Bottom */
.hero2-section .hero-side-img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Hero Content */
.hero2-section .hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero2-section .hero-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* CTA Buttons */
.hero2-section .hero-buttons .btn {
    font-size: 1.1rem;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero2-section {
        text-align: center;
        min-height: 250px; /* Slightly smaller for mobile */
    }

   .hero2-section .hero-side-img {
        position: static;
        max-width: 80%;
        display: block;
        margin: 0 auto;
    }

    .hero2-section .hero-title {
        font-size: 2rem;
    }

    .hero2-section .hero-subheading {
        font-size: 1.1rem;
    }

    .hero2-section .hero-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .hero2-section .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }
}
/* ---------------------------------------------------</Hero2>---------------------------------------------------------- */




/* ---------------------------------------------------<One Liner Section>---------------------------------------------------------- */
.one-liner-section {
    padding: 60px 0;
    /*background-color: var(--color-evergreen-fog);*/
    background-color: white;
}

/* Text Content */
.one-liner-section .heading {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.one-liner-section .subheading {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-rambling-rose);
    margin-bottom: 15px;
}

.one-liner-section .description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Wrapped Layout (for long bios or articles) */
.one-liner-section.wrapped .description {
    overflow: hidden;
}

.one-liner-section.wrapped .description img {
    float: right;
    margin: 0 0 15px 20px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .one-liner-section.wrapped .description img {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
    }
}

/* Image Styling */
.one-liner-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.one-liner-section .col-12.text-center {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Buttons */
.one-liner-section .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.one-liner-section .col-12.text-center .cta-buttons {
    justify-content: center;
}

.one-liner-section .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 700;
}

/* Darkened Background for Form */
.form-wrapper {
    background: rgba(84, 80, 74, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    max-width: 100%;
}

.form-wrapper form {
    color: #fff;
}

.form-wrapper input,
.form-wrapper textarea {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 8px;
    width: 100%;
}

.form-wrapper input::placeholder,
.form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-wrapper button {
    background: #50C878;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s ease-in-out;
}

.form-wrapper button:hover {
    background: #3a8b5f;
}

@media (max-width: 768px) {
    .one-liner-section .cta-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding-bottom: 15px;
    }

    .one-liner-section .btn {
        text-align: center;
    }

    .one-liner-section .heading {
        font-size: 1.8rem;
    }

    .one-liner-section .subheading {
        font-size: 1.3rem;
    }
}
/* ---------------------------------------------------</One Liner Section>---------------------------------------------------------- */

/* ---------------------------------------------------<Promo Bar>---------------------------------------------------------- */
.promo-bar {
    position: relative;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(84, 80, 74, 0.85)), 
                url('../img/1920/abstract-texture.webp'); /* Background Image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 50px 0;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Promo Content */
.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

/* Text Container */
.promo-text-container {
    max-width: 800px;
    padding: 20px;
}

/* Heading */
.promo-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-gold);
}

/* Paragraph */
.promo-paragraph {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-evergreen-fog);
    margin-bottom: 20px;
}

/* Call Now Button */
.promo-btn {
    background-color: var(--color-rambling-rose);
    color: var(--text-light);
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Hover Effect */
.promo-btn:hover {
    background-color: var(--color-gold);
    color: var(--text-dark);
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .promo-bar {
        padding: 30px 20px;
    }

    .promo-text-container {
        text-align: center;
        padding: 15px;
    }

    .promo-heading {
        font-size: 1.8rem;
    }

    .promo-paragraph {
        font-size: 1rem;
    }

    .promo-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
/* ---------------------------------------------------</Promo Bar>---------------------------------------------------------- */









/* ---------------------------------------------------<Services Section>---------------------------------------------------------- */
.services-section {
  position: relative;
  padding: 60px 0;
  background: url('../img/1920/att-005.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-rambling-rose), #fff);
  opacity: 0.9;
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-section .section-heading {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.services-section .section-paragraph {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  flex: 1 1 calc(33.3333% - 20px);
  max-width: calc(33.3333% - 20px);
  min-height: 220px;
  min-width: 280px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: white;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-gold);
  transition: color 0.3s ease-in-out;
}

.service-card:hover .service-icon {
  color: var(--color-rambling-rose);
}

.service-card svg.service-icon {
  width: 48px;
  height: 48px;
  fill: var(--color-gold);
  transition: fill 0.3s ease-in-out;
}

.service-card:hover svg.service-icon {
  fill: var(--color-rambling-rose);
}

.service-icon-svg {
  width: 48px;
  height: 48px;
  display: block;
  margin: 10px auto 35px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(26%) saturate(383%) hue-rotate(8deg) brightness(91%) contrast(86%);
  transition: filter 0.3s ease-in-out;
}


.service-card:hover .service-icon-svg {
  filter: brightness(0) saturate(100%) invert(33%) sepia(12%) saturate(1763%) hue-rotate(308deg) brightness(96%) contrast(94%);
}


.service-card .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-rambling-rose);
  margin-top: 15px;
}

.service-card .card-text {
  font-size: 1rem;
  color: var(--text-dark);
}

.services-section .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.services-section .btn-primary {
  background-color: var(--color-rambling-rose);
  color: var(--text-light);
}

.services-section .btn-primary:hover {
  background-color: var(--color-gold);
  color: var(--text-dark);
}

.services-section .btn-danger {
  background-color: var(--color-cascades);
  color: var(--text-light);
}

.services-section .btn-danger:hover {
  background-color: var(--color-urbane-bronze);
}

@media (max-width: 992px) {
  .service-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .service-card:nth-last-child(1):nth-child(3n+1),
  .service-card:nth-last-child(2):nth-child(3n+1) {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .services-section .cta-buttons {
    flex-direction: row;
  }
}
/* ---------------------------------------------------</Services Section>---------------------------------------------------------- */






/* ---------------------------------------------------<Why Choose Us Section>---------------------------------------------------------- */
.why-choose-us-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, var(--color-cascades), var(--color-urbane-bronze));
    color: white;
    text-align: center;
}

.why-choose-us-section .section-heading {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

/* Why Card Styling */
.why-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    flex: 1;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Adds subtle depth */
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px; /* Ensures uniform height */
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow on hover */
}

/* Bootstrap Icons */
.why-icon {
    font-size: 2.5rem;
    color: var(--color-gold); /* Updated to gold */
    margin-bottom: 10px;
}
.why-card:hover .why-icon {
    color: var(--color-rambling-rose); /* Add hover effect */
}
.why-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

/* Centers the second row when fewer than 4 cards */
@media (min-width: 992px) {
    .why-choose-us-section .row:last-child {
        justify-content: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why-choose-us-section .section-heading {
        font-size: 2rem;
    }

    .why-card {
        padding: 15px;
    }

    .why-icon {
        font-size: 1.8rem; /* Slightly smaller for better spacing */
    }

    .why-title {
        font-size: 1.1rem;
    }

    /* Center CTA button on small screens */
    .why-choose-us-section .text-center.mt-4 {
        display: flex;
        justify-content: center;
    }

    .why-choose-us-section .btn {
        width: 100%; /* Ensures full-width CTA for better mobile UX */
        max-width: 280px; /* Prevents it from being too wide */
    }
}
/* ---------------------------------------------------</Why Choose Us Section>---------------------------------------------------------- */




/* ---------------------------------------------------<Promises Section>---------------------------------------------------------- */
.promise-section {
  padding: 60px 0;
  background-color: #fff;
}

.promise-section .heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

.promise-section .subheading {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--color-rambling-rose);
}

.promise-section .description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--color-cascades);
}

.promise-section .cdl-subheading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--color-urbane-bronze);
}

.promise-section .cdl-list {
  padding-left: 0;
  list-style: none;
}

.promise-section .cdl-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.promise-section .cdl-list li i {
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 1.25rem;
  color: var(--color-rambling-rose);
}

.promise-section .cdl-list li strong {
  font-weight: 600;
  margin-right: 0.3rem;
  color: var(--color-rambling-rose);
}

.promise-section .cdl-closing {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-cascades);
}

.promise-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* ---------------------------------------------------</Promises Section>---------------------------------------------------------- */



/* ---------------------------------------------------<Reviews Section>---------------------------------------------------------- */

.reviews-section {
  padding: 50px 0;
  background-color: var(--color-cascades);
}

.reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.reviews-section .section-header {
  margin-bottom: 30px;
}

.reviews-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.reviews-section .section-header p {
  font-size: 1.1rem;
  color: var(--color-evergreen-fog);
}

.reviews-section .carousel {
  margin-bottom: 30px;
}

.reviews-section .review-card {
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 30px;
  margin: 0 auto;
  max-width: 700px;
  transition: box-shadow 0.3s ease;
}

.reviews-section .review-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reviews-section .review-card .rating i {
  color: var(--color-rambling-rose);
  margin: 0 2px;
  font-size: 1.2rem;
}

.reviews-section .review-card blockquote {
  font-style: italic;
  color: var(--text-dark);
  margin: 20px 0;
  quotes: "\201C" "\201D" "\2018" "\2019";
}

.reviews-section .review-card .reviewer {
  font-weight: 500;
  color: var(--color-cascades);
}

.reviews-section .carousel-control-prev-icon,
.reviews-section .carousel-control-next-icon {
  background-color: var(--color-rambling-rose);
  border-radius: 50%;
}

.reviews-section .text-center a.btn {
  margin: 0 10px;
  font-size: 1rem;
  padding: 10px 20px;
}

.reviews-section .text-center a.btn-outline-primary {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.reviews-section .text-center a.btn-outline-primary:hover {
  background-color: var(--color-gold);
  color: var(--text-dark);
}

.reviews-section .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-section .btn-primary {
  background-color: var(--color-rambling-rose);
  color: var(--text-light);
  border: none;
}

.reviews-section .btn-primary:hover {
  background-color: var(--color-gold);
  color: var(--text-dark);
}

.reviews-section .btn-danger {
  background-color: var(--color-urbane-bronze);
  color: var(--text-light);
  border: none;
}

.reviews-section .btn-danger:hover {
  background-color: var(--color-evergreen-fog);
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .reviews-section .cta-buttons {
    flex-direction: row;
  }
}
/* ---------------------------------------------------</Reviews Section>---------------------------------------------------------- */

/* ---------------------------------------------------<Booking Section>---------------------------------------------------------- */
.booking-section {
    position: relative;
    padding: 80px 0;
    color: white;
}

/* Default: No overlay applied */
.booking-section::before {
    display: none;
}

/* Only apply overlay when a background image is present */
.booking-section.has-bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust opacity for readability */
    display: block;
}


/* Content Wrapper */
.booking-section .container {
    position: relative;
    z-index: 2;
}

/* Overline Text */
.booking-overline {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Section Heading */
.booking-heading {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

/* Intro Paragraph */
.booking-intro {
    font-size: 1.1rem;
    color: white;
    max-width: 700px;
    margin: 0 0 40px;
}

/* Step Box */
.booking-step {
    background: rgba(255, 255, 255, 0.2); /* Transparent Box */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    color: white;
}

.booking-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Step Icon */
.booking-step i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    display: block;
}
.booking-step:hover i {
    color: var(--color-rambling-rose);
}

/* Step Title */
.booking-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

/* Step Description */
.booking-step p {
    font-size: 1rem;
    color: white;
    margin-bottom: 15px;
}

/* CTA Buttons */
.booking-step .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* Booking Section CTA Buttons - Prevent Wrapping */
.booking-step .btn {
    font-size: 1rem;
    font-weight: 700;
    padding: 10px!important;
    border-radius: 8px;
    white-space: nowrap; /* Prevents text from wrapping */
    /*min-width: 120px;*/ /* Ensures consistent width */
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.booking-step .btn-danger {
  background-color: var(--color-rambling-rose);
  color: var(--text-light);
  border: none;
}
.booking-step .btn-danger:hover {
  background-color: var(--color-gold);
  color: var(--text-dark);
}

.booking-step .btn-primary {
  background-color: var(--color-cascades);
  color: var(--text-light);
  border: none;
}

.booking-step .btn-primary:hover {
  background-color: var(--color-urbane-bronze);
  color: var(--text-light);
}

/* Responsive Button Layout */
@media (max-width: 768px) {
    .booking-step {
        margin-bottom: 20px!important; /* Adds space between steps */
    }

    /* Ensures last card does not have extra spacing */
    .booking-step:last-child {
        margin-bottom: 0;
    }
    .booking-step .cta-buttons {
        flex-direction: row; /* Stack buttons on mobile */
    }
    .booking-step .btn {
        width: 100%; /* Makes buttons full width on small screens */
    }
    
}
/* ---------------------------------------------------</Booking Section>---------------------------------------------------------- */

/* ---------------------------------------------------<Locations Section>---------------------------------------------------------- */
.locations-section {
    padding: 80px 0;
    background-color: #F9F9F9; /* Light Background */
}

.locations-heading {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-cascades); /* Updated from sapphire blue */
    margin-bottom: 10px;
}

.locations-intro {
    font-size: 1.1rem;
    color: var(--color-cascades); /* More harmonious than deep navy */
    max-width: 800px;
    text-align: left;
}

/* State Titles */
.state-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-cascades); /* Updated for consistency */
    margin-bottom: 10px;
}

/* Location Lists */
.location-list {
    padding: 0;
    list-style: none;
}

.location-list li {
    font-size: 1rem;
    color: var(--color-cascades); /* Consistent text tone */
    margin-bottom: 5px;
}

/* Expanding Note */
.expanding-note {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-rambling-rose); /* Replaces emerald green */
    margin-top: 15px;
}

/* Google Maps Container */
.gmap-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gmap-container {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ---------------------------------------------------</Locations Section>---------------------------------------------------------- */


/* ---------------------------------------------------<FAQ Section>---------------------------------------------------------- */
.faq-section {
    padding: 60px 0;
    background-color: #F9F9F9;
    text-align: center;
}

/* Section Heading */
.faq-heading {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-cascades); /* Replaces Sapphire Blue */
    margin-bottom: 20px;
}

/* Accordion Styling */
.accordion-item {
    border: none;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

/* Accordion Header */
.accordion-button {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--color-rambling-rose); /* Replaces Emerald Green */
    color: white;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

/* Icon Spacing */
.accordion-button i {
    font-size: 1.4rem;
    margin-right: 10px;
}

/* Hover & Active State */
.accordion-button:hover,
.accordion-button:focus {
    background: var(--color-cascades); /* Replaces Sapphire Blue */
    color: white;
}

.accordion-button:not(.collapsed) {
    background: var(--color-urbane-bronze); /* Replaces Deep Navy */
    color: white;
}

/* Accordion Body */
.accordion-body {
    font-size: 1rem;
    color: var(--color-cascades);
    text-align: left;
}

/* ---------------------------------------------------</FAQ Section>---------------------------------------------------------- */

/* ---------------------------------------------------<Connect Section>---------------------------------------------------------- */
/* Default Connect Section */
.connect-section.default-bg {
    padding: 80px 0;
    background: 
        linear-gradient(to bottom, var(--color-cascades), var(--color-urbane-bronze)),
        url('../img/texture-001.webp');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    color: white;
}

/* Contact Page Background */
.connect-section.contact-bg {
    padding: 80px 0;
    background:
        linear-gradient(to bottom, #fff, var(--color-evergreen-fog)),
        url('../img/abstract-texture.webp');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    color: black;
}

/* Heading & Paragraph */
.connect-heading,
.connect-intro {
    color: white;
}
.connect-section.contact-bg .connect-heading,
.connect-section.contact-bg .connect-intro {
    color: var(--color-cascades);
}

/* Contact Info */
.contact-info p {
    color: #DDE6F3;
}
.connect-section.contact-bg .contact-info a {
    color: var(--color-rambling-rose);
}
.connect-section.contact-bg .contact-info a:hover {
    color: var(--color-cascades);
}
.contact-info a {
    color: var(--color-evergreen-fog);
}
.contact-info a:hover {
    color: var(--color-gold);
}

.connect-section.contact-bg .contact-info p {
    color: var(--color-cascades);
}
.contact-info i {
    color: var(--color-gold);
}
.connect-section.contact-bg .contact-info i {
    color: var(--color-cascades);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.connect-section.contact-bg .contact-form {
    background: rgba(39, 62, 62, 0.3); /* cascades tint */
}

/* Labels & Fields */
.contact-form .form-label {
    color: white;
}
.connect-section.contact-bg .contact-form .form-label {
    color: black;
}
.contact-form .form-control {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.cta-buttons .btn {
    font-size: 1.2rem;
    padding: 12px 20px;
    border-radius: 8px;
}

/* reCAPTCHA text */
.connect-section.contact-bg .recaptcha-disclaimer {
    color: var(--color-urbane-bronze);
}
.recaptcha-disclaimer {
    color: var(--color-evergreen-fog);
}
.recaptcha-disclaimer a {
    color: var(--color-gold)!important;
}
.recaptcha-disclaimer a:hover {
    color: var(--color-rambling-rose)!important;
}

.form-disclaimer{
font-size:13px;
color:rgba(255,255,255,.7);
margin-top:10px;
margin-bottom:5px;
}

/* ---------------------------------------------------</Connect Section>---------------------------------------------------------- */


/* ---------------------------------------------------<Privacy Policy>--------------------------------------------------- */

.card h3{
font-weight:700;
margin-bottom:15px;
}

.card ul{
padding-left:20px;
}

.card ul li{
margin-bottom:8px;
}

.card hr{
opacity:.15;
}
/* ---------------------------------------------------</Privacy Policy>--------------------------------------------------- */


/* ---------------------------------------------------<Quick Exit Button>---------------------------------------------------------- */
.quick-exit-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-rambling-rose);
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    z-index: 9999;
}

.quick-exit-btn:hover {
    background: var(--color-gold);
    color: var(--text-dark);
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .quick-exit-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        bottom: 15px;
        right: 15px;
    }
}

/* ---------------------------------------------------</Quick Exit Button>---------------------------------------------------------- */


/* ---------------------------------------------------<Footer>---------------------------------------------------------- */
.site-footer {
    background: var(--color-cascades);
    color: white;
    padding: 50px 0 0;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

/* Footer Layout */
.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.footer-about p,
.footer-links ul li a,
.footer-contact p {
    font-size: 1rem;
    color: #DDE6F3; /* Light Gray-Blue */
}

/* Footer Links */
.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--color-rambling-rose);
}

/* Contact Info */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-rambling-rose);
}
.footer-contact a {
    color: var(--color-evergreen-fog);
}
.footer-contact a:hover {
    color: var(--color-gold);
}

/* Social Media Icons */
.footer-socials {
    margin-top: 10px;
}

.footer-socials .social-link {
    color: white;
    font-size: 1.5rem;
    margin-right: 10px;
    transition: color 0.3s ease-in-out;
}

.footer-socials .social-link:hover {
    color: var(--color-rambling-rose);
}

/* Footer Bottom (Copyright & Credit) */
.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #DDE6F3;
}

/* Digital Kingdom Interprises Credit */
.dki-credit {
    color: var(--color-rambling-rose);
    font-weight: 600;
    text-decoration: none;
}

.dki-credit:hover {
    color: var(--color-gold);
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-about, .footer-links, .footer-contact {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* ---------------------------------------------------<Footer Legal Links>--------------------------------------------------- */

.footer-bottom{
border-top:1px solid rgba(255,255,255,.15);
margin-top:30px;
padding-top:20px;
}

.footer-legal a{
color:#d4c08a!important; /* matches gold accent */
text-decoration:none;
font-size:14px;
margin:0 5px;
}

.footer-legal a:hover{
color:#ffffff!important;
text-decoration:underline;
}

.footer-legal span{
color:rgba(255,255,255,.4);
}

.footer-copy{
margin:0;
font-size:14px;
}

.footer-credit{
margin:0;
font-size:14px;
}

.dki-credit{
color:#ff6b6b;
text-decoration:none;
}

.dki-credit:hover{
color:#ff9b9b;
}

.footer-disclaimer{
font-size:13px;
color:rgba(255,255,255,.65);
margin-bottom:0;
}
/* ---------------------------------------------------</Footer>---------------------------------------------------------- */
