.elementor-97 .elementor-element.elementor-element-6fd09c6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-160px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-97 .elementor-element.elementor-element-6c14513{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-97 .elementor-element.elementor-element-6e2d0e3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-97 .elementor-element.elementor-element-820e0ce{--display:flex;}.elementor-97 .elementor-element.elementor-element-5a56da9{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 09px) 12px;}.elementor-97 .elementor-element.elementor-element-5a56da9 .elementor-heading-title{font-size:16px;color:#1B6BA0;}.elementor-97 .elementor-element.elementor-element-8e62969{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 9px) 012px;}.elementor-97 .elementor-element.elementor-element-8e62969 .elementor-heading-title{font-size:30px;color:#0F2C3F;}.elementor-97 .elementor-element.elementor-element-874eda3{width:var( --container-widget-width, 750px );max-width:750px;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 32px) 12px;--container-widget-width:750px;--container-widget-flex-grow:0;font-size:15px;color:#4B5B66;}.elementor-97 .elementor-element.elementor-element-bd4315d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-97 .elementor-element.elementor-element-62bee6a{--grid-columns:3;--grid-row-gap:38px;--grid-column-gap:39px;}.elementor-97 .elementor-element.elementor-element-3e758cb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-97 .elementor-element.elementor-element-e53ad97{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:999px){.elementor-97 .elementor-element.elementor-element-5a56da9{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 9px) 12px;}.elementor-97 .elementor-element.elementor-element-8e62969{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 9px) 12px;}.elementor-97 .elementor-element.elementor-element-874eda3{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 32px) 12px;}.elementor-97 .elementor-element.elementor-element-62bee6a{--grid-columns:2;}}@media(max-width:689px){.elementor-97 .elementor-element.elementor-element-5a56da9{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 9px) 10px;}.elementor-97 .elementor-element.elementor-element-8e62969{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 9px) 5px;}.elementor-97 .elementor-element.elementor-element-874eda3{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 32px) 10px;}.elementor-97 .elementor-element.elementor-element-62bee6a{--grid-columns:1;}}/* Start custom CSS for html, class: .elementor-element-6c14513 *//* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevents scrollbar on small devices */
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    /* Changed to 100svh for better mobile browser support */
    min-height: 130svh; 
    width: 100%;
    display: flex;
    align-items: center; /* Vertically centers content */
    overflow: hidden;
    background-color: #0a232d;
}

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
    object-position: center;
}

/* Overlay - Adjusted for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 35, 45, 0.85) 0%, /* Slightly darker start for text contrast */
        rgba(10, 50, 60, 0.6) 50%,
        rgba(0, 80, 90, 0.3) 100%
    );
    z-index: 1;
}

/* --- HERO CONTENT --- */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    
    /* WIDESCREEN UPDATE: Scales width on large screens */
    max-width: 1600px; 
    margin: 0 auto; /* Centers container on super-wide screens */
    padding: 0 5vw; /* Responsive side padding */
    
    /* NAV BAR CLEARANCE: Pushes content down if you have a fixed header */
    padding-top: 100px; 
}

/* Content Limit Wrapper (Keeps text from stretching too wide) */
.hero-text-wrapper {
    max-width: 700px; /* Limits text width for readability */
}

/* Location Tag */
.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(203, 166, 75, 0.15); /* Subtle background */
    backdrop-filter: blur(5px); /* Glass effect */
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(203, 166, 75, 0.3);
    margin-bottom: 35px;
}

.location-dot {
    width: 8px;
    height: 8px;
    background-color: #CBA64B;
    border-radius: 50%;
    box-shadow: 0 0 10px #CBA64B; /* Glow effect */
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

.location-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #CBA64B;
    text-transform: uppercase;
}

/* Hero Heading */
.hero-heading {
    margin-bottom: 35px;
}

.heading-line-1, .heading-line-2 {
    display: block;
    font-family: 'Playfair Display', serif;
    /* CLAMP: Scales text smoothly from mobile to desktop */
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.heading-line-1 {
    color: #ffffff;
}

.heading-line-2 {
    font-style: italic;
    color: #CBA64B;
}

/* Hero Description */
.hero-description {
    border-left: 3px solid #CBA64B; /* Matched to Gold */
    padding-left: 25px;
    margin-bottom: 50px;
    max-width: 550px;
}

.hero-description p {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Hero Features */
.hero-features {
    display: flex;
    align-items: center;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #CBA64B;
}

.feature-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Widescreen / 4K Monitors */
@media (min-width: 1920px) {
    .hero-text-wrapper {
        max-width: 900px; /* Allow text to be wider on huge screens */
    }
    
    .hero-description p {
        font-size: 1.4rem; /* Larger reading text */
    }
}

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .hero {
        min-height: 80vh; /* Shorter hero for tablets */
    }

    .hero-content {
        padding-top: 80px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hero {
        /* FIX 1: Reduced height slightly for mobile. 
           110svh is tall enough to scroll, but fits the video better than 130svh. */
        min-height: 110svh; 
        
        /* Keep content at the bottom like you had it */
        align-items: flex-end; 
        padding-bottom: 50px; 
    }
    
    .hero-content {
        padding: 0 25px; 
        
        /* FIX 2: This 120px clears your Nav Bar perfectly 
           without pushing the text off the bottom of the screen. */
        padding-top: 120px; 
    }
    
    /* Ensure the text container doesn't get squashed */
    .hero-text-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .location-tag {
        margin-bottom: 25px;
        padding: 8px 16px;
    }

    .heading-line-1, .heading-line-2 {
        /* Adjusted slightly so "The Island" doesn't break into 3 lines on small phones */
        font-size: 2.8rem; 
        line-height: 1.1;
    }

    /* Kept your original Left Border design */
    .hero-description {
        border-left: 2px solid #CBA64B;
        padding-left: 20px;
        margin-bottom: 40px;
        max-width: 90%; /* Stops text hitting the right edge too hard */
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    /* Stack features vertically, kept Left Aligned */
    .hero-features {
        flex-direction: column; 
        align-items: flex-start;
        gap: 15px;
    }
    
    .feature-divider {
        display: none; 
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-62dd22b *//* ============= TESTIMONIALS SECTION (Thompson's Gold Theme) ============= */

.exuma-testimonials {
  background: #f9f9f9; /* Very subtle warm grey */
  padding: 5rem 6vw 5rem;
  border-bottom: 1px solid #eaeaea; /* Seamless transition to footer */
}

.exuma-testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 4rem;
  align-items: center;
}

/* LEFT SIDE */

.exuma-testimonials .testimonials-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #cda45e; /* Thompson's Gold */
  margin-bottom: 0.8rem;
}

.exuma-testimonials .testimonials-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  color: #1a1a1a; /* Soft Black */
  margin-bottom: 1rem;
  line-height: 1.2;
}

.exuma-testimonials .testimonials-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.exuma-testimonials .testimonials-source {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

/* RIGHT SIDE (CAROUSEL) */

.exuma-testimonials .testimonials-right {
  position: relative;
}

/* Edge fades (Updated to match new BG) */
.exuma-testimonials .testimonials-fade {
  position: absolute;
  top: 0;
  bottom: 2rem;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}

.exuma-testimonials .testimonials-fade-left {
  left: 0;
  background: linear-gradient(to right, #f9f9f9, rgba(249, 249, 249, 0));
}

.exuma-testimonials .testimonials-fade-right {
  right: 0;
  background: linear-gradient(to left, #f9f9f9, rgba(249, 249, 249, 0));
}

/* Carousel track */
.exuma-testimonials .testimonials-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 6vw;
  padding-inline: 5px; 
}

.exuma-testimonials .testimonials-carousel::-webkit-scrollbar {
  height: 0; /* hide scrollbar */
}

/* Cards */

.exuma-testimonials .testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 12px; /* Slightly sharper corners for premium feel */
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft premium shadow */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.exuma-testimonials .testimonial-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 15px 35px rgba(205, 164, 94, 0.15); /* Gold glow on hover */
}

/* Stars + text */

.exuma-testimonials .testimonial-stars {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #cda45e; /* Thompson's Gold */
  margin-bottom: 0.8rem;
}

.exuma-testimonials .testimonial-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Footer (person) */

.exuma-testimonials .testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
}

.exuma-testimonials .testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Avatar wrapper + image */

.exuma-testimonials .person-avatar-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #cda45e; /* Gold Border */
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exuma-testimonials .person-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Person meta text */

.exuma-testimonials .person-meta {
  display: flex;
  flex-direction: column;
}

.exuma-testimonials .person-name {
  font-family: "Playfair Display", serif; /* Serif for names looks elegant */
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

.exuma-testimonials .person-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hint text */

.exuma-testimonials .testimonials-hint {
  margin-top: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #aaa;
  font-style: italic;
}

/* ============= RESPONSIVE ============= */

@media (max-width: 960px) {
  .exuma-testimonials-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    text-align: center; /* Center align text on mobile for better flow */
  }
  
  .exuma-testimonials .testimonials-text, 
  .exuma-testimonials .testimonials-eyebrow,
  .exuma-testimonials .testimonials-title {
      margin-left: auto;
      margin-right: auto;
  }
}

@media (max-width: 640px) {
  .exuma-testimonials {
    padding: 4rem 1.5rem;
  }

  .exuma-testimonials .testimonials-carousel {
    scroll-padding-inline: 1.5rem;
  }

  .exuma-testimonials .testimonial-card {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .exuma-testimonials .testimonials-fade {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e9b8412 */.exuma-steps {
  background: #ffffff;
  padding: 4.8rem 6vw 5.2rem;
}

.exuma-steps-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header */
.steps-header {
  margin-bottom: 2.6rem;
  max-width: 650px;
}

.steps-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #1b6ba0;
  margin-bottom: 0.55rem;
}

.steps-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  color: #102a3a;
  margin-bottom: 0.6rem;
}

.steps-text {
  font-family: "DM Sans", system-ui;
  font-size: 1rem;
  color: #4b5b66;
  line-height: 1.7;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.8rem 1.4rem 1.6rem;
  border: 1px solid rgba(15, 46, 75, 0.08);
  box-shadow: 0 20px 45px rgba(15, 46, 75, 0.07);
  transition: all 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 46, 75, 0.18);
}

/* Number */
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dfeffc, #f8fcff);
  color: #1b6ba0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", system-ui;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

/* Titles */
.step-title {
  font-family: "DM Sans", system-ui;
  color: #102a3a;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

/* Desc */
.step-desc {
  font-family: "DM Sans", system-ui;
  font-size: 0.95rem;
  color: #4c5b67;
  line-height: 1.65;
}

/* Footer reassurance */
.steps-footer {
  margin-top: 2.4rem;
}

.steps-reassure {
  font-family: "DM Sans", system-ui;
  font-size: 0.9rem;
  color: #6d7c86;
}

/* Responsive */
@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 1.6rem 1.3rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c932ddc *//* ============= ENHANCED FAQ SECTION ============= */

.exuma-faq {
  background: radial-gradient(circle at top left, #f0f6ff, #f7fafc 38%, #ffffff 90%);
  padding: 4.8rem 6vw 5.4rem;
}

.exuma-faq-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3.2rem;
  align-items: flex-start;
}

/* LEFT SIDE */

.exuma-faq .faq-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #1b6ba0;
  margin-bottom: 0.55rem;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.exuma-faq .faq-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  color: #102a3a;
  margin-bottom: 0.7rem;
}

.exuma-faq .faq-text {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b5b66;
  margin-bottom: 1.4rem;
}

/* Category pills */

.exuma-faq .faq-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.exuma-faq .faq-pill {
  font-family: "DM Sans", system-ui;
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 107, 160, 0.16);
  background: rgba(255, 255, 255, 0.7);
  color: #1b6ba0;
}

/* Highlight help card */

.exuma-faq .faq-highlight-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #e8f2ff, #ffffff);
  border: 1px solid rgba(15, 46, 75, 0.1);
  box-shadow: 0 18px 45px rgba(15, 46, 75, 0.06);
}

.exuma-faq .faq-highlight-left {
  display: flex;
  align-items: flex-start;
}

.exuma-faq .faq-highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b6ba0, #0f4f7a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
}

.exuma-faq .faq-highlight-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.exuma-faq .faq-highlight-label {
  font-family: "DM Sans", system-ui;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #4a6a82;
}

.exuma-faq .faq-highlight-title {
  font-family: "DM Sans", system-ui;
  font-size: 1rem;
  font-weight: 600;
  color: #102a3a;
}

.exuma-faq .faq-highlight-text {
  font-family: "DM Sans", system-ui;
  font-size: 0.9rem;
  color: #4c5b67;
  line-height: 1.6;
}

.exuma-faq .faq-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.9rem;
  margin-top: 0.5rem;
}

.exuma-faq .faq-highlight-cta {
  font-family: "DM Sans", system-ui;
  font-size: 0.86rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #1b6ba0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 9px 22px rgba(27, 107, 160, 0.35);
}

.exuma-faq .faq-highlight-cta:hover {
  background: #145177;
}

.exuma-faq .faq-highlight-meta {
  font-family: "DM Sans", system-ui;
  font-size: 0.8rem;
  color: #5a6b78;
}

/* RIGHT SIDE – Accordion */

.exuma-faq .faq-right {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* FAQ items */

.exuma-faq .faq-item {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 46, 75, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

.exuma-faq .faq-item::before {
  /* left accent line */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
}

/* Summary (header row) */

.exuma-faq .faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Remove default marker */
.exuma-faq .faq-item > summary::-webkit-details-marker {
  display: none;
}

/* Icon circle */

.exuma-faq .faq-icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #f0f6ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.exuma-faq .faq-icon {
  font-size: 1rem;
}

/* Question text */

.exuma-faq .faq-question {
  font-family: "DM Sans", system-ui;
  font-size: 0.95rem;
  font-weight: 600;
  color: #122536;
  flex: 1;
}

/* Toggle indicator */

.exuma-faq .faq-toggle-indicator {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(15, 46, 75, 0.25);
  position: relative;
}

.exuma-faq .faq-toggle-indicator::before,
.exuma-faq .faq-toggle-indicator::after {
  content: "";
  position: absolute;
  background: rgba(15, 46, 75, 0.9);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Horizontal line */
.exuma-faq .faq-toggle-indicator::before {
  width: 9px;
  height: 1px;
}

/* Vertical line (for + sign) */
.exuma-faq .faq-toggle-indicator::after {
  width: 1px;
  height: 9px;
}

/* Answer */

.exuma-faq .faq-answer {
  font-family: "DM Sans", system-ui;
  font-size: 0.9rem;
  color: #4c5b67;
  line-height: 1.7;
  padding: 0 1.1rem 0.95rem 3.1rem; /* aligned under question text */
  border-top: 1px solid rgba(15, 46, 75, 0.06);
}

/* Open state styling */

.exuma-faq .faq-item[open] {
  border-color: rgba(15, 46, 75, 0.2);
  box-shadow: 0 18px 38px rgba(15, 46, 75, 0.06);
  transform: translateY(-2px);
}

.exuma-faq .faq-item[open]::before {
  background: linear-gradient(180deg, #1b6ba0, #0f4f7a);
}

/* Change + to - when open (hide vertical bar) */
.exuma-faq .faq-item[open] .faq-toggle-indicator::after {
  display: none;
}

/* Hover hint (desktop) */
@media (hover: hover) {
  .exuma-faq .faq-item:hover {
    border-color: rgba(15, 46, 75, 0.18);
  }
}

/* ============= RESPONSIVE ============= */

@media (max-width: 960px) {
  .exuma-faq-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }
}

@media (max-width: 640px) {
  .exuma-faq {
    padding: 3.8rem 1.8rem 4.2rem;
  }

  .exuma-faq .faq-answer {
    padding-left: 2.6rem;
  }

  .exuma-faq .faq-highlight-card {
    grid-template-columns: minmax(0, 1fr);
  }
}/* End custom CSS */