@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Ubuntu", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --archivo: font-family: "Archivo", sans-serif;
}

:root {
  --manrope: font-family: "Manrope", sans-serif;
}

:root {
  --header-bg: #fff;
  --header-border: rgba(12, 18, 28, .10);
  --header-shadow: 0 10px 28px rgba(10, 22, 40, .12);

  --container: 1320px;

  --cta-bg: #262E45;
  --cta-bg-hover: #1f2638;
  --cta-text: #fff;

  --muted: rgba(11, 18, 32, .70);
}

/* ARCHIVO EXPANDED */
/* Thin (100) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Light (300) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular (400) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium (500) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* SemiBold (600) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Black (900) */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('assets/fonts/archivo-fonts/archivo-expanded/woff2/archivo-expanded-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --archivo-expanded: 'Archivo Expanded', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #363f40;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1f2f31;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #9AACC2;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #363f40;
  /* The default color of the main navmenu links */
  --nav-hover-color: #099aa7;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #363f40;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #099aa7;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f7f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Montserrat";
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Fonts: Archivo */
.archivo-100 {
  font-family: var(--archivo);
  font-weight: 100;
}

.archivo-200 {
  font-family: var(--archivo);
  font-weight: 200;
}

.archivo-300 {
  font-family: var(--archivo);
  font-weight: 300;
}

.archivo-500 {
  font-family: var(--archivo);
  font-weight: 500;
}

.archivo-600 {
  font-family: var(--archivo);
  font-weight: 600;
}

.archivo-700 {
  font-family: var(--archivo);
  font-weight: 700;
}

.archivo-800 {
  font-family: var(--archivo);
  font-weight: 800;
}

.archivo-900 {
  font-family: var(--archivo);
  font-weight: 900;
}

/* Fonts: Archivo Expanded */
.archivo-expanded-100 {
  font-family: var(--archivo-expanded);
  font-weight: 100;
}

.archivo-expanded-300 {
  font-family: var(--archivo-expanded);
  font-weight: 300;
}

.archivo-expanded-400 {
  font-family: var(--archivo-expanded);
  font-weight: 400;
}

.archivo-expanded-500 {
  font-family: var(--archivo-expanded);
  font-weight: 500;
}

.archivo-expanded-600 {
  font-family: var(--archivo-expanded);
  font-weight: 600;
}

.archivo-expanded-700 {
  font-family: var(--archivo-expanded);
  font-weight: 700;
}

.archivo-expanded-900 {
  font-family: var(--archivo-expanded);
  font-weight: 900;
}

/* Fonts: Manrope */
.manrope-100 {
  font-family: var(--manrope);
  font-weight: 100;
}

.manrope-200 {
  font-family: var(--manrope);
  font-weight: 200;
}

.manrope-300 {
  font-family: var(--manrope);
  font-weight: 300;
}

.manrope-400 {
  font-family: var(--manrope);
  font-weight: 400;
}

.manrope-500 {
  font-family: var(--manrope);
  font-weight: 500;
}

.manrope-600 {
  font-family: var(--manrope);
  font-weight: 600;
}

.manrope-700 {
  font-family: var(--manrope);
  font-weight: 700;
}

.manrope-800 {
  font-family: var(--manrope);
  font-weight: 800;
}

.manrope-900 {
  font-family: var(--manrope);
  font-weight: 900;
}

/* Fonts: Monntserrat */
.montserrat-100 {
  font-family: var(--manrope);
  font-weight: 100;
}

.montserrat-200 {
  font-family: var(--manrope);
  font-weight: 200;
}

.montserrat-300 {
  font-family: var(--manrope);
  font-weight: 300;
}

.montserrat-400 {
  font-family: var(--manrope);
  font-weight: 400;
}

.montserrat-500 {
  font-family: var(--manrope);
  font-weight: 500;
}

.montserrat-600 {
  font-family: var(--manrope);
  font-weight: 600;
}

.montserrat-700 {
  font-family: var(--manrope);
  font-weight: 700;
}

.montserrat-800 {
  font-family: var(--manrope);
  font-weight: 800;
}

.montserrat-900 {
  font-family: var(--manrope);
  font-weight: 900;
}

/*--------------------------------------------------------------
# PHP Email Form Messages
--------------------------------------------------------------*/
.contact-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Register Custom Icons
--------------------------------------------------------------*/
.checkmark {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('../../assets/img/kitchen/advantages/custom-icons/checkmark.svg') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.water-tap {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('/assets/img/custom-icons/water-tap.svg') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.hand-holding-wrench {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('/assets/img/custom-icons/hand-holding-wrench.svg') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

.chat {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url('/assets/img/custom-icons/chat.svg') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  padding: 15px 1%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: -0.75%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header h3 {
  color: #333333;
}

.header .container-fluid {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  border-radius: 10px;
  box-shadow: 0 11px 13.3px rgba(0, 0, 0, 0.25);
  margin-top: 1%;
  padding: 15px 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
  position: relative;
}

/* Flex wrapper */
.header .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


/* Logo Styles */
.logo img {
  height: 120px;
  width: auto;
  transition: height 0.3s ease;
}

/* CENTER LOGO ON DESKTOP - PROPER WAY */
@media (min-width: 768px) {
  .header .container-fluid .d-flex>div:last-child {
    justify-self: end;
    /* stop Firefox stretch weirdness */
    display: flex;
    justify-content: flex-end;
    /* push CTA to the right */
  }

  /* Left section - Location badge */
  .header .badge.location {
    justify-self: start;
  }

  /* Center section - Logo */
  .header .d-none.d-md-flex {
    justify-self: center;
  }

  /* Right section - CTA */
  .header .header-cta-btn {
    align-items: flex-end;
    text-align: right;
  }

  .header-cta-btn .phone-number {
    width: auto;
    max-width: none;
    text-align: right;
    white-space: nowrap;
    line-height: 1.15;
  }

  /* Logo Styles */
  .logo img {
    height: 110px;
    width: auto;
    transition: height 0.3s ease;
    /* NO MARGIN NEEDED */
  }
}

/* Location Badge */
.badge.location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: min(720px, 60vw);
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--cta-bg);
  color: var(--cta-text);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 10px 22px rgba(6, 22, 50, .20);
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
  font-size: clamp(18px, 1.75vw, 16px);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

/* Promotion Badge */
.badge.promotion {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  /* ✅ remove forced 50% */
  max-width: min(720px, 60vw);
  padding: 14px 26px;

  border-radius: 999px;
  text-decoration: none;

  background: var(--cta-bg);
  color: var(--cta-text);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 10px 22px rgba(6, 22, 50, .20);

  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;

  font-size: clamp(18px, 1.75vw, 26px);

  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

/* Phone Number */
.phone-number {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  align-self: center;
  font-weight: 600;
  text-align: center;
  width: 100%;
  max-width: 100%;
  font-size: 24px;
  color: #000;
}

/* Call to Action Button - ADDED */
.header-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none !important;
}

/* Mobile Styles - Main Breakpoint */
@media (max-width: 767px) {
  .badge.location {
    display: none !important;
  }

  .header {
    padding: 15px 1%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: -0.75%;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  /* Container padding adjustment - ADDED */
  .header .container-fluid {
    padding: 10px 10px;
  }

  /* Force single row layout on mobile - ADDED */
  .header .d-flex {
    flex-wrap: nowrap !important;
  }

  /* Logo section adjustment for mobile - ADDED */
  .header .col-md-4:nth-child(2) {
    flex: 0 0 auto;
    width: auto;
    display: flex !important;
    justify-content: flex !important;
    padding: 0;
  }

  /* Hide center logo, show left logo on mobile - ADDED */
  .header .col-md-4:nth-child(2) {
    display: none !important;
  }

  /* Show logo on left for mobile - ADDED */
  .header .col-md-4:first-child {
    flex: 0 0 auto;
    width: auto;
    display: flex !important;
    align-items: center;
  }

  /* CTA section right aligned - ADDED */
  .header .col-md-4:last-child {
    flex: 0 0 auto;
    width: auto;
    display: flex !important;
    justify-content: flex-end !important;
    padding: 0;
  }

  /* Adjust logo size for mobile - MODIFIED */
  .logo img {
    height: 80px;
    margin-left: 20px;
  }

  /* Promotion badge mobile sizing - MODIFIED */
  .badge.promotion {
    max-width: min(560px, 66vw);
    padding: 12px 20px;
    font-size: clamp(16px, 2.4vw, 20px);
  }

  /* Phone number mobile sizing - MODIFIED */
  .phone-number {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.2;
  }
}



/* iPhone 14/15 Pro and similar (390px - 393px) - ADDED */
@media (max-width: 393px) {
  .header {
    padding: 7px 0;
  }

  .header .container-fluid {
    padding: 10px 5px;
  }

  .logo img {
    height: 70px;
    margin-left: 20px;
  }

  .badge.promotion {
    max-width: min(560px, 66vw);
    padding: 12px 20px;
    font-size: clamp(16px, 2.4vw, 20px);
  }

  .phone-number {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.2;
  }
}


/* Small mobile devices (360px - 380px) - ADDED */
@media (max-width: 380px) {
  .header {
    padding: 6px 0;
  }

  .header .container-fluid {
    padding: 10px 10px;
  }

  .logo img {
    height: 37px;
    margin-left: 20px;
  }

  .badge.promotion {
    max-width: min(560px, 66vw);
    padding: 12px 20px;
    font-size: clamp(16px, 2.4vw, 20px);
  }

  .phone-number {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.2;
  }
}


@media (max-width: 360px) {
  .header {
    padding: 6px 0;
  }

  .header .container-fluid {
    padding: 10px 10px;
  }

  .logo img {
    height: 44px;
    margin-left: 20px;
  }

  .badge.promotion {
    max-width: min(560px, 66vw);
    padding: 12px 20px;
    font-size: clamp(16px, 2.4vw, 20px);
  }

  .phone-number {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.2;
  }
}

/* Extra small devices (320px and below) - ADDED */
@media (max-width: 350px) {
  .header .container-fluid {
    padding: 10px 10px;
  }

  .logo img {
    height: 42px;
  }

  .badge.promotion {
    max-width: min(560px, 66vw);
    padding: 12px 20px;
    font-size: clamp(16px, 2.4vw, 20px);
  }

  .phone-number {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.2;
  }
}



/* Extra small devices (320px and below) - ADDED */
@media (max-width: 320px) {
  .header .container-fluid {
    padding: 8px 10px;
  }

  .logo img {
    height: 42px;
  }

  .badge.promotion {
    font-size: 8px;
    padding: 2px 5px;
  }

  .phone-number {
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.2;
  }
}

/* Global Header on Scroll */
.scrolled .header {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.scrolled .header .container-fluid {
  margin-top: 0;
  padding-bottom: 0;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
}

/* Pulse animation for promotion badge */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Countdown Timer
--------------------------------------------------------------*/
.countdown-wrap {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.countdown {
  display: flex;
  gap: 1rem;
  align-items: center
}

.countdown .unit {
  min-width: 92px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 6px 18px rgba(43, 40, 107, 0.08);
  border: 1px solid rgba(43, 40, 107, 0.06);
}

.countdown .value {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.6px;
  color: var(--accent);
}

.countdown .label {
  font-size: 12px;
  color: #6b6b85;
  margin-top: 6px
}

.sep {
  font-weight: 700;
  color: #6b6b85;
  font-size: 20px
}

/* responsive tweaks */
@media (max-width:420px) {
  .countdown {
    gap: .5rem
  }

  .countdown .unit {
    min-width: 70px;
    padding: 8px 10px;
    border-radius: 8px
  }

  .countdown .value {
    font-size: 20px
  }

  .sep {
    font-size: 16px
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #262e43;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #000000, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 100px;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 500;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title h4 {
  letter-spacing: 5px;
  font-size: 16px;
  margin-bottom: 10px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .section-title {
    padding-bottom: 20px;
  }

  .section-title h4 {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 8px;
  }

  .section-title h1 {
    margin-top: -5%;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .section-title h2:before {
    width: 100px;
  }

  .section-title h2::after {
    width: 40px;
  }

  .section-title p {
    font-size: 14px;
    padding: 0 12px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #be95be25;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-carousel {
    position: absolute;
    top: 9%;
    left: 0;
    width: 100vw;
    z-index: 5;
  }

  .hero-carousel .item img {
    width: 50vw;
    height: auto;
    display: block;
  }

  .hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 15px;
  }

  .hero-content {
    margin-top: 200px !important;
    text-align: center;
  }

  .contact-form {
    margin-top: 20px;
  }
}

/* General */
.hero .hero-background {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  background:
    url("../../assets/img/general/hero-bg.webp") no-repeat center center/cover,
    linear-gradient(135deg, #262e43 0%, #262e43 100%);
  z-index: 0;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
      transparent 50%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero .hero-content {
  margin-top: 7rem;
  margin-bottom: 1.5rem;
  z-index: 5;
}

.hero .hero-content .badge {
  padding: 10px 24px;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.10);
}

/* Subtitle */
.hero .hero-content h4 {
  letter-spacing: 12.8px;
  font-size: 20px;
}

@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-carousel {
    position: absolute;
    top: 12%;
    left: 0;
    width: 100vw;
    z-index: 5;
  }

  .hero-carousel .item img {
    /* width: 50vw;
    height: auto; */
    display: block;

    /* height: 130px; */
    object-fit: fill;
    /* Crop image to fit */
    width: 100%;
    border-radius: 10px;
  }

  .hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 15px;
  }

  .hero-content {
    margin-top: 180px !important;
    text-align: center;
  }

  .contact-form {
    margin-top: -15px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    padding: 20px 15px 15px;
  }

  .hero .hero-content h4 {
    font-size: 16px;
    letter-spacing: 4px;
  }
}

/* Main Heading */
.hero .hero-content h1 {
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -3.6px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero .hero-content {
    margin-top: 60% !important;
  }
}

@media (max-width: 767px) {
  .hero .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

/* Horizontal line */
.hero .hero-content hr {
  margin: 1rem auto;
  width: 100px !important;
  background-color: #ffffff;
  height: 3px;
  border: none;
}

/* Promo text */
.hero .hero-content h5,
.hero .hero-content h6 {
  text-align: center;
}

.hero .hero-content h4 {
  padding-top: 3%;
  font-size: 1.2rem;
  font-family: "Montserrat";
  font-weight: 400;
  color: #FFF;
  letter-spacing: 4px;
}

.hero .hero-content h5 {
  font-size: 1.5rem;
}

.hero .hero-content h6 {
  font-size: 1.2rem;
  letter-spacing: 4px;
}

@media (max-width: 575px) {
  .hero .hero-content h5 {
    font-size: 1.2rem;
  }

  .hero .hero-content h6 {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}

/* CTA Buttons */
.hero .hero-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-btns .cta-btn {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 16px 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-btns .cta-btn:hover {
  background: #262e43;
  color: #ffffff;
}

.hero .hero-content .hero-btns .cta-btn .small-text {
  font-size: 16px;
  font-weight: 600;
}

.hero .hero-content .hero-btns .cta-btn .big-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
}

@media (max-width: 575px) {
  .hero .hero-content .hero-btns .cta-btn {
    padding: 12px 20px;
    width: 100%;
    max-width: 320px;
  }

  .hero .hero-content .hero-btns .cta-btn .small-text {
    font-size: 14px;
  }

  .hero .hero-content .hero-btns .cta-btn .big-text {
    font-size: 26px;
  }
}

/* Contact Form */
form button.btn {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #B38E3D 0%, #FDFAB7 47%, #B38E3D 100%);
  color: #252e45;
  border-radius: 10px;
  padding: 18px 26px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .25);
  transition: transform .15s ease, filter .15s ease;
}

@media (max-width: 575px) {
  form .form-floating label {
    font-size: 14px;
  }

  form .form-control,
  form .form-select {
    font-size: 14px;
    padding: 12px 10px;
  }

  form button.btn {
    font-size: 10px;
    padding: 14px;
  }

  form p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Mobile Slider Section
--------------------------------------------------------------*/
@media (min-width: 768px) {
  .mobile-slider {
    display: none;
  }
}

/*--------------------------------------------------------------
# Limited-Time Offer Section
--------------------------------------------------------------*/
.limited-offer {
  width: 100%;
  position: relative;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .limited-offer:after {
    position: absolute;
    content: "";
    width: 30%;
    /* background-image: linear-gradient(180deg, color-mix(in srgb, #9AACC2, transparent 0%), color-mix(in srgb, #9AACC2, transparent 0%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%); */
    background-color: #041c36;
    top: 0;
    bottom: 0;
    z-index: 2;
  }
}

.limited-offer:before {
  position: absolute;
  content: "";
  background: color-mix(in srgb, #ffffff, transparent 40%);
  inset: 0;
  z-index: 2;
}

.limited-offer .container,
.limited-offer .container-fluid {
  z-index: 3;
  position: relative;
}

.limited-offer h4 {
  font-size: 40px;
}

@media screen and (max-width: 767px) {
  .limited-offer {
    background-color: #ededed !important;
  }

  .limited-offer h4 {
    color: #021418 !important;
  }
}

.limited-offer .percent-off {
  font-size: 64px;
  color: #18538D;
}

/* Countdown Timer */
.count-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 100px;
  border: 3px dashed #1484C2;
}

@media screen and (max-width: 767px) {
  .count-box {
    width: 100%;
    aspect-ratio: auto;
    min-width: 100px;
    border: 1px dashed #1484C2;
  }
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.85;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply to countdown numbers */
#days,
#hours,
#minutes,
#seconds {
  color: #1484C2 !important;
  font-size: 38px;
  animation: pulse 1.5s infinite ease-in-out;
}

.countdown-timer a {
  background-color: #1484C2 !important;
  border: 1px solid #1484C2 !important;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {
  padding: 40px 20px !important;
  background-image: url("../images/why-trust-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.why-choose-us h4 {
  letter-spacing: 13.8px;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #000000;
}

.why-choose-us h1 {
  font-family: "Montserrat";
  font-weight: 800;
  font-size: clamp(20px, 6vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.why-choose-us p {
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 150%;
  color: #232F3A;
  margin-bottom: 1.5rem;
}

/* WHY CHOOSE US - LIST */
.why-choose-us .why-choose-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 22px;
  display: grid;
  gap: 14px;
}

.why-choose-us .why-choose-list li {
  position: relative;
  padding-left: 52px;
  /* space for circle+icon */
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #0f1a2a;
}

/* ✅ circle background */
.why-choose-us .why-choose-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 44px;
  height: 44px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(15, 26, 42, 0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 10px 22px rgba(0, 0, 0, .10),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* ✅ icon sits on top of the circle */
.why-choose-us .why-choose-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;

  width: 44px;
  height: 44px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  /* icon size inside circle */
}

/* icon per line */
.why-choose-us .why-choose-list li.icon-1::after {
  background-image: url("../img/why-trust/1.svg");
}

.why-choose-us .why-choose-list li.icon-2::after {
  background-image: url("../img/why-trust/2.svg");
}

.why-choose-us .why-choose-list li.icon-3::after {
  background-image: url("../img/why-trust/3.svg");
}

.why-choose-us .why-choose-list li.icon-4::after {
  background-image: url("../img/why-trust/4.svg");
}

.why-choose-us .why-choose-list li.icon-5::after {
  background-image: url("../img/why-trust/5.svg");
}

/* mobile tweak */
@media (max-width: 767px) {

  /* keep section centered for heading/button only */
  .why-choose-us {
    text-align: center;
  }

  .why-choose-us .why-choose-list {
    width: min(560px, 100%);
    margin-left: auto;
    margin-right: auto;
    justify-items: start;
  }

  .why-choose-us .why-choose-list li {
    text-align: left;
  }

  .why-choose-us .why-choose-list li::before,
  .why-choose-us .why-choose-list li::after {
    width: 44px;
    height: 44px;
    top: 2px;
  }

  .why-choose-us .why-choose-list li::after {
    background-size: 26px 26px;
  }
}

.why-choose-us .btn {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #B38E3D 0%, #FDFAB7 47%, #B38E3D 100%);
  color: #252e45;
  border-radius: 20px;
  padding: 18px 26px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .25);
  transition: transform .15s ease, filter .15s ease;
}

.why-choose-us .btn i {
  margin-left: 8px;
}

/* -----------------------
   ✅ Responsiveness
----------------------- */

/* Medium screens (tablets) */
@media (max-width: 991px) {
  .why-choose-us h1 {
    font-size: 36px;
  }
}

/* Small screens (mobile) */
@media (max-width: 767px) {
  .why-choose-us {
    text-align: center;
    padding: 40px 20px !important;
  }

  .why-choose-us h4 {
    font-size: 30px;
    letter-spacing: 5px;
  }

  .why-choose-us h1 {
    font-size: 30px;
    letter-spacing: -1px;
    padding-bottom: 5px;
  }

  .why-choose-us p {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .why-choose-us .btn {
    font-size: 18px;
    padding: 22px 24px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .why-choose-us img {
    max-width: 100%;
    height: auto;
    /* margin-top: 2rem; */
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services h4 {
  letter-spacing: 13.8px;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #202124;
}

.services h1 {
  letter-spacing: -1.92px;
  font-size: 48px;
  font-family: "Montserrat";
  line-height: 80%;
  color: #202124;
  font-weight: Bold;
}


.services h3 {
  letter-spacing: -1px;
  font-family: "Montserrat";
  line-height: 100%;
  color: #202124;
  font-weight: Bold;
  font-weight: 700;
}

.services p {
  letter-spacing: 0;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 150%;
  color: #232F3A;
}

@media screen and (max-width: 767px) {
  .services h4 {
    font-size: 30px;
    letter-spacing: 5px;
  }

  .services h1 {
    font-size: 32px;

    line-height: 80%;
    margin-top: 5px;
    margin-bottom: -2%;
  }

  .services p {
    font-size: 15px;
  }
}

.services .card {
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0px 5px 10px rgba(124, 124, 124, 0.1);
  padding: 30px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: ease-in-out 0.3s;
}


.services .card:hover {
  background: linear-gradient(135deg, #262e43 0%, #262e43 100%);
}

.services .card h5 {
  font-size: 22px;
  font-family: "Montserrat";
  line-height: 80%;
  color: #262e43;
  font-weight: Bold;
  text-transform: uppercase;
}

.services .card:hover h5,
.services .card:hover p,
.services .card:hover .card-title,
.services .card:hover .card-text {
  color: #ffffff !important;
}

@media screen and (max-width: 767px) {
  .services .card h5 {
    line-height: 25px;
  }
}

.services .card .card-footer {
  border-top: 0;
  background-color: transparent;
  padding: 0;
}

.services .card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: #262e43;
  border-radius: 7px;
  padding: 10px;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}


.services .card .icon-wrapper .icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.services .card .icon-wrapper svg,
.services .card .icon-wrapper svg path {
  fill: #ffffff;
  transition: fill 0.3s ease;
}

.services .card:hover .icon-wrapper {
  background-color: #ffffff;
}

.services .card:hover .icon-wrapper .icon-img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(45%) saturate(2200%) hue-rotate(200deg) brightness(85%) contrast(110%);
}


.services .card:hover .icon-wrapper svg,
.services .card:hover .icon-wrapper svg path {
  fill: #262e43;
}

.services .card .card-footer .btn-primary {
  background-color: #262e43 !important;
  border-color: #262e43 !important;
}

.services .card:hover .btn-primary {
  background-color: #ffffff !important;
  color: #262e43 !important;
  border-color: #ffffff !important;
}

/*--------------------------------------------------------------
# Advantages Section
--------------------------------------------------------------*/
.advantages {
  position: relative;
  /* background-image: url("../../assets/img/camera-inspection/hero-bg-before.webp"); */
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}

.advantages h4 {
  letter-spacing: 13.8px;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #202124;
  text-transform: uppercase;
}

.advantages h2 {
  letter-spacing: 1px;
  font-size: 40px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #202124;
  text-transform: uppercase;
}

.advantages p {
  letter-spacing: 0;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 150%;
  color: #202124;
}

.advantages .btn {
  font-family: "Montserrat";
  font-size: 20px;
  line-height: 125%;
  letter-spacing: 0;
  padding: 16px 40px;
  /* background-color: #16495F; */
  border: none;
  background-color: #073863;
  font-weight: 600;
}

.advantages .btn:hover {
  background-color: #1e5a8f;
}

.advantages ul li .details {
  margin-top: -3px;
}

/*--------------------------------------------------------------
# Advantages Section - Mobile
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {

  .advantages h4,
  .advantages h2,
  .advantages p {
    text-align: center;
  }

  .advantages h4 {
    font-size: 20px;
    letter-spacing: 0;
    margin-top: -10%;
  }

  .advantages h2 {
    font-size: 30px !important;

    margin-top: 0;
  }

  .advantages ul li p {
    text-align: start;
  }

  .advantages a {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .advantages h2 {
    font-size: 36px !important;
    line-height: 100%;
    margin-top: 0;
    letter-spacing: -1px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta-section {
  position: relative;
  background-image: url("../../assets/img/section-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* .cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  background-image: url('/assets/img/logo-cta.webp');
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
}

@media (max-width: 767px) {
  .cta-section::before {
    display: none;
  }
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: -80px;
  background-image: url('/assets/img/mobile-logo-cta.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
}

@media (min-width: 768px) {
  .cta-section::after {
    display: none;
  }
} */

/* ---------------------------------------------------------------
# Gallery
--------------------------------------------------------------- */
.gallery {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 60px 0;
  /* add breathing room */
}

.gallery .hero-background {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  background-image: url("../../assets/img/general/gallery-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.gallery .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at 30% 20%,
      color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
      transparent 50%); */
  z-index: 2;
}

.gallery .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.gallery .gallery-content {
  z-index: 5;
  margin-bottom: 2rem;
}

.gallery .gallery-content h4 {
  letter-spacing: 12.8px;
  font-size: 16px;
}

.gallery .gallery-content h2,
.gallery .gallery-content h1 {
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: 48px;
  letter-spacing: -2px;
}

.gallery .gallery-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------
   Responsive Styles
--------------------------------*/
@media (max-width: 992px) {
  .gallery {
    padding: 50px 0;
  }

  .gallery .gallery-content h2,
  .gallery .gallery-content h1 {
    font-size: 2.5rem;
  }

  .gallery .gallery-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .gallery {
    padding: 40px 0;
  }


  /* .gallery .gallery-content h2,
  .gallery .gallery-content h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  } */

  .gallery .gallery-content h4 {
    font-size: clamp(19px, 6vw, 26px);
    letter-spacing: clamp(8px, 2vw, 13.8px);
    font-family: "Montserrat";
    line-height: 130%;
    color: #FFF;
    font-weight: 300;
    text-transform: uppercase;
  }

  .gallery .gallery-content h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .gallery .gallery-content h2 {
    font-size: 60px;
  }

  .gallery .gallery-content p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .gallery .row.g-4>div {
    flex: 0 0 100%;
    /* force images full width */
    max-width: 100%;
  }

  .gallery img {
    height: auto !important;
  }
}

@media (max-width: 576px) {
  gallery {
    padding: 10px;
  }

  .gallery .gallery-content h2 {

    font-size: 50px;
  }

  .gallery .gallery-content h1 {
    font-size: 1.75rem;
  }

  .gallery .gallery-content h4 {
    font-size: 16px;
    letter-spacing: 5px;
  }

  .gallery .gallery-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 20px;
}

.testimonials h4 {
  letter-spacing: 13.8px;
  font-size: 20px;
  font-family: "Montserrat";
  line-height: 130%;
  color: #202124;
}

.testimonials h2 {
  font-size: 72px !important;
  color: #202124;
}

.testimonials h1 {
  letter-spacing: -3.5px;
  font-size: 70px;
  font-family: "Montserrat";
  line-height: 100%;
  color: #202124;
  font-weight: Bold;
}

.testimonials h3 {
  letter-spacing: -1.6px;
  font-size: 18;
  font-family: "Montserrat";
  line-height: 100%;
  color: #202124;
  font-weight: Bold;
}

@media screen and (max-width: 767px) {
  .testimonials h4 {
    font-size: 16px;
    text-align: center;
    letter-spacing: 5px;
  }

  .testimonials h2 {
    font-size: 45px !important;
    text-align: center;
    letter-spacing: -1px;
  }
}

.testimonials .card .testimonial-text {
  max-height: 6em;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, black 70%, transparent 100%);
}

.testimonials .card .testimonial-text.expanded {
  max-height: none;
  mask-image: none;
}

.testimonials .card .read-more-btn {
  margin-top: -5% !important;
  color: #093C70 !important;
}

.testimonials .card .read-more-btn:hover {
  color: #0c6afa !important;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  position: relative;
  background-image: url("../../assets/images/footer-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 60px 20px;
}

.contact-section h2 {
  letter-spacing: -1.5px;
  font-size: 40px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 110%;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-section h4 {
  letter-spacing: 2px;
  font-size: 20px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 120%;
  color: #fff;
  margin-bottom: 15px;
}

.contact-section p {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
}

.contact-section .btn-number {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 110%;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.contact-section .btn-text {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  line-height: 125%;
  font-size: 16px;
}

/* Hero CALL button (anchor) */
a.cta-btn {
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(135deg, #B38E3D 0%, #FDFAB7 47%, #B38E3D 100%);
  border-radius: 12px;
  padding: 10px 22px;
  text-decoration: none;
  color: #262E45;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease;
}


@media (max-width: 992px) {
  .contact-section {
    padding: 50px 15px;
    text-align: center;
  }

  .contact-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .contact-section h4 {
    font-size: 18px;
  }

  .contact-section .btn-number {
    font-size: 26px;
  }

  .contact-section .hero-btns {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-section .d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-section h2 {
    font-size: 26px;
    letter-spacing: -1px;
  }

  .contact-section h4 {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .contact-section p {
    font-size: 13px;
  }

  .contact-section .btn-number {
    font-size: 22px;
  }

  .contact-section form .form-floating label,
  .contact-section form input,
  .contact-section form select {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .contact-section .d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-section {
    padding: 30px 10px;
  }

  .contact-section h2 {
    font-size: 22px;
    line-height: 120%;
  }

  .contact-section h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .contact-section .hero-btns .cta-btn {
    width: 100%;
  }

  .contact-section .btn-number {
    font-size: 28px;
  }

  .contact-section .btn-text {
    font-size: 13px;
  }

  .contact-section h4 {
    letter-spacing: 5px;
  }

  .contact-section form button.btn {
    font-size: 15px;
    padding: 14px;
  }
}

#contact-section .credits a {
  color: #ffc013 !important;
  text-decoration: none;
}

#contact-section .credits a:hover {
  color: #fff !important;
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  min-height: 100vh;
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem !important;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Mail Error Section
--------------------------------------------------------------*/
#error-page {
  min-height: 100vh;
  /* background: radial-gradient(circle at top, #0c1f3f, #001933); */
  background-image: url("/assets/img/general/gallery-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
}

.error-page .error-content {
  max-width: 600px;
  /* background-color: rgba(255, 255, 255, 0.05); */
  padding: 60px 40px;
  /* border-radius: 20px; */
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); */
}

.error-page .error-icon {
  font-size: 70px;
  color: #ffd369;
}

.error-page h1 {
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
}

.error-page p {
  font-size: 1.05rem;
  color: #cfd8e3;
}

.error-page .btn-main {
  background-color: #000;
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
}

.error-page .btn-main:hover {
  background-color: #ffd369;
  color: #000;
  transform: translateY(-2px);
}

.error-page .contact-number {
  font-size: 1.1rem;
  color: #ffffff;
}

.error-page .contact-number a {
  color: #ffd369;
}

/*-------------------------------------------------------------- # Thank You Section --------------------------------------------------------------*/
#thank-you {
  min-height: 100vh;
  /* background: radial-gradient(circle at top, #0c1f3f, #001933); */
  background-image: url("/assets/img/general/gallery-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
}

.thank-you .thank-you-content {
  max-width: 600px;
  padding: 60px 40px;
}

.thank-you .thank-you-icon i {
  font-size: 70px;
  color: #ffd369;
}

.thank-you h1 {
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
}

.thank-you p {
  font-size: 1.05rem;
  color: #cfd8e3;
}

.thank-you .btn-main {
  background-color: #000000;
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
}

.thank-you .btn-main:hover {
  background-color: #ffd369;
  color: #000000;
  transform: translateY(-2px);
}

.thank-you .contact-number {
  font-size: 1.1rem;
  color: #ffffff;
}

.thank-you .contact-number a {
  color: #ffd369;
}

/* =========================================
   YACHTS CAROUSEL (migrated from main.css)
   Scoped to .section--yachts to avoid conflicts
========================================= */

.section--yachts {
  padding: 80px 0 72px;
}

/* Price group label (per slide) */
.section--yachts .yacht__group {
  display: inline-flex;
  align-items: center;
  width: fit-content;

  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(38, 46, 69, 0.06);
  border: 1px solid rgba(38, 46, 69, 0.14);

  color: #262e45;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 768px) {
  .section--yachts .yacht__group {
    margin: 0 0 12px;
    font-size: 11px;
    letter-spacing: 0.10em;
  }
}


/* Header */
.section--yachts .section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section--yachts .section__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: #262d45;
}

/* Carousel */
.section--yachts .carousel {
  width: 100%;
}

.section--yachts .yachts__track {
  display: flex;
  gap: 80px;
  padding: 0 10vw;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  cursor: grab;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.section--yachts .yachts__track::-webkit-scrollbar {
  display: none;
}

.section--yachts .yachts__track.is-dragging {
  cursor: grabbing;
}

/* Slide */
.section--yachts .yacht {
  min-width: 78vw;
  max-width: 1100px;
  scroll-snap-align: center;
}

/* Media grid */
.section--yachts .yacht__media {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 16px;
  align-items: stretch;
}

.section--yachts .yacht__image {
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  display: block;
  width: 100%;
}

.section--yachts .yacht__image--main {
  height: 420px;
  border-radius: 18px;
}

.section--yachts .yacht__thumbs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section--yachts .yacht__image--thumb {
  height: 200px;
  border-radius: 14px;
}

/* Footer */
.section--yachts .yacht__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 22px;
}

.section--yachts .yacht__text {
  max-width: 720px;
}

.section--yachts .yacht__title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #262d45;
}

.section--yachts .yacht__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #262d45;
}

.section--yachts .yacht__desc {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #5c6b80;
}

/* Button (scoped so it won't affect Bootstrap .btn) */
.section--yachts .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.section--yachts .btn--primary {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #B38E3D 0%, #FDFAB7 47%, #B38E3D 100%);
  color: #262E45;
  border-radius: 10px;
  padding: 18px 26px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .25);

  transition: transform .15s ease, filter .15s ease;
}

.section--yachts .btn--primary:hover {
  transform: translateY(-1px);
}

.section--yachts .btn__icon-img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* Indicators */
.section--yachts .carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.section--yachts .indicator {
  width: 56px;
  height: 3px;
  background: #e6e6e6;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease;
}

.section--yachts .indicator.is-active {
  background: #262d45;
}

/* Mobile */
@media (max-width: 768px) {
  .section--yachts {
    padding: 56px 0;
  }

  .section--yachts .yachts__track {
    gap: 24px;
    padding: 0 10vw;
  }

  .section--yachts .yacht {
    min-width: 85vw;
    max-width: 85vw;
  }

  .section--yachts .yacht__media {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section--yachts .yacht__image--main,
  .section--yachts .yacht__image--thumb {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .section--yachts .yacht__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .section--yachts .yacht__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 14px;
  }

  .section--yachts .yacht__title {
    font-size: 22px;
  }

  .section--yachts .yacht__subtitle {
    font-size: 15px;
  }

  .section--yachts .yacht__desc {
    font-size: 18px;
    font-weight: 600;
  }

  .section--yachts .carousel__indicators {
    display: none;
  }
}

/* =========================
   TRUSTED BY (PRO + RESPONSIVE)
========================= */

.trusted-by {
  padding: 72px 0 50px;
  background: #fff;
}

.trusted-by-header {
  text-align: center;
  margin-bottom: 18px;
}

.trusted-title {
  letter-spacing: 10px;
  font-weight: 600;
  color: #0b0b0b;
  font-size: 22px;
  font-family: "Montserrat";
  margin: 0;
}

/* Full width strip */
.trusted-strip-full {
  width: 100%;
  padding: 22px 0;
}

/* AUTO-FIT grid so it stays nice when you add more logos */
.trusted-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 220px));
  /* fixed-ish column width */
  justify-content: center;
  /* ✅ centers the entire grid, including last row */
  justify-items: center;
  /* ✅ centers items inside each cell */
  align-items: center;
  gap: 26px 34px;
}

.trusted-logo {
  width: 100%;
  height: 110px;
  /* same row height for all */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Consistent logo sizing (no more crazy big BlackRock) */
.trusted-logo__img {
  max-height: 72px;
  max-width: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Wide logos (BlackRock/Kick/Rainbet) get a slightly smaller height */
.trusted-logo__img[alt="BlackRock"],
.trusted-logo__img[alt="Kick"],
.trusted-logo__img[alt="Rainbet"] {
  max-height: 160px;
  max-width: 190px;
}

/* ===============================
   TRUSTED BY – DESKTOP ALIGNMENT ONLY
================================ */
@media (min-width: 992px) {
  .trusted-strip-inner {
    display: grid;
    grid-template-columns: repeat(6, auto);
    /* 6 logos */
    align-items: center;
    justify-items: center;
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .trusted-logo {
    height: 130px;
    /* uniform logo slot */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trusted-logo__img {
    max-height: 115px;
    /* visual consistency */
    max-width: 220px;
    width: auto;
    object-fit: contain;
  }
}

/* Mobile: clean 2-column layout */
@media (max-width: 767px) {
  .trusted-by {
    padding: 58px 0 36px;
  }

  .trusted-title {
    letter-spacing: 7px;
    font-size: 18px;
    margin-top: 10px;
  }

  .trusted-strip-full {
    padding: 18px 0;
  }

  .trusted-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 16px;
  }

  .trusted-logo {
    min-height: 78px;
  }

  .trusted-logo__img {
    max-height: 70px;
    /* balanced on mobile */
    max-width: 160px;
  }

  .trusted-logo__img[alt="BlackRock"],
  .trusted-logo__img[alt="Kick"],
  .trusted-logo__img[alt="Rainbet"] {
    max-height: 52px;
    /* wide logos smaller on mobile */
    max-width: 120px;
  }
}

/* =========================
   ACCEPTED PAYMENTS (CRYPTO) — CLEAN + READABLE
========================= */

.accepted-payments-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: fit-content;
  margin: 0 auto 30px;
  /* ✅ add more space before TRUSTED BY */
  text-align: center;
}

/* label */
.ap-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #262e43;
  opacity: 0.7;
  line-height: 1;
}

/* hide old dot if still exists somewhere */
.ap-dot {
  display: none !important;
}

/* crypto badge image */
.ap-logo {
  height: 74px;
  /* ✅ readable size */
  width: auto;
  display: block;

  border-radius: 14px;
  border: 1px solid rgba(3, 18, 61, 0.12);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
}

/* mobile */
@media (max-width: 767px) {
  .ap-logo {
    height: 54px;
    border-radius: 12px;
  }

  .accepted-payments-inline {
    margin: 0 auto 22px;
  }
}

/* =============================================
   IMPROVED FORM & RECAPTCHA STYLING
============================================= */

/* Better reCAPTCHA centering and spacing */
.contact-form .g-recaptcha {
  display: inline-block;
  margin: 0 auto;
}

/* Ensure proper spacing for form elements */
.contact-form .col-12 {
  margin-bottom: 0;
}

.contact-form .form-floating {
  margin-bottom: 0;
  height: 100%;
}

/* Make phone field same height as reCAPTCHA */
#contactFormHero .form-floating,
#contactFormHero .form-control {
  height: 78px;
}

#contactFormHero .form-floating .form-control {
  height: 100%;
  padding-top: 1.625rem;
}

#contactFormHero .form-floating label {
  padding-top: 1rem;
}

/* reCAPTCHA container alignment */
.contact-form .col-md-6.d-flex {
  min-height: 78px;
}

/* Make sure reCAPTCHA is properly centered on mobile */
@media (max-width: 767px) {
  .contact-form .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center center;
  }

  .contact-form .col-12.d-flex.justify-content-center,
  .contact-form .col-md-6.d-flex {
    padding: 0.5rem 0;
  }

  /* Reset height on mobile so fields stack nicely */
  #contactFormHero .form-floating,
  #contactFormHero .form-control {
    height: 58px;
  }

  #contactFormHero .form-floating .form-control {
    padding-top: 1.625rem;
  }

  #contactFormHero .form-floating label {
    padding-top: 0.75rem;
  }
}



/* Better form field heights and spacing */
.contact-form .form-control,
.contact-form .form-select {
  min-height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #c29e5f;
  background: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(194, 158, 95, 0.15);
}

/* Better button styling */
.contact-form button[type="submit"] {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #B38E3D 0%, #FDFAB7 47%, #B38E3D 100%);
  color: #262E45;
  border-radius: 10px;
  padding: 18px 26px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .25);

  transition: transform .15s ease, filter .15s ease;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 158, 95, 0.4);
}

/* Improve form field labels */
.contact-form .form-floating>label {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.contact-form .form-floating>.form-control:focus~label,
.contact-form .form-floating>.form-control:not(:placeholder-shown)~label,
.contact-form .form-floating>.form-select~label {
  color: #c29e5f;
  font-weight: 600;
}

/* Hero form specific improvements */
#hero .contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer form improvements */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive improvements */
@media (max-width: 991px) {

  #hero .contact-form,
  .contact-form-wrapper {
    padding: 1.5rem 1rem;
  }
}

/* AGGRESSIVE MOBILE FIX FOR PHONE FIELD */
/* Add this to your main.css or in a <style> tag in <head> */

@media (max-width: 767px) {

  /* Target the phone field container specifically */
  #contactFormHero .col-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    min-width: 100% !important;
  }

  /* Also target col-md-6 to ensure it's full width on mobile */
  #contactFormHero .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    min-width: 100% !important;
  }

  /* Force all divs in the form to be full width */
  #contactFormHero>div {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* Ensure the form-floating wrapper is full width */
  #contactFormHero .form-floating {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Ensure the input itself is full width */
  #contactFormHero .form-control {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Target specifically the phone input by name attribute */
  #contactFormHero input[name="phone"],
  #contactFormHero input[type="tel"] {
    width: 100% !important;
    max-width: 100% !important;
  }


}

/* ALTERNATIVE: If the above doesn't work, this is the nuclear option */
@media (max-width: 767px) {

  /* Remove all Bootstrap column classes on mobile */
  #contactFormHero [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

/* Better gap between form elements */
.contact-form.row {
  row-gap: 1rem;
}

/* Make sure the reCAPTCHA container doesn't overflow */
.contact-form .col-12.d-flex,
.contact-form .col-md-6.d-flex {
  overflow: visible;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Additional styling for small screens */
@media (max-width: 360px) {
  .contact-form .g-recaptcha {
    transform: scale(0.77);
  }
}

/* =============================================
   HERO FORM - PROFESSIONAL COMPACT STYLING
============================================= */

/* All hero form fields get compact professional height */
#contactFormHero .form-floating {
  height: 56px;
  min-height: 56px;
}

#contactFormHero .form-control,
#contactFormHero .form-select {
  height: 56px !important;
  min-height: 56px !important;
  padding: 1.2rem 1rem 0.4rem 1rem !important;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

#contactFormHero .form-floating label {
  padding: 1rem 1rem !important;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

#contactFormHero .form-floating .form-control:focus~label,
#contactFormHero .form-floating .form-control:not(:placeholder-shown)~label {
  padding: 0.25rem 1rem !important;
  font-size: 0.8rem !important;
  color: #c29e5f;
  font-weight: 600;
  transform: translateY(0);
}

/* Mobile responsiveness for hero form */
@media (max-width: 767px) {
  #contactFormHero .form-floating {
    height: 56px;
  }

  #contactFormHero .form-control {
    height: 56px !important;
    padding: 1.2rem 1rem 0.4rem 1rem !important;
  }

  #contactFormHero .form-floating label {
    padding: 1rem 1rem !important;
  }
}

/* Ensure proper focus outline */
#contactFormHero .form-control:focus {
  border-color: #c29e5f;
  background: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(194, 158, 95, 0.15);
  outline: none;
}


/* =========================
   YACHT MODAL
   ========================= */

body.is-modal-open {
  overflow: hidden;
  height: 100%;
}


.yacht-modal__card {
  max-height: 90vh;
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 60px auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}









.yacht-modal__title {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: #0f1b33;
}

.yacht-modal__price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  color: #0f1b33;
  white-space: nowrap;
}

.yacht-modal__price-label {
  opacity: 0.75;
  font-weight: 700;
}

.yacht-modal__subtitle {
  margin: 14px 0 10px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0f1b33;
}

.yacht-modal__desc {
  margin: 0 0 18px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: #55627a;
}

.yacht-modal__actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}


.yacht-modal__helper {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  color: #5b677c;
}

.yacht-modal__helper a {
  color: #0f1b33;
  font-weight: 800;
  text-decoration: none;
}

.yacht-modal__trusted {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 27, 51, 0.10);
}

.yacht-modal__trusted-kicker {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.26em;
  font-size: 12px;
  color: #6a768b;
  margin-bottom: 12px;
}

/* Trusted logos: normalize size */
.yacht-modal__trusted-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Make ALL logos visually consistent */
.yacht-modal__trusted-logos img {
  height: 30px;
  /* 👈 change to 28–34px as you like */
  width: auto;
  max-width: 120px;
  /* prevents super wide logos from dominating */
  object-fit: contain;
  opacity: 0.95;
}

/* Optional: for small circular logos (Pacers etc.) */
.yacht-modal__trusted-logos img.is-badge {
  height: 74px;
  max-width: 74px;
}

/* Mobile tweak */
@media (max-width: 560px) {
  .yacht-modal__trusted-logos img {
    height: 26px;
    max-width: 110px;
  }
}




/* =========================
   YACHT MODAL (override)
   Paste at the END of styles.css
========================= */

.yacht-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.yacht-modal.is-open {
  display: block;
}

.yacht-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 25, 0.55);
  backdrop-filter: blur(6px);
}

.yacht-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 40, 0.18);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.yacht-modal__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

/* LEFT */
.yacht-modal__gallery {
  padding: 26px 26px 22px 26px;
}

.yacht-modal__main {
  margin-top: 10px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.yacht-modal__thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.yacht-modal__thumb-btn {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 16px;
  outline: none;
}

.yacht-modal__thumb-btn img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.12);
}

.yacht-modal__thumb-btn.is-active img {
  outline: 3px solid rgba(199, 160, 74, 0.75);
  outline-offset: 2px;
}

/* RIGHT */
.yacht-modal__content {
  padding: 30px 32px;
  border-left: 1px solid rgba(16, 24, 40, 0.10);
}

.yacht-modal__topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.yacht-modal__title {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: #0b1630;
}

.yacht-modal__price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(11, 22, 48, 0.75);
  font-weight: 600;
}

.yacht-modal__price-value {
  color: #0b1630;
  font-weight: 800;
}

.yacht-modal__subtitle {
  margin: 10px 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #0b1630;
}

.yacht-modal__desc {
  margin: 0 0 18px;
  color: rgba(11, 22, 48, 0.70);
  line-height: 1.6;
}

.yacht-modal__actions {
  margin-top: 14px;
}


.yacht-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: linear-gradient(135deg, #B38E3D 0%, #FDFAB7 47%, #B38E3D 100%);
  color: #262E45;
  text-decoration: none;

  height: 54px;
  padding: 0 34px;
  border-radius: 10px;

  font-weight: 900;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.yacht-modal__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.yacht-modal__cta:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.yacht-modal__helper {
  margin-top: 10px;
  font-weight: 600;
  color: rgba(11, 22, 48, 0.65);
}

.yacht-modal__helper a {
  color: #0b1630;
  font-weight: 800;
  text-decoration: none;
}

.yacht-modal__trusted {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 24, 40, 0.10);
}

.yacht-modal__trusted-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 800;
  color: rgba(11, 22, 48, 0.45);
  margin-bottom: 10px;
}

.yacht-modal__trusted-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.yacht-modal__trusted-logos img {
  height: 26px;
  width: auto;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 980px) {
  .yacht-modal__card {
    width: calc(100% - 24px);
    margin: 16px auto;
    max-height: calc(100dvh - 32px);
  }

  .yacht-modal__content {
    border-left: none;
    border-top: 1px solid rgba(16, 24, 40, 0.10);
  }

  .yacht-modal__main {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .yacht-modal__grid {
    display: flex;
    flex-direction: column;
  }

  .yacht-modal__gallery {
    flex-shrink: 0;
  }

  .yacht-modal__content {
    padding-bottom: 24px;
  }
}


@media (max-width: 560px) {
  .yacht-modal__main {
    height: 260px;
  }

  .yacht-modal__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .yacht-modal__thumb-btn img {
    height: 72px;
  }

  .yacht-modal__title {
    font-size: 28px;
  }
}


/* Duration / pricing rows (below trusted logos) */
.yacht-modal__durations {
  margin-top: 18px;
  border-top: 1px solid rgba(16, 24, 40, .10);
  padding-top: 14px;
  display: none;
}

.yacht-modal__durations.is-visible {
  display: block;
}

.yacht-modal__duration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(16, 24, 40, .10);
}

.yacht-modal__duration-left {
  font-weight: 900;
  font-size: 18px;
  color: #0b1630;
  min-width: 110px;
}

.yacht-modal__duration-mid {
  font-weight: 600;
  color: rgba(11, 22, 48, .72);
  font-size: 15px;
  flex: 1;
  text-align: right;
}

.yacht-modal__duration-price {
  font-weight: 900;
  color: #0b1630;
}

.yacht-modal__duration-right {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(218, 190, 116, .30);
  color: #0b1630;
  font-size: 14px;
  flex: 0 0 auto;
}

@media (max-width:520px) {
  .yacht-modal__duration-left {
    font-size: 16px;
    min-width: 96px;
  }

  .yacht-modal__duration-mid {
    font-size: 14px;
  }
}


.pros {
  padding: 96px 0;
  background: #eef4fb;
  overflow: hidden;
}

.pros-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(520px, 1fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
}

/* LEFT */
.pros-left {
  max-width: 660px;
}

.pros-kicker {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 19px;
  color: #262E45;
  margin: 0 0 14px;
}

.pros-title {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 3.3vw, 18px);
  line-height: 1.03;
  letter-spacing: -0.6px;
  color: #262E45;
  margin: 0 0 22px;
}

.pros-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}

.pros-li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 16px;
  color: #1f2937;
}

.pros-li::before {
  content: "✓";
  flex: 0 0 18px;
  height: 18px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  color: #111;
  background: linear-gradient(135deg, #B38E3D 0%, #FDFAB7 47%, #B38E3D 100%);
  box-shadow: 0 6px 16px rgba(202, 163, 67, 0.25);
}

/* CTA button */
.pros-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 22px;
  min-width: 320px;

  border-radius: 10px;
  text-decoration: none;

  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;

  color: #0b1628;
  background: linear-gradient(135deg, #B38E3D 0%, #FDFAB7 47%, #B38E3D 100%);
  box-shadow: 0 10px 26px rgba(181, 143, 53, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.pros-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* RIGHT (SINGLE IMAGE) */
.pros-right {
  display: flex;
  justify-content: flex-end;
}

.pros-media {
  width: min(620px, 100%);
  border-radius: 22px;
  overflow: hidden;
  background: #f4f4f4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 3;
}

.pros-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
  .pros-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .pros-right {
    justify-content: center;
  }

  .pros-media {
    aspect-ratio: 16 / 10;
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .pros {
    padding: 66px 0;
  }

  .pros-inner {
    width: min(1280px, calc(100% - 32px));
  }

  .pros-kicker,
  .pros-title {
    text-align: center;
  }

  .pros-li {
    font-size: 14px;
  }

  .pros-btn {
    width: 100%;
    min-width: 0;
    padding: 16px 16px;
  }

  .pros-media {
    border-radius: 18px;
    aspect-ratio: 4 / 3;
  }
}
