@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0284c7;
    --primary-glow: rgba(2, 132, 199, 0.2);
    --secondary: #0f766e;
    --accent: #0369a1;
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --text-main: #0f172a;
    --text-muted: #475569;
    --border-color: rgba(2, 132, 199, 0.12);
    --border-hover: rgba(2, 132, 199, 0.35);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 40px rgba(2, 132, 199, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    position: relative;
}

/* Background elements for light water wave effects */
body::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -10%;
    width: 60%;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.04) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 60%;
    height: 800px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.03) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Header & Glassmorphic Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 1.25rem 2rem;
    transition: var(--transition);
    overflow-x: clip;
}

header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 2rem;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    width: 100%;
    max-width: 100%;
    padding: 0 3%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
    color: #ffffff;
}

.btn-book:active {
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1.25rem;
    height: 44px;
    width: 44px;
    min-width: 44px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

/* Mobile Side Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    max-width: 100%;
    height: 100vh;
    background-color: #ffffff;
    border-left: 1px solid #e2e8f0;
    z-index: 1001;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transition: var(--transition);
    transform: translateX(100%);
    box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.drawer-close:hover {
    color: var(--primary);
}

.drawer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    display: block;
}

.drawer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
}

.drawer-overlay.open {
    display: block;
}

/* Sections Configuration */
section {
    padding: 6rem 2rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.section-container {
    width: 100%;
    max-width: 100%;
    padding: 0 4%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a 40%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(2, 132, 199, 0.05) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    fill: var(--bg-dark);
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr; /* Give more space to the image column to scale up the hero image significantly */
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(2, 132, 199, 0.03);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.1);
}

.hero-badge-container {
    display: flex;
    gap: 2rem;
    margin-top: 3.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-badge-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(2, 132, 199, 0.08);
    padding: 0.5rem;
    border-radius: 8px;
}

.hero-badge-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-badge-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Image Visual Box with floating animation */
.hero-image-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-lg);
    z-index: 1;
    transform: rotate(-2deg);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 132, 199, 0.15);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.float-card-1 {
    bottom: -15px;
    left: -20px;
    animation: floatReverse 6s ease-in-out infinite;
}

.float-card-2 {
    top: -15px;
    right: -20px;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(1deg);
    }
    50% {
        transform: translateY(12px) rotate(-1deg);
    }
}

.float-card-icon {
    font-size: 1.25rem;
    color: #ffb703;
}

.float-card-text h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.float-card-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.destination-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    height: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.destination-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.12);
}

.dest-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.dest-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
    z-index: 2;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .dest-img {
    transform: scale(1.1);
}

.dest-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3;
    box-shadow: var(--shadow-sm);
}

.dest-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    position: relative;
    z-index: 3;
}

.dest-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.destination-card:hover .dest-title {
    color: var(--primary);
}

.dest-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.package-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.1);
    transform: scale(1.02);
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.package-card.featured:hover {
    box-shadow: 0 12px 35px rgba(2, 132, 199, 0.18);
}

.pack-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.pack-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.pack-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pack-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pack-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pack-meta {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 1.25rem;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pack-price {
    font-family: var(--font-heading);
}

.pack-price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
}

.pack-price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-pack {
    background-color: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}

.package-card:hover .btn-pack, .package-card.featured .btn-pack {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    border-color: transparent;
}

/* Interactive Booking Dashboard */
.booking-section {
    background: radial-gradient(circle at bottom right, rgba(2, 132, 199, 0.04) 0%, transparent 60%);
}

.booking-dashboard {
    background-color: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.booking-form-pane {
    padding: 3.5rem;
    border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.booking-form-pane h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.form-input {
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    color: #0f172a;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.15);
}

.form-input.is-valid {
    border-color: #10b981;
    background-color: rgba(16, 185, 129, 0.04);
}

.form-input.is-invalid {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.04);
}

.form-input.is-invalid:focus {
    border-color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.14);
}

.form-error {
    min-height: 1.1rem;
    color: #dc2626;
    font-size: 0.78rem;
    line-height: 1.35;
    margin: 0;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.1rem;
    padding-right: 2.5rem;
}

/* Time Slot grid selectors */
.time-slots-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.time-slot-option {
    position: relative;
}

.time-slot-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.time-slot-label {
    display: block;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.6rem 0.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    background-color: #ffffff;
    color: #475569;
}

.time-slot-option input:checked + .time-slot-label {
    background-color: var(--primary);
    color: #ffffff;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
}

.time-slot-label:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.time-slot-option input:checked + .time-slot-label:hover {
    color: #ffffff;
}

/* Summary Pane styling */
.booking-summary-pane {
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.summary-card {
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.summary-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border-bottom: 2px solid rgba(2, 132, 199, 0.15);
    padding-bottom: 0.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.summary-label {
    color: var(--text-muted);
}

.summary-val {
    font-weight: 600;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #cbd5e1;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 700;
}

.total-val {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.btn-confirm-booking {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-confirm-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

/* Sailing Safely Dashboard */
.safety-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.safety-img-box {
    position: relative;
}

.safety-main-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-lg);
}

.safety-overlay-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffffff;
    border: 1px solid var(--primary);
    padding: 1.5rem;
    border-radius: 16px;
    max-width: 280px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.safety-overlay-card i {
    font-size: 2rem;
    color: var(--primary);
}

.safety-overlay-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.safety-overlay-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.safety-content h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.safety-desc {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.safety-card {
    display: flex;
    gap: 1.25rem;
    background-color: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.safety-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.safety-card-icon {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(2, 132, 199, 0.08);
    height: 54px;
    width: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.safety-card-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.safety-card-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    transition: var(--transition);
    opacity: 0;
}

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

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

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

.gallery-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.gallery-subtitle {
    font-size: 0.8rem;
    color: #ffffff;
}

/* Map & Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    flex-grow: 1;
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--primary);
    background: rgba(2, 132, 199, 0.08);
    height: 40px;
    width: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-text p, .contact-text a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-text a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    height: 44px;
    width: 44px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-btn:hover {
    color: #ffffff;
    background-color: var(--primary);
    border-color: transparent;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
footer {
    background-color: #0f172a;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding: 5rem 2rem 2.5rem 2rem;
    color: #f8fafc;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.footer-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo-block p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-links-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer-legal-link {
    color: var(--text-muted);
}

.footer-legal-link:hover {
    color: var(--primary);
}

.footer-bottom {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-logo-block .logo-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ticket Receipt Modal Styling */
.ticket-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.ticket-modal.open {
    display: flex;
}

.ticket-container {
    background: #ffffff;
    color: #1e293b;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    max-height: calc(100dvh - 4rem);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.3);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto 0;
    animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleUp {
    0% { transform: scale(0.9) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.ticket-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 2rem;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.ticket-logo {
    height: 48px;
    margin: 0 auto 0.75rem auto;
}

.ticket-header h4 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticket-header p {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.ticket-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.ticket-close:hover {
    color: #ffffff;
}

.ticket-body {
    padding: 2.25rem;
    position: relative;
    overflow-y: auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

/* Semi-circle ticket cutouts */
.ticket-body::before, .ticket-body::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: rgba(15, 23, 42, 0.6);
    border-radius: 50%;
    z-index: 10;
}

.ticket-body::before {
    left: -10px;
}

.ticket-body::after {
    right: -10px;
}

.ticket-success-icon {
    font-size: 3rem;
    color: #10b981;
    text-align: center;
    /*margin-bottom: 1.25rem;*/
}

.ticket-status {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ticket-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 1.5rem;
    /*margin-bottom: 1.5rem;*/
}

.ticket-detail-item h6 {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.ticket-detail-item p {
    font-size: 0.95rem;
    font-weight: 700;
}

.ticket-detail-item.full-width {
    grid-column: span 2;
}

.ticket-price-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin-bottom: 2.25rem;*/
}

.ticket-price-block h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
}

.ticket-final-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
}

.btn-ticket-whatsapp {
    width: 100%;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-ticket-whatsapp:hover {
    background-color: #20ba56;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Animations Trigger Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    header {
        padding: 1rem 1.25rem;
    }

    header.scrolled {
        padding: 0.8rem 1.25rem;
    }

    .nav-menu,
    header .nav-container > .btn-book {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-dashboard {
        grid-template-columns: 1fr;
    }
    
    .booking-form-pane {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        padding: 2.5rem;
    }
    
    .booking-summary-pane {
        padding: 2.5rem;
    }
    
    .safety-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .safety-img-box {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    header {
        padding: 1rem;
    }
    
    header.scrolled {
        padding: 0.8rem 1rem;
    }
    
    .nav-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .logo-img {
        height: 42px;
    }

    header.scrolled .logo-img {
        height: 38px;
    }

    .logo-text {
        font-size: 1.15rem;
        white-space: nowrap;
    }

    section {
        padding: 4.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }

    .section-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.35rem;
        line-height: 1.12;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-book,
    .hero-buttons .btn-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .hero-badge-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        align-items: stretch;
        margin-top: 2rem;
        padding-top: 1.25rem;
        width: 100%;
    }

    .hero-badge {
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-width: 0;
    }

    .hero-badge-icon {
        font-size: 1.2rem;
        padding: 0.45rem;
        min-width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-badge-text {
        min-width: 0;
        text-align: left;
    }

    .hero-badge-text h4 {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .hero-badge-text p {
        font-size: 0.75rem;
        line-height: 1.25;
    }
    
    .hero-image-box {
        order: -1;
    }

    .hero-floating-card {
        max-width: calc(100% - 2rem);
        padding: 0.7rem 0.8rem;
        gap: 0.55rem;
        border-radius: 10px;
    }

    .float-card-1 {
        left: 0.5rem;
        bottom: -10px;
    }

    .float-card-2 {
        right: 0.5rem;
        top: -10px;
    }

    .float-card-icon {
        font-size: 1rem;
    }

    .float-card-text h5 {
        font-size: 0.78rem;
        line-height: 1.15;
    }

    .float-card-text p {
        font-size: 0.66rem;
        line-height: 1.25;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.18;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        max-width: none;
        width: 100%;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: none;
        width: 100%;
    }

    .booking-dashboard {
        border-radius: 18px;
    }

    .booking-form-pane,
    .booking-summary-pane {
        padding: 1.5rem;
    }

    .booking-form-pane h3 {
        font-size: 1.55rem;
        margin-bottom: 1.5rem;
    }

    .form-grid {
        gap: 1.1rem;
    }

    .form-input {
        padding: 0.85rem 1rem;
    }
    
    .time-slots-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .time-slot-label {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.65rem 0.35rem;
        line-height: 1.2;
    }

    .summary-row,
    .total-row {
        gap: 0.75rem;
        align-items: flex-start;
    }

    .summary-val,
    .total-val {
        text-align: right;
    }

    .total-val {
        font-size: 1.8rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: none;
        width: 100%;
    }

    .contact-layout {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-card h3 {
        font-size: 1.55rem;
    }

    .contact-row {
        gap: 1rem;
    }

    .map-container {
        min-height: 340px;
    }

    .safety-overlay-card {
        right: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    footer {
        width: 100%;
        max-width: 100%;
        padding: 4rem 1.5rem 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mobile-drawer {
        width: min(320px, 92vw);
        padding: 1.5rem;
        gap: 2rem;
    }

    .drawer-menu {
        gap: 1.25rem;
    }

    .menu-toggle {
        height: 42px;
        width: 42px;
        min-width: 42px;
    }

    .hero-text h1 {
        font-size: 2.05rem;
    }

    .hero-badge-container {
        gap: 0.65rem;
    }

    .hero-badge {
        flex-direction: column;
        text-align: center;
    }

    .hero-badge-text {
        text-align: center;
    }

    .hero-badge-text h4 {
        font-size: 0.82rem;
    }

    .hero-badge-text p {
        font-size: 0.7rem;
    }

    .hero-text p,
    .section-desc {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .form-grid {
        gap: 1rem;
    }

    .booking-form-pane,
    .booking-summary-pane,
    .contact-card {
        padding: 1.15rem;
    }

    .time-slots-container {
        grid-template-columns: 1fr 1fr;
    }

    .summary-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .summary-val {
        text-align: left;
    }

    .total-row {
        align-items: center;
    }

    .contact-row {
        align-items: flex-start;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .float-card-1 {
        left: 0;
        bottom: -8px;
    }
    
    .float-card-2 {
        right: 0;
        top: -8px;
    }

    .hero-floating-card {
        width: auto;
        max-width: 58%;
        padding: 0.55rem 0.65rem;
        gap: 0.45rem;
        border-radius: 9px;
    }

    .float-card-icon {
        font-size: 0.85rem;
    }

    .float-card-text h5 {
        font-size: 0.68rem;
    }

    .float-card-text p {
        font-size: 0.58rem;
    }
    
    .ticket-modal {
        padding: 1rem;
    }

    .ticket-container {
        max-height: calc(100dvh - 2rem);
    }
    
    .ticket-body {
        padding: 1.5rem;
    }
}

/* About Us & Licensing Section Styles - Clean Organized Top & Bottom Layout */
.about-us {
    background-color: var(--bg-dark);
    padding: 8rem 4% 3rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.contact {
    padding-top: 3rem;
}

/* Main layout is a vertical column stack */
.about-layout {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Top Section: Story and Stats side by side */
.about-story-row {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 5rem;
    align-items: center;
}

.about-story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-story-text h3 {
    font-size: 2.75rem;
    line-height: 1.15;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.about-story-text h3 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-story-border {
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.about-story-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0;
}

/* Stats Card on the right of Story */
.about-stats-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(15, 23, 42, 0.08);
}

.stat-item h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Bottom Section: Safety Credentials */
.about-safety-pane {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 4rem;
}

.safety-pane-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.safety-pane-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.safety-pane-header p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Cards Grid: 3 columns layout */
.safety-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.safety-card-item {
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.safety-card-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.safety-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.safety-card-icon {
    font-size: 1.35rem;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition);
}

.safety-card-item:hover .safety-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.safety-card-item.lifejackets .safety-card-icon { color: #f97316; background: rgba(249, 115, 22, 0.08); }
.safety-card-item.insurance .safety-card-icon { color: #10b981; background: rgba(16, 185, 129, 0.08); }
.safety-card-item.drivers .safety-card-icon { color: #3b82f6; background: rgba(59, 130, 246, 0.08); }
.safety-card-item.guards .safety-card-icon { color: #06b6d4; background: rgba(6, 182, 212, 0.08); }
.safety-card-item.rescue .safety-card-icon { color: #ef4444; background: rgba(239, 68, 68, 0.08); }

.safety-card-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.safety-card-item.lifejackets .safety-card-badge { background: rgba(249, 115, 22, 0.08); color: #f97316; }
.safety-card-item.insurance .safety-card-badge { background: rgba(16, 185, 129, 0.08); color: #10b981; }
.safety-card-item.drivers .safety-card-badge { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.safety-card-item.guards .safety-card-badge { background: rgba(6, 182, 212, 0.08); color: #06b6d4; }
.safety-card-item.rescue .safety-card-badge { background: rgba(239, 68, 68, 0.08); color: #ef4444; }

.safety-card-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.5rem 0;
}

.safety-card-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Standby Rescue Boat - spans 2 columns at the bottom for balanced look */
.safety-card-item.rescue {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.safety-card-item.rescue .safety-card-info {
    flex-grow: 1;
}

.safety-card-item.rescue .safety-card-header {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 140px;
}

@media (max-width: 1200px) {
    .about-story-row {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .about-story-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .safety-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .safety-card-item.rescue {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 5rem 4% 2.5rem;
    }
    .contact {
        padding-top: 2.5rem;
    }
    .about-layout {
        gap: 3.5rem;
    }
    .about-safety-pane {
        padding-top: 2.5rem;
    }
    .safety-cards-grid {
        grid-template-columns: 1fr;
    }
    .safety-card-item.rescue {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .safety-card-item.rescue .safety-card-header {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        min-width: auto;
    }
}
