/*
Theme Name: ADVENTURA OFICIAL 
Theme URI: https://github.com/58424/ADVENTURA
Author: Andre Gutierrez
Author URI: https://github.com/58424
Description: A premium, modern WordPress theme for ADVENTURA projects. Built with performance and SEO in mind.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adventura
Tags: one-column, custom-colors, custom-menu, featured-images, full-width-template, rtl-language-support, sticky-post, theme-options, translation-ready
*/

/* =========================================
   ACCESSIBILITY
   ========================================= */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}


/* =========================================
   VARIABLES
   ========================================= */
:root {
    --caribbean-teal: #0082a6;
    --caribbean-cyan: #00aeef;
    --tropical-sand: #fdfbf0;
    --tropical-lime: #add136;
    --deep-ocean: #11232b;
    --white: #ffffff;
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    /*line-height: 1.6;*/
    color: #333;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* =========================================
   HEADER — Single Row (Desktop)
   ========================================= */
.site-header-single {
    background: rgba(255, 255, 255, 0.45);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: absolute;
    /* Absolute to overlap the hero background */
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    max-width: 86px;
    height: auto;
}

/* Desktop Navigation */
.main-navigation-inline {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-inline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
    align-items: center;
}

.menu-inline li a {
    text-decoration: none;
    color: var(--deep-ocean);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}

.menu-inline li a:hover {
    color: var(--caribbean-teal);
}

/* Header Right Group */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.site-badges-header {
    display: flex;
    gap: 8px;
    align-items: center;
}

.badge-mini {
    height: 50px;
    width: auto;
}

/* Book Now (Nav) */
.btn-book-nav {
    display: inline-block;
    background: #ffd400;
    padding: 10px 20px;
    border-radius: 50px;
    color: #11232b;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-book-nav:hover {
    background: var(--deep-ocean);
    color: #fff;
}

/* Hamburger — hidden on desktop */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--deep-ocean);
    border-radius: 3px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    /* Modern browsers support dynamic viewport height */
    background: var(--deep-ocean);
    padding: 30px 25px 80px;
    /* Extra bottom padding */
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-close-btn {
    align-self: flex-end;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

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

.mobile-menu-list li a {
    display: block;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list li a:hover {
    color: #ffd400;
}

/* Mobile Menu Book Now Button - Matched to Hero Style */
.btn-book-mobile {
    display: block;
    padding: 16px 35px;
    background-color: #ffd400;
    color: #11232b;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-align: center;
    margin: 10px 0;
}

.btn-book-mobile:hover {
    transform: translateY(-3px);
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .btn-book-mobile {
        padding: 12px 5px !important;
        font-size: 0.82rem !important;
    }
}

.mobile-menu-badges {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* =========================================
   HERO — Two Column with Activity Circles
   ========================================= */
.rentals-hero-simple {
    position: relative;
    background-image: url('assets/images/ac-hero-banner.webp');
    background-size: cover;
    background-position: center;
    padding: 0 0 50px 0;
    /* Content pushed down via flex, keeping ~3rem at bottom */
    text-align: left;
    color: #fff;
    overflow: hidden;
    min-height: 620px;
    /* Slightly taller for better photo visibility */
    display: flex;
    align-items: flex-end;
}

.rentals-hero-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 45, 64, 0.4) 0%, rgba(0, 130, 166, 0.15) 100%);
    z-index: 1;
}

.yellow-intense {
    color: #ffd400;
    font-weight: 800;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.3;
}

.btn-book-hero {
    display: inline-block;
    padding: 16px 35px;
    background-color: #ffd400;
    color: #11232b;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-align: center;
}

.btn-book-hero:hover {
    transform: translateY(-3px);
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Mobile Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    display: none;
}

.hero-slider-track {
    display: flex;
    width: 900%;
    height: 100%;
    animation: heroSliderHorizontal 36s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}

.hero-slide {
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

@keyframes heroSliderHorizontal {

    0%,
    10% {
        transform: translateX(0);
    }

    11.11%,
    21.11% {
        transform: translateX(-11.111%);
    }

    22.22%,
    32.22% {
        transform: translateX(-22.222%);
    }

    33.33%,
    43.33% {
        transform: translateX(-33.333%);
    }

    44.44%,
    54.44% {
        transform: translateX(-44.444%);
    }

    55.55%,
    65.55% {
        transform: translateX(-55.555%);
    }

    66.66%,
    76.66% {
        transform: translateX(-66.666%);
    }

    77.77%,
    87.77% {
        transform: translateX(-77.777%);
    }

    88.88%,
    100% {
        transform: translateX(-88.888%);
    }
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    /* Slightly wider for modern feel */
    margin: 0 auto;
    padding: 0 40px;
}

.hero-text {
    flex: 1;
    max-width: 850px;
    /* Allow text to breathe */
    text-align: left;
}

.rentals-hero-simple h1 {
    font-size: 5rem;
    /* Even bigger h1 per premium design */
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: -3px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 0.95;
    text-align: left;
}

.rentals-hero-simple h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Centered Modifier for Service Pages */
.rentals-hero-simple.hero-centered {
    text-align: center;
    align-items: center;
    /* Center vertically */
    padding: 100px 0;
}

.hero-centered .hero-grid {
    justify-content: center;
}

.hero-centered .hero-text {
    text-align: center;
    margin: 0 auto;
}

.hero-centered h1,
.hero-centered h2,
.hero-centered .hero-sub {
    text-align: center;
}

.hero-centered .hero-btns {
    justify-content: center;
}

/* =========================================
   FEATURE BANNER SYSTEM
   ========================================= */
.main-feature-banner {
    width: 100%;
}

.main-feature-banner a {
    text-decoration: none;
}

.banner-top-strip {
    background-color: #002d40;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    border-bottom: none;
    /* Removed potential 'ugly' line */
}

.banner-top-strip p {
    margin: 0;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.banner-categories {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.banner-categories a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    /* Reduced from 35px 20px */
    color: #fff;
    text-decoration: none;
    gap: 12px;
    /* Reduced from 15px */
    transition: all 0.3s;
    border: none;
    outline: none;
    text-align: left;
    /* Text remains left-aligned beside icon */
}

.category-box {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure content is centered inside the link */
    gap: 18px;
    width: 100%;
}

.banner-categories a:hover {
    transform: translateY(-2px);
    z-index: 5;
}

.cat-icon {
    flex-shrink: 0;
    width: 60px;
    /* Reduced from 65px */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-icon img {
    width: 48px;
    /* Reduced from 55px */
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cat-info h3 {
    margin: 0;
    font-size: 1.15rem;
    /* Reduced from 1.35rem */
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: left;
}

.cat-info p {
    margin: 3px 0 0;
    font-size: 0.75rem;
    /* Reduced from 0.8rem */
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.2;
    text-align: left;
}

/* Category Colors */
.cat-kayaks {
    background-color: #f26522;
}

.cat-bikes {
    background-color: #7ac143;
}

.cat-paddle {
    background-color: #003e7e;
}

.cat-snorkel {
    background-color: #008ebc;
}

.cat-umbrella {
    background-color: #00a498;
}

.cat-seascooter {
    background-color: #A01A7D;
}

.banner-bottom-strip {
    background-color: #003d52;
    color: #fff;
    padding: 15px 0;
    font-size: 0.95rem;
}

.inner-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-slogan {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #a0d8e1;
    font-size: 1.1rem;
}

.benefit-items {
    display: flex;
    gap: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .banner-categories {
        flex-wrap: wrap;
    }

    .banner-categories a {
        flex: 0 0 50%;
    }

    .banner-categories a:last-child {
        flex: 0 0 100%;
    }
}

@media (max-width: 600px) {
    .banner-categories a {
        flex: 0 0 100%;
        padding: 20px;
    }

    .inner-bottom {
        flex-direction: column;
        text-align: center;
    }

    .benefit-items {
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================
   RENTAL SECTIONS
   ========================================= */
.rental-section {
    padding: 70px 0;
    border-bottom: 1px solid #eee;
}

.rental-section--alt {
    background-color: var(--white);
}

.rental-container {
    display: flex;
    gap: 45px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rental-image {
    flex: 0 0 360px;
}

.rental-image img {
    border-radius: 10px;
    width: 100%;
}

.rental-content {
    flex: 1;
    text-align: left;
}

.rental-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--deep-ocean);
    margin-bottom: 12px;
}

.rental-desc p {
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

.sub-section-title {
    margin-top: 20px;
    font-weight: 800;
    color: var(--deep-ocean);
}

/* Price List */
.price-header {
    font-weight: 800;
    color: #FB5012 !important;
    margin: 18px 0 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(251, 80, 18, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.price-title {
    font-weight: 600;
    color: var(--deep-ocean);
}

.price-value {
    font-weight: 800;
    color: #FB5012;
}

.rental-specs em {
    display: block;
    margin: 12px 0;
    color: #666;
    font-size: 0.9rem;
}

.specs-bullet-list {
    margin: 18px 0;
    list-style: disc;
    padding-left: 20px;
}

.specs-bullet-list li {
    margin-bottom: 6px;
    color: #444;
}

.rental-features {
    margin-top: 15px;
    text-align: left;
}

.rental-features h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--deep-ocean);
    margin-bottom: 8px;
    text-align: left;
}

.rental-features ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.rental-features li {
    margin-bottom: 5px;
    text-align: left;
}

.rental-cta {
    margin-top: 25px;
}

/* Book Now Button (sections) */
.btn-book {
    display: inline-block;
    padding: 14px 40px;
    background-color: #ffd400;
    color: #11232b;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-book:hover {
    background-color: var(--deep-ocean);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================
   GOT QUESTIONS BANNER
   ========================================= */
.got-questions-banner {
    background: var(--deep-ocean);
    color: #fff;
    padding: 80px 0;
}

.got-questions-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-circle {
    background: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-circle img {
    width: 100%;
}

.questions-content h2 {
    font-size: 2.8rem;
    color: #ffd100;
    font-weight: 800;
    margin-bottom: 8px;
}

.questions-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.questions-content p {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

/* =========================================
   FOOTER — Beach Background Style
   ========================================= */
#colophon,
.site-footer {
    background: none;
    margin: 0;
    padding: 0;
    border: none;
}

html {
    background-color: #fff;
}

.footer-beach {
    position: relative;
    background-image: url('https://adventuracayman.com/wp-content/uploads/2026/03/Grand-Cayman-Seven-Mile-Beach-Adventura-Cayman_11zon.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0 40px;
    text-align: center;
    color: #fff;
}

.footer-beach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 174, 239, 0.7);
}

.footer-beach-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo-color img {
    max-width: 180px;
    margin-bottom: 10px;
}

.footer-headline {
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 10px;
}

.footer-contact-line {
    font-size: 1.1rem;
    margin: 2px 0;
}

.footer-contact-line a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-contact-line a:hover {
    opacity: 0.8;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-circle {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.social-circle:hover {
    transform: scale(1.1);
}

.social-circle img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.footer-legal {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 15px;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}


/* =========================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ========================================= */
@media (max-width: 1024px) {
    .rental-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .rental-image {
        flex: none;
        width: 100%;
        max-width: 450px;
    }

    .rentals-hero-simple h1 {
        font-size: 2.8rem;
    }

    .hero-bg-slider {
        display: block;
        /* Show slider on tablet/mobile */
    }

    .hero-circles {
        width: 300px;
        height: 260px;
    }

    .circle-1 {
        width: 150px;
        height: 150px;
    }

    .circle-2 {
        width: 120px;
        height: 120px;
    }

    .circle-3 {
        width: 130px;
        height: 130px;
    }

    .site-badges-header {
        display: none;
    }

    .got-questions-inner {
        flex-direction: column;
        text-align: center;
    }

    .logo-circle {
        width: 140px;
        height: 140px;
    }

    /* Refined Tablet/Mobile Categories */
    .banner-categories {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .banner-categories a {
        flex: 0 0 50%;
        /* STRICT 2x2 grid */
        max-width: 50%;
        /* Force wrap */
        padding: 25px 12px;
        text-align: left;
        border: 0.5px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
    }

    .category-box {
        flex-direction: row !important;
        gap: 15px;
        /* Slight increase for clarity */
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }

    .cat-icon {
        width: 50px;
        /* FIXED WIDTH FOR ALIGNMENT */
        height: 50px;
        margin: 0;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cat-icon img {
        max-width: 40px;
        max-height: 40px;
    }

    .cat-info {
        text-align: left;
        width: calc(100% - 65px);
        /* Ensure text stays within bounds */
    }

    .cat-info h3 {
        font-size: 1rem;
        margin: 0;
        line-height: 1.1;
    }

    .cat-info p {
        font-size: 0.65rem;
        margin-top: 2px;
        line-height: 1.1;
        opacity: 0.9;
    }
}

/* =========================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

    /* Force all lists left-aligned on mobile */
    ul,
    ol,
    li,
    .rental-features,
    .rental-features ul,
    .rental-features li,
    .specs-bullet-list,
    .specs-bullet-list li,
    .rental-content,
    .rental-desc,
    .rental-content h2,
    .rental-cta {
        text-align: left !important;
    }

    /* Header: transparent over hero */
    .site-header-single {
        background: transparent;
        box-shadow: none;
        position: absolute;
        width: 100%;
        z-index: 1000;
    }

    .main-navigation-inline {
        display: none;
    }

    .header-right .site-badges-header {
        display: flex;
    }

    .hamburger-btn {
        display: flex;
        order: 3;
        background: transparent !important;
        border: none !important;
        padding: 5px !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .hamburger-btn span {
        background: var(--deep-ocean);
        width: 28px;
        height: 3px;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .header-right .btn-book-nav {
        display: none;
    }

    .site-logo {
        order: 1;
    }

    .header-content-row {
        gap: 10px;
    }

    .site-logo img {
        max-width: 65px;
    }

    .badge-mini {
        height: 42px;
    }

    /* Hero: tall, text at bottom */
    .rentals-hero-simple {
        padding: 0 0 40px 0;
        /* Pushed to bottom on mobile */
        min-height: 85vh;
        /* Taller on mobile to show more of the photo */
        display: flex;
        align-items: flex-end;
        background-image: none;
    }

    .rentals-hero-simple::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.5) 100%);
    }

    .hero-bg-slider {
        display: block;
    }

    .hero-grid {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 5rem;
        padding-top: 40px;
        width: 100%;
    }

    .hero-text {
        max-width: 100%;
        width: 100%;
    }

    .rentals-hero-simple h1 {
        font-size: 3.5rem;
        /* Reduced from 4rem for better fit */
        letter-spacing: -1px;
        white-space: normal;
        text-align: left;
    }

    .rentals-hero-simple h2 {
        font-size: 1.5rem;
        /* Increased from 1.35rem */
    }


    .hero-circles {
        display: none !important;
    }

    .banner-top-strip p {
        font-size: 0.75rem;
        /* Reduced from 1.1rem */
        letter-spacing: 1px;
        /* Reduced from 3px */
    }

    .main-slogan {
        font-size: 0.8rem;
        /* Reduced for single line */
        display: block;
    }

    .cat-info p {
        display: block;
        /* Ensure it shows up on mobile */
    }


    /* Rental Sections */
    .rentals-main {
        padding-top: 0;
        margin-top: 0;
    }

    .rental-section:first-child {
        padding-top: 30px;
    }

    .rental-section {
        padding: 40px 0;
    }

    .rental-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 0 15px;
    }

    .rental-content {
        width: 100%;
        text-align: left;
    }

    .rental-image {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .rental-content h2 {
        font-size: 1.4rem;
    }

    .price-item {
        font-size: 0.88rem;
    }

    .btn-book {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    /* Got Questions */
    .got-questions-banner {
        padding: 50px 0;
    }

    .got-questions-inner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
        padding: 15px;
    }

    .questions-content h2 {
        font-size: 2rem;
    }

    .questions-content h3 {
        font-size: 1.1rem;
    }

    /* Footer */
    .follow-us-section {
        padding: 45px 0;
    }

    .follow-us-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .social-btns-premium {
        flex-direction: column;
        align-items: center;
    }

    .btn-social {
        width: 100%;
        max-width: 260px;
        text-align: center;
        justify-content: center;
        display: block;
    }

    .footer-aquatic {
        padding: 40px 0 25px;
    }

    .footer-nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-contact-bar {
        flex-direction: column;
        gap: 8px;
    }

    .dot-sep {
        display: none;
    }

    .footer-legal-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-logo-main img {
        max-width: 160px;
    }
}

/* =========================================
   RESPONSIVE — SMALL PHONES (max-width: 480px)
   ========================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }


    .rental-content h2 {
        font-size: 1.2rem;
    }

    .mobile-menu-content {
        width: 100%;
    }

    .questions-content h2 {
        font-size: 1.6rem;
    }
}

/* =========================================
   REVIEW RECORD BANNER
   ========================================= */
.review-record-banner {
    background-color: #dcf5ff;
    padding: 30px 0;
    border-bottom: 3px solid #add136;
}

.review-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.review-text-col {
    flex: 2;
}

.review-text-col h2 {
    color: #003e7e;
    font-size: 1.7rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.review-badge-col {
    flex-shrink: 0;
}

/* Mock TA Badge */
.mock-tripadvisor-badge {
    background: #fff;
    border: 1px solid #c8e6c9;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-width: 250px;
}

.ta-logo {
    height: 20px;
    margin-bottom: 10px;
}

.ta-body h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #000;
    font-weight: 800;
    text-decoration: underline;
}

.ta-rating-label {
    font-size: 0.75rem;
    color: #444;
    margin-bottom: 4px;
}

.ta-dots-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ta-dots {
    display: flex;
    gap: 3px;
}

.ta-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #00af87;
    display: inline-block;
}

.ta-review-count {
    font-size: 0.8rem;
    color: #444;
    font-weight: 600;
}

.ta-ranking {
    font-size: 0.7rem;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

.ta-badge-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ta-badge-link:hover .mock-tripadvisor-badge {
    border-color: #00af87;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .review-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .review-text-col h2 {
        text-align: center;
        font-size: 1.6rem;
        white-space: normal;
        display: block;
        width: 100%;
    }
}

/* =========================================
   HOME CONTENT SECTIONS
   ========================================= */

/* Intro & Concierge */
.home-intro-section {
    padding: 80px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.intro-logo {
    display: block;
    height: 40px;
    margin: 0 0 20px 0;
}

.intro-content {
    text-align: left;
}

.intro-content h2 {
    color: #003e7e;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.concierge-box {
    background: #f9f9f9;
    padding: 25px;
    border-left: 5px solid #add136;
    border-radius: 4px;
}

.concierge-box h3 {
    color: #003e7e;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.concierge-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Map Feature */
.home-map-feature {
    padding: 80px 0;
    background: #f0faff;
}

.map-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.map-feature-image img {
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.map-feature-content {
    text-align: left;
}

.map-feature-content h2 {
    color: #003e7e;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.btn-modern {
    display: inline-block;
    padding: 15px 35px;
    background: #add136;
    color: #003e7e;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-modern:hover {
    background: #003e7e;
    color: #add136;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Top Picks */
.top-picks-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: left;
    margin-bottom: 60px;
}

.mini-logo {
    display: block;
    height: 30px;
    margin: 0 0 10px 0;
}

.section-title h2 {
    color: #003e7e;
    font-size: 2.8rem;
    font-weight: 900;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #add136;
    margin: 15px 0 0;
}

.top-picks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pick-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.pick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pick-image {
    height: 200px;
    overflow: hidden;
}

.pick-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pick-card:hover .pick-image img {
    transform: scale(1.1);
}

.pick-info {
    padding: 25px;
}

.pick-info h3 {
    color: #003e7e;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.pick-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #add136;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .top-picks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .intro-grid,
    .map-feature-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .intro-image,
    .map-feature-image {
        order: -1;
    }

    .intro-content h2,
    .map-feature-content h2,
    .section-title h2 {
        font-size: 2.2rem;
    }

    .top-picks-grid {
        grid-template-columns: 1fr;
    }

    .concierge-box {
        text-align: left;
    }
}

/* =========================================
   ALTERNATING FEATURES
   ========================================= */
.home-feature-alt {
    padding: 80px 0;
    background: #fff;
}

.home-feature-alt.bg-light {
    background: #f9f9f9;
}

.feature-grid-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-grid-alt.inverted {
    grid-template-columns: 1fr 1fr;
}

.feature-content-alt h2 {
    color: #003e7e;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.feature-content-alt p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.feature-image-alt img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-caption {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.img-caption h4 {
    color: #003e7e;
    margin-bottom: 10px;
    font-weight: 800;
}

.img-caption p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .feature-grid-alt {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    .feature-image-alt {
        order: -1;
    }

    .feature-content-alt h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .feature-content-alt p {
        font-size: 1rem;
    }
}

/* =========================================
   PERSONAL CONCIERGE SECTION
   ========================================= */
/* Personal Concierge Section */
.home-concierge-section {
    padding: 100px 0;
    background: #f0faff;
    border-top: 1px solid #e0f0f8;
    border-bottom: 1px solid #e0f0f8;
}

.concierge-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-concierge-section h2 {
    color: #003e7e;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.home-concierge-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.concierge-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .concierge-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }

    .concierge-image {
        order: -1;
    }

    .home-concierge-section h2 {
        font-size: 2rem;
    }

    .home-concierge-section p {
        font-size: 1.1rem;
    }
}

/* =========================================
   LEGAL PAGES & FOOTER REFINEMENTS
   ========================================= */
.legal-page-container {
    padding: 100px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page-container h1 {
    color: #003e7e;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.legal-page-container h2 {
    color: #003e7e;
    font-size: 1.5rem;
    margin: 40px 0 20px;
}

.legal-page-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.footer-bottom-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.footer-legal {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-align: left;
}

.footer-legal a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-right: 10px;
}

.footer-attribution {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
}

.footer-attribution a {
    color: #add136;
    text-decoration: none;
    font-weight: 700;
}

.footer-attribution a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page-container {
        padding: 60px 20px;
    }

    .legal-page-container h1 {
        font-size: 2.2rem;
    }
}

/* =========================================
   ADVENTURE MAP & PHOTO GALLERY PAGES
   ========================================= */

/* Common Hero */
.page-hero {
    padding: 120px 0;
    text-align: left;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 62, 126, 0.9), rgba(173, 209, 54, 0.4));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Adventure Map */
.map-hero {
    background-image: url('https://adventuracayman.com/wp-content/uploads/2018/02/gallery.jpg');
}

.map-content-section {
    padding: 80px 0;
}

.map-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.map-text {
    flex: 1;
}

.map-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.map-image-container {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.map-image-container:hover {
    transform: translateY(-10px);
}

.map-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Photo Gallery */
.gallery-hero {
    background-image: url('https://adventuracayman.com/wp-content/uploads/2018/02/gallery.jpg');
}

.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 62, 126, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

@media (max-width: 992px) {
    .map-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }

    .page-hero {
        padding: 140px 20px 80px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}

/* =========================================
   CONTACT US PAGE
   ========================================= */
.contact-hero {
    background-image: url('https://adventuracayman.com/wp-content/uploads/2018/02/gallery.jpg');
}

.contact-section {
    padding: 100px 0;
    background: #f9fbfd;
}

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-col {
    flex: 1;
}

.contact-form-col {
    flex: 1.2;
}

/* Contact Info Card */
.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 62, 126, 0.05);
    margin-bottom: 30px;
}

.contact-card h2 {
    color: #003e7e;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}

.info-list {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(173, 209, 54, 0.1);
    color: #add136;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.info-text strong {
    display: block;
    color: #003e7e;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.info-text p,
.info-text a {
    color: #444;
    font-size: 1.1rem;
    text-decoration: none;
    margin: 0;
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: #003e7e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: #add136;
    transform: translateY(-5px);
}

.map-embed-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-form-card h2 {
    color: #003e7e;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 35px;
}

.contact-modern-form .form-row {
    display: flex;
    gap: 20px;
}

.contact-modern-form .form-group {
    margin-bottom: 25px;
    flex: 1;
}

.contact-modern-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #003e7e;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-modern-form input,
.contact-modern-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.contact-modern-form input:focus,
.contact-modern-form textarea:focus {
    border-color: #add136;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(173, 209, 54, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px !important;
    font-size: 1.1rem !important;
}

@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-info-col,
    .contact-form-col {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-modern-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-card {
        padding: 30px;
    }
}

/* =========================================
   CATEGORY LANDING PAGES
   ========================================= */
.category_hero {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, #005a8d 100%);
    padding: 180px 0 100px;
    text-align: center;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}

.category_hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1;
    color: #fff !important;
}

.hero_divider {
    width: 80px;
    height: 5px;
    background: var(--apple-green);
    margin: 0 auto 30px;
    border-radius: 10px;
}

.hero_description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
    color: #fff !important;
}

.category_content_section {
    padding: 80px 0;
    background: #fdfdfd;
}

.category_intro_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.modern_card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.intro_card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.card_icon {
    width: 60px;
    height: 60px;
    background: rgba(173, 209, 54, 0.1);
    color: var(--apple-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit_list {
    list-style: none;
    margin-top: 20px;
}

.benefit_list li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--deep-ocean);
}

.benefit_list li i {
    color: var(--apple-green);
}

.image_wrapper img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Pricing Grid */
.pricing_section {
    margin-bottom: 80px;
}

.section_title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--deep-ocean);
    margin-bottom: 40px;
    text-align: center;
}

.pricing_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.pricing_card {
    padding: 0;
    overflow: hidden;
}

.card_image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card_body {
    padding: 40px;
}

.card_body h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--deep-ocean);
}

.card_desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing_table_modern {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.pricing_table_modern th {
    background: #f8fcf0;
    color: var(--deep-ocean);
    text-align: left;
    padding: 12px 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--apple-green);
}

.pricing_table_modern td {
    padding: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
}

.btn_book_card {
    display: block;
    width: 100%;
    background: var(--apple-green);
    color: #fff !important;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(173, 209, 54, 0.3);
}

.btn_book_card:hover {
    transform: translateY(-5px);
    background: var(--deep-ocean);
    box-shadow: 0 12px 30px rgba(0, 62, 126, 0.2);
}

/* Terms Box */
.rental_terms_box {
    margin-top: 60px;
    background: #003d52;
    color: #fff;
    padding: 50px;
}

.rental_terms_box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--apple-green) !important;
}

.terms_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.term_col ul {
    list-style: none;
    margin-top: 10px;
    padding: 0;
}

.term_col ul li {
    margin-bottom: 5px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .category_intro_grid {
        grid-template-columns: 1fr;
    }

    .category_hero h1 {
        font-size: 3rem;
    }

    .pricing_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .terms_grid {
        grid-template-columns: 1fr;
    }

    .category_hero {
        padding: 140px 20px 60px;
    }

    .rental_terms_box {
        padding: 30px;
    }
}

/* Secondary Button - Learn More */
.btn_learn_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--apple-green);
    color: var(--deep-ocean) !important;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 10px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.btn_learn_more:hover {
    background: var(--apple-green);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(173, 209, 54, 0.2);
}

/* Adjustments for buttons side by side */
.elementor-button-wrapper {
    display: flex !important;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .btn_learn_more {
        margin-left: 0;
        width: 100%;
    }

    .elementor-button-wrapper {
        flex-direction: column;
    }
}

/* Premium Pricing Tags & Badges */
.item_pricing {
    position: relative;
    margin-bottom: 30px;
}

.price_tag_large {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 10px;
}

.price_tag_large .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--apple-green);
}

.price_tag_large .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--deep-ocean);
    line-height: 1;
}

.price_tag_large .period {
    font-size: 1rem;
    color: #888;
    margin-left: 5px;
}

.best_value_badge {
    display: inline-block;
    background: var(--apple-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(173, 209, 54, 0.3);
}

/* Learn More Button (Secondary Outlined Style) */
.btn-book.btn-learn-more {
    background: transparent !important;
    border: 3px solid #add136 !important;
    color: #003e7e !important;
    margin-left: 10px;
    font-weight: 800 !important;
    transition: all 0.3s ease;
}

.btn-book.btn-learn-more:hover {
    background: #add136 !important;
    color: #003e7e !important;
    box-shadow: 0 5px 15px rgba(173, 209, 54, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-book.btn-learn-more {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        text-align: center;
    }
}

/* Fix for Individual Service Pages: 50/50 split and Large Images */
.individual-service-main .rental-container {
    align-items: center;
    /* Center vertically for better look */
    gap: 80px;
    /* More space between image and text */
}

.individual-service-main .rental-image {
    flex: 1 !important;
    /* Make image 50% width */
}

.individual-service-main .rental-content {
    flex: 1 !important;
    /* Make content 50% width */
    padding: 0;
    /* Remove extra padding since container handles it */
}

/* Visibility Fix for Terms Box in Individual Pages */
.individual-service-main .rental_terms_box {
    background: #003366 !important;
    /* Deep Navy */
    color: #ffffff !important;
}

.individual-service-main .rental_terms_box h3 {
    color: #add136 !important;
    /* Apple Green for title */
}

.individual-service-main .rental_terms_box strong {
    color: #ffffff !important;
}

.individual-service-main .rental_terms_box li {
    color: #ffffff !important;
    opacity: 1 !important;
    /* Ensure full visibility */
}

/* Hero Delivery Information Badge */
.hero_delivery_info {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 25px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero_delivery_info .delivery_title {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #add136;
    /* Apple Green */
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.hero_delivery_info .delivery_location {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.hero_delivery_info .delivery_includes {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    color: #fff;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero_delivery_info {
        padding: 20px;
        margin-top: 20px;
        width: 100%;
    }

    .hero_delivery_info .delivery_title {
        font-size: 1.4rem;
    }

    .hero_delivery_info .delivery_location {
        font-size: 1rem;
    }
}

/* Final Alignment & Mobile UI Refinements */
.service-intro-container {
    padding-top: 80px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.service-intro-container .benefit_list {
    justify-content: flex-start !important;
    text-align: left !important;
}

@media (max-width: 768px) {
    .service-intro-container {
        padding-top: 40px;
        text-align: left !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-intro-container .benefit_list {
        justify-content: flex-start !important;
    }

    .hamburger-btn {
        background: transparent !important;
        border: none !important;
        padding: 5px !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        width: 35px !important;
        height: 35px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
    }

    .hamburger-btn span {
        display: block !important;
        width: 28px !important;
        height: 3px !important;
        background-color: #003366 !important;
        border-radius: 3px !important;
        margin: 0 !important;
    }
}

/* Delivery Info Banner Update */
.delivery-info-banner {
    text-align: center;
    padding: 60px 40px;
    background: #003366;
    /* Deep theme blue */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.delivery-info-banner h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #ffffff;
    /* White text */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.delivery-badge {
    background: #add136;
    /* Adventura Light Green/Yellow */
    color: #000;
    padding: 10px 30px;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(173, 209, 54, 0.3);
    text-transform: uppercase;
}

.delivery-info-banner p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8f9fa;
    /* Off-white text */
    margin: 5px 0;
}

.delivery-info-banner .sub-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    /* Muted light text */
    font-weight: 400;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .delivery-info-banner {
        padding: 40px 20px;
    }

    .delivery-info-banner h3 {
        font-size: 1.8rem;
    }

    .delivery-info-banner p {
        font-size: 1.1rem;
    }
}

/* Mobile Hero Buttons Alignment */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }

    .btn-book-hero {
        flex: 1;
        padding: 12px 5px !important;
        font-size: 0.82rem !important;
        min-width: 0;
        white-space: nowrap;
    }
}