/* Custom Premium Design System for Aquaworld Water Park */

:root {
    --primary: #00c6ff;
    --primary-hover: #0072ff;
    --secondary: #00ffd5;
    --secondary-hover: #00bfa5;
    --accent: #ff0055;
    --bg-dark: #071126;
    --bg-darker: #040a17;
    --bg-light: #ffffff;
    --card-dark: rgba(255, 255, 255, 0.05);
    --card-light: #ffffff;
    --text-light: #f1f5f9;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(7, 17, 38, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px -10px rgba(0, 198, 255, 0.3);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

button, input, select, textarea {
    font-family: inherit;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(0, 255, 213, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 213, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Sticky Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo span span {
    color: var(--primary);
}

.wave-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wave-motion 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

.nav-btn {
    margin-left: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero.png') no-repeat center center/cover;
    padding-top: 100px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(4, 10, 23, 0.85) 0%, 
        rgba(7, 17, 38, 0.75) 60%, 
        var(--bg-darker) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    animation: bounce 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #e2e8f0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

/* Floating contact strip in Hero */
.hero-contact-strip {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    gap: 3rem;
    max-width: 850px;
    width: 100%;
    justify-content: space-around;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.strip-item i {
    font-size: 1.8rem;
    color: var(--primary);
}

.strip-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strip-item strong {
    font-size: 1.1rem;
    color: #fff;
    font-family: var(--font-heading);
}

.instagram-link-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.instagram-link-strip:hover i {
    color: var(--secondary);
    transform: scale(1.1);
}

/* Wave Transition SVG */
.wave-transition {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.wave-transition svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-transition .shape-fill {
    fill: var(--bg-darker);
}

/* Section Common Headers */
.section-tag {
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.stat-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--bg-dark), #0d234d);
    border: 1px solid var(--primary);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.badge-title {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.badge-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.8;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    color: #cbd5e1;
    margin-bottom: 1.2rem;
}

.about-features {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #fff;
}

.about-features li i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.call-now-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.call-now-wrapper i {
    font-size: 1.8rem;
    color: var(--primary);
    animation: shake 1.5s infinite;
}

.call-now-wrapper span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.call-now-wrapper a {
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
}

/* Attractions / Rides Section */
.attractions-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

.rides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.ride-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

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

.ride-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.ride-card:hover .ride-img-container img {
    transform: scale(1.08);
}

.ride-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.thrill-badge {
    background: var(--accent);
    color: #fff;
}

.family-badge {
    background: var(--primary);
    color: #fff;
}

.kids-badge {
    background: var(--secondary);
    color: var(--bg-darker);
}

.ride-info {
    padding: 1.8rem;
}

.ride-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.ride-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    height: 70px;
    overflow: hidden;
}

.ride-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
}

.ride-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ride-meta i {
    color: var(--secondary);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.price-card.popular {
    background: linear-gradient(180deg, rgba(0, 198, 255, 0.05) 0%, rgba(4, 10, 23, 0.2) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.15);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--bg-darker);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-header h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.price-header .price {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.price-header .price span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
}

.price-header .price span:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.price-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
}

.price-features {
    margin-bottom: 3rem;
    text-align: left;
    flex-grow: 1;
}

.price-features ul {
    list-style: none;
}

.price-features li {
    margin-bottom: 1rem;
    font-size: 0.92rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.price-features li i {
    color: var(--secondary);
}

.price-features li.disabled {
    opacity: 0.4;
}

.price-features li.disabled i {
    color: var(--accent);
}

.pricing-notice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing-notice i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-notice p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Modal Overlay & Card styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 10, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-header h2 i {
    color: var(--primary);
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.modal-body {
    padding: 2.5rem;
}

/* Booking Form Elements */
.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

/* Counter inputs */
.counter-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.counter-input button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: var(--transition);
}

.counter-input button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary);
}

.counter-input input {
    width: 100%;
    background: transparent;
    border: none;
    text-align: center;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

/* Checkbox customizations */
.checkbox-group {
    margin: 1.8rem 0;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.92rem;
    user-select: none;
    color: #fff;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255, 255, 255, 0.08);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Price calculator summary box */
.booking-summary {
    background: rgba(0, 198, 255, 0.04);
    border: 1px dashed rgba(0, 198, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.booking-summary h4 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: #cbd5e1;
}

.summary-line span:last-child {
    font-weight: 600;
    color: #fff;
}

.booking-summary hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0.8rem 0;
}

.summary-line.total {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
}

.summary-line.total span:last-child {
    color: var(--secondary);
    font-size: 1.3rem;
}

/* Booking Success Screen styling */
.booking-success {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    animation: pop 0.5s ease-out;
}

.booking-success h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.booking-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.2rem;
}

.ticket-receipt {
    background: #0f1c3f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.receipt-header {
    background: linear-gradient(135deg, #162a5b, #0f1c3f);
    padding: 1.2rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.receipt-header h4 {
    font-size: 1.1rem;
    color: #fff;
}

.receipt-header span {
    font-size: 0.8rem;
    color: var(--primary);
}

.receipt-body {
    padding: 1.5rem;
    text-align: left;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.receipt-row strong {
    color: #fff;
}

.receipt-total {
    color: var(--secondary) !important;
    font-size: 1.15rem;
}

.receipt-qrcode {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.receipt-qrcode i {
    font-size: 5rem;
    color: #fff;
}

.receipt-qrcode span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    height: 220px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 10, 23, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    transition: var(--transition);
    padding: 1rem;
    text-align: center;
}

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

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

.gallery-overlay i {
    font-size: 1.8rem;
    color: var(--primary);
}

.gallery-overlay span {
    font-size: 0.95rem;
    font-weight: 600;
}

/* FAQs Section */
.faq-section {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 3.5rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    user-select: none;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: rgba(0, 198, 255, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-panel .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-info-panel p {
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.card-text h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.card-text p {
    margin-bottom: 0;
    color: #cbd5e1;
    line-height: 1.5;
}

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

/* Map widget */
.contact-map-panel {
    display: flex;
    flex-direction: column;
}

.map-container {
    flex-grow: 1;
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    min-height: 350px;
    display: flex;
}

/* Styled map fallback overlay (looks highly premium) */
.custom-map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1.8rem;
    border-radius: 20px;
    max-width: 320px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.map-logo-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: block;
}

.custom-map-overlay h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.custom-map-overlay p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

/* Map mockup aesthetics */
.map-visual-placeholder {
    width: 100%;
    height: 100%;
    background-color: #0b1c3d;
    position: relative;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(0, 198, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 198, 255, 0.05) 1px, transparent 1px);
}

.map-marker-ping {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
    z-index: 2;
    cursor: pointer;
}

.ping-circle {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 0, 85, 0.3);
    border: 2px solid var(--accent);
    animation: ripple 2s infinite ease-out;
    transform: translate(-25%, -25%);
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 0;
    position: relative;
    background-color: var(--bg-darker);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.brand-col .logo {
    margin-bottom: 1.2rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 0.2rem;
}

.footer-contact a {
    color: inherit;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.8rem 0;
    text-align: center;
}

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

/* Animations */
@keyframes wave-motion {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(4deg); }
}

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

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

@keyframes ripple {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

@keyframes pop {
    0% { transform: scale(0.6); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .about-grid {
        gap: 2.5rem;
    }
    .rides-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 2.2rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.15rem;
    }
    
    .nav-btn {
        margin-left: 0;
        width: 80%;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 1rem;
    }
    
    .hero-contact-strip {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem 1.5rem;
    }
    
    .strip-item {
        justify-content: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-img-badge {
        right: 10px;
        bottom: -15px;
        padding: 0.8rem 1.5rem;
    }
    
    .rides-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .modal-card {
        max-height: 95vh;
    }
    
    .modal-header, .modal-body {
        padding: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .custom-map-overlay {
        position: static;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    
    .map-container {
        flex-direction: column-reverse;
        min-height: auto;
    }
    
    .map-visual-placeholder {
        height: 250px;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
