/*
Theme Name: Dolphin Boat Rentals
Version: 1.5
Description: Professionally structured WordPress theme
*/

/* ============================================================================
   FONT IMPORTS
   ========================================================================= */

@font-face {
  font-family: 'LT Superior';
  src: url('assets/fonts/LTSuperior-Black.woff2') format('woff2'),
       url('assets/fonts/LTSuperior-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LT Superior';
  src: url('assets/fonts/LTSuperior-Bold.woff2') format('woff2'),
       url('assets/fonts/LTSuperior-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LT Superior';
  src: url('assets/fonts/LTSuperior-SemiBold.woff2') format('woff2'),
       url('assets/fonts/LTSuperior-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LT Superior';
  src: url('assets/fonts/LTSuperior-Medium.woff2') format('woff2'),
       url('assets/fonts/LTSuperior-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LT Superior';
  src: url('assets/fonts/LTSuperior-Regular.woff2') format('woff2'),
       url('assets/fonts/LTSuperior-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LT Superior';
  src: url('assets/fonts/LTSuperior-Light.woff2') format('woff2'),
       url('assets/fonts/LTSuperior-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ============================================================================
   CSS VARIABLES
   ========================================================================= */

:root {
  /* Colors */
  --color-footer-bg: #077295;
  --color-text: #201D19;
  --color-grey: #6E6D6D;
  --color-bg-main: #E9E3DD;
  --color-bg-darker: #EEEBE6;
  --color-border: #DBDAD7;
  --color-dark: #1D1E27;
  --color-black: #000000;
  --color-whatsapp: #22C35D;
  --color-chat-bg: #E6E4E0;
  --color-light-accent: #E3EDE7;
  --color-white: #FFFFFF;
  
  /* Spacing */
  --container-max-width: 1440px;
  --container-padding: 40px;
  --container-padding-mobile: 20px;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;
}

/* ============================================================================
   RESET & BASE STYLES
   ========================================================================= */

*, *:before, *:after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'LT Superior', sans-serif;
  font-weight: 500;
  color: var(--color-text);
  background-color: var(--color-bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}
img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}
input, button, textarea, select {
  font: inherit;
}
*:focus {
  outline: none;
}
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================================================
   ANIMATIONS
   ========================================================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================================
   BUTTONS
   ========================================================================= */

.btn, .button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-text);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-family: 'LT Superior', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  text-decoration: none;
}

.btn:hover, .button:hover {
  background: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary, .button-primary {
  background: var(--color-text);
  color: var(--color-white)!important;
}

.btn-outline {
  background: var(--color-bg-darker);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-bg-darker);
  border-color: var(--color-border);
}

.btn-whatsapp,
.btn-book-online {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 50px;
  font-family: 'LT Superior', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border: none;
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 195, 93, 0.3);
}

.btn-whatsapp img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.btn-book-online {
  background: var(--color-white);
  color: var(--color-dark);
  border: 2px solid var(--color-white);
}

.btn-book-online:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Button Responsive */
@media (max-width: 768px) {
  .btn, .button {
    padding: 14px 32px;
    font-size: 11px;
  }
}

/* ============================================================================
   HEADER SECTION
   ========================================================================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  position: fixed;
  background: var(--color-footer-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

body:not(.home) .site-header {
  position: relative;
  background: var(--color-footer-bg);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 40px;
  transition: var(--transition-smooth);
}
.site-header.scrolled .header-content {
  padding: 8px 0;
}

/* Logo */
.logo {
  flex-shrink: 0;
  z-index: 1001;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition-fast);
}

/* Main Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
  list-style: none;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.scrolled .nav-menu a,
body:not(.home) .nav-menu a {
  color: var(--color-white);
}

.nav-menu a:hover,
.nav-menu a.current {
  opacity: 0.7;
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  z-index: 1001;
}

.book-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-family: 'LT Superior', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.book-btn svg {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.main-nav.active {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-footer-bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 40px;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
  transform-origin: center;
}

.scrolled .mobile-menu-toggle span,
body:not(.home) .mobile-menu-toggle span {
  background: var(--color-white);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Book Button */
.mobile-book-btn {
  display: none;
}

.price-note {
  color: var(--color-grey) !important;
  font-size: 11px !important;
  margin-top: 2px;
  max-width: 25ch;
  line-height: 1.2;
}

/* Header Responsive - Desktop */
@media (max-width: 1200px) {
  .header-content {
    gap: 20px;
  }
  
  .nav-menu {
    gap: 24px;
  }
  
  .nav-menu a {
    font-size: 11px;
  }
}

/* Header Responsive - Tablet */
@media (max-width: 1024px) {
  .logo img {
    height: 50px;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-footer-bg);
    padding: 120px 40px 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 400px;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    display: block;
    padding: 20px 0;
    color: var(--color-white) !important;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
  }
  
  .mobile-book-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-family: 'LT Superior', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition-fast);
  }
  
  .mobile-book-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
  }

  .nav-menu li {
    animation: slideInRight 0.4s ease forwards;
    opacity: 0;
  }
  
  .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
  .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
  .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
  .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
  
  .mobile-book-btn {
    animation: fadeInUp 0.4s ease 0.35s forwards;
    opacity: 0;
  }
}

/* ============================================================================
   FOOTER SECTION
   ========================================================================= */

.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-white);
}

.weather-bar {
  background: rgba(0, 0, 0, 0.15);
  padding: 0;
  text-align: center;
}

.footer-main {
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-col p {
  line-height: 1.8;
  opacity: 0.9;
  margin-top: 16px;
  max-width: 35ch;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.footer-col ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-col ul li a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 0.7;
}

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

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-menu a:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  font-size: 14px;
  opacity: 0.8;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer-bottom > p + p {
  text-align: right;
}
.footer-bottom a {
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
.footer-bottom a:hover {
  opacity: .7;
}
/* Footer Responsive - Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--container-padding-mobile);
  }
  
  .footer-main {
    padding: 40px 0 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-col h4 {
    font-size: 12px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .footer-bottom > p + p {
    text-align: center;
  }
}


/* ============================================================================
   GLOBAL PAGE & TYPOGRAPHY SYSTEM
   ========================================================================= */

/* 1. Layout Container Extensions */
.container-narrow {
  max-width: 900px; /* Slightly wider for general pages, still optimal for reading */
  margin: 0 auto;
}

/* 2. Global Page Header 
   This ensures every page has a clear title below the navigation */
.page-header {
  background: linear-gradient(135deg, #077295 0%, #055A75 100%);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.page-header .page-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--color-white);
}

.page-header .page-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.page-breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 1rem;
}

.page-breadcrumb a {
  color: var(--color-white);
  text-decoration: none;
}

.page-header-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 3. Main Content Area Spacing */
.main-content-area {
  padding: 80px 0;
  background-color: var(--color-bg-main);
  min-height: 50vh;
}

/* 4. Entry Content Typography (The "the_content" styles) */
.entry-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  font-weight: 400;
}

/* Headings within content */
.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
  color: var(--color-dark);
  margin: 2.5em 0 1em;
  line-height: 1.3;
  font-weight: 700;
}

.entry-content h2 { font-size: 32px; border-bottom: 1px solid var(--color-border); padding-bottom: 15px; }
.entry-content h3 { font-size: 24px; }
.entry-content h4 { font-size: 20px; text-transform: uppercase; letter-spacing: 1px; }

/* Paragraphs and Spacing */
.entry-content p {
  margin-bottom: 1.8em;
  opacity: 0.9;
}

/* Links within text */
.entry-content a:not(.btn) {
  color: var(--color-footer-bg);
  text-decoration: none;
  font-weight: 600;
  box-shadow: inset 0 -1px 0 0 var(--color-footer-bg); /* Elegant underline */
  transition: var(--transition-fast);
}

.entry-content a:not(.btn):hover {
  box-shadow: inset 0 -2px 0 0 var(--color-footer-bg);
  opacity: 0.8;
}

/* Lists Styling */
.entry-content ul, 
.entry-content ol {
  margin-bottom: 2em;
  padding-left: 1.5em;
}

.entry-content li {
  margin-bottom: 0.8em;
}

.entry-content ul li {
  list-style: none;
  position: relative;
}

.entry-content ul li::before {
  content: "";
  position: absolute;
  left: -1.5em;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: var(--color-footer-bg);
  border-radius: 50%;
}

/* Blockquotes (For testimonials or highlights) */
.entry-content blockquote {
  margin: 3em 0;
  padding: 20px 40px;
  border-left: 4px solid var(--color-footer-bg);
  background: var(--color-bg-darker);
  font-style: italic;
  font-size: 1.1em;
}

/* Images in content */
.entry-content img {
  border-radius: 12px;
  margin: 2em 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


/* ============================================================================
   BOOKING FORM SECTION
   ========================================================================= */

.booking-form-section {
  padding: 100px 0;
  background: var(--color-white);
  scroll-margin-top: 100px;
}

.booking-form-intro {
  text-align: center;
  margin-bottom: 60px;
}

.booking-form-intro .section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 15px;
}

.booking-form-intro .section-subtitle {
  font-size: 18px;
  color: var(--color-grey);
  line-height: 1.6;
}

.booking-form-wrapper {
  background: var(--color-bg-main);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
}

/* MotoPress Form Overrides */
.booking-form-wrapper .mpa-appointment-form {
  max-width: 100%;
}

.booking-form-wrapper .mpa-form-field {
  margin-bottom: 25px;
}

.booking-form-wrapper label {
  font-family: 'LT Superior', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--color-text);
  margin-bottom: 10px;
  display: block;
}

.booking-form-wrapper select,
.booking-form-wrapper input[type="text"],
.booking-form-wrapper input[type="email"],
.booking-form-wrapper input[type="tel"],
.booking-form-wrapper textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-family: 'LT Superior', sans-serif;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition-fast);
}

.booking-form-wrapper select:focus,
.booking-form-wrapper input:focus,
.booking-form-wrapper textarea:focus {
  outline: none;
  border-color: var(--color-footer-bg);
  box-shadow: 0 0 0 3px rgba(7, 114, 149, 0.1);
}

.booking-form-wrapper button[type="submit"],
.booking-form-wrapper .mpa-button {
  border: none;
  border-radius: 50px;
  font-family: 'LT Superior', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
  max-width: 300px;
}

.booking-form-wrapper button[type="submit"]:hover,
.booking-form-wrapper .mpa-button:hover {
  background: #055A75;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 114, 149, 0.3);
}

/* Enhanced MotoPress Form Styling */
.booking-form-section .dayContainer {
  padding-top: 16px;
}

.mpa-service-wrapper {
  margin-bottom: 1rem;
}
.mpa-service, .mpa-employee {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23201D19' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 20px center !important;
  padding-right: 50px !important;
  width: 100%;
}

.booking-form-section .mpa-input-wrapper,
.booking-form-section .mpa-required-tip {
  margin-bottom: 1.5em;
}

.booking-form-section .button-primary:hover,
.booking-form-section .button-secondary:hover {
  transform: none !important;
  box-shadow: none !important;
}

.booking-form-section .button-secondary.mpa-time-period-selected:hover {
  background-color: var(--color-footer-bg)!important;
  color: var(--color-white)!important;
}

.mpa-shortcode-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.appointment-form-shortcode .mpa-actions,
.appointment-form-shortcode .mpa-booking-step-payment .mpa-billing-details .mpa-billing-fields {
  margin-top: 0!important;
}
.appointment-form-shortcode .mpa-booking-step-period .mpa-time-wrapper .mpa-four-columns .mpa-time-period {
  min-width: 60px;
}
@media screen and (min-width: 992px) {
  .appointment-form-shortcode .mpa-booking-step-service-form {
    width: 100%!important;
  }
}

.mpa-order table {
  border: none !important;
}

.mpa-order td, 
.mpa-order th {
  padding: 10px 10px 10px 0 !important;
}

.mpa-order tbody tr {
  border-bottom: 1px solid #000 !important;
  text-align: left;
}

.mpa-order-total th {
  font-size: 16px !important;
  font-weight: 700 !important;
  padding-top: 10px !important;
  text-align: left;
}

.mpa-order-total .mpa-price {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--color-footer-bg) !important;
}

/* Terms checkbox - better spacing */
.mpa-terms-and-conditions-accept {
  margin: 10px 0 15px 0 !important;
}

.mpa-accept-terms {
  margin-right: 10px !important;
  accent-color: var(--color-footer-bg) !important;
}

.mpa-payment-gateway {
  padding: 4px 0 4px 0 !important;
}

.mpa-payment-gateway input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  margin-right: 8px !important;
  accent-color: var(--color-footer-bg) !important;
}

.mpa-payment-gateway-description {
  font-size: 0.8rem;
  padding-top: .4rem;
}

/* Deposit section - cleaner spacing */
#mpa-deposit-table {
  margin-bottom: 15px !important;
}

#mpa-deposit-table td,
#mpa-deposit-table th {
  padding: 12px 0 !important;
}

.mpa-deposit-title {
  font-size: 1.4rem;
}

.mpa-deposit-now .mpa-price {
  color: var(--color-footer-bg) !important;
  font-weight: 700 !important;
  padding-inline: 20px;
}

/* Buttons - better spacing */
.mpa-actions {
  gap: 15px !important;
  margin-top: 30px !important;
  padding-top: 25px !important;
}

.mpa-message {
  padding-bottom: 1rem;
}

/* ============================================================================
   BOOKING HELP CARDS
   ========================================================================= */

.booking-help {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.help-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px;
  background: var(--color-bg-main);
  border-radius: 15px;
  transition: var(--transition-fast);
}

.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.help-card img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  opacity: 0.7;
}

.help-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 5px;
}

.help-card p {
  font-size: 14px;
  color: var(--color-grey);
  margin: 0 0 10px;
  line-height: 1.5;
}

.help-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-footer-bg);
  text-decoration: none;
  transition: var(--transition-fast);
}

.help-card a:hover {
  color: #055A75;
  text-decoration: underline;
}

/* ============================================================================
   WHAT'S INCLUDED SECTION
   ========================================================================= */

.whats-included {
  padding: 100px 0;
  background: var(--color-bg-main);
}

.whats-included .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 60px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.included-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-white);
  border-radius: 15px;
  transition: var(--transition-fast);
}

.included-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.included-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 25px;
  opacity: 0.7;
  margin-inline: auto;
}

.included-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
}

.included-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-grey);
  margin: 0;
}

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

  @media (max-width: 1024px) {
  .page-header {
    padding: 80px 0 60px;
  }
  
  .booking-form-wrapper {
    padding: 40px 30px;
  }
  
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .booking-help {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
  
  .main-content-area {
    padding: 50px 0;
  }
  
  .entry-content {
    font-size: 16px;
  }
  
  .entry-content h2 { font-size: 26px; }
  .entry-content h3 { font-size: 22px; }

  .booking-form-section,
  .whats-included {
    padding: 60px 0;
  }
  
  .booking-form-intro .section-title,
  .whats-included .section-title {
    font-size: 32px;
  }
  
  .booking-form-wrapper {
    padding: 30px 20px;
  }
  
  .included-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .help-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .mpa-actions {
    flex-direction: column !important;
  }
  
  .mpa-button-back,
  .mpa-button-next {
    width: 100% !important;
    margin-bottom: 1rem;
  }

  .appointment-form-shortcode .mpa-booking-step-period .mpa-time-wrapper .mpa-time-period {
    padding: 6px 1px!important;
  }

  .booking-form-wrapper button[type="submit"],
  .booking-form-wrapper .mpa-button {
    max-width: unset;
  }

  .appointment-form-shortcode .mpa-booking-step-period .flatpickr-calendar {
    width: 100%;
  }
}