/* ============================================
   Carrabelle Boat Club - Custom Styles
   Premium Marina & Boat Club Website
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Primary Colors - Teal */
    --primary: #2D5152;
    --primary-dark: #1e3839;
    --primary-light: #3a6a6b;

    /* Secondary Colors - Darker Teal */
    --secondary: #1e3839;
    --secondary-dark: #162a2b;
    --secondary-light: #2D5152;

    /* Accent Colors */
    --accent: #f7941d;
    --accent-dark: #d97b0d;
    --accent-light: #ffb347;

    /* Neutral Colors */
    --dark: #1a1a2e;
    --gray-dark: #333;
    --gray: #666;
    --gray-light: #999;
    --gray-lighter: #e9ecef;
    --light: #f8f9fa;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-ocean: linear-gradient(180deg, #3a6a6b 0%, #2D5152 60%, #1e3839 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 10px 30px rgba(45, 81, 82, 0.3);
    --shadow-accent: 0 10px 30px rgba(247, 148, 29, 0.3);

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, #1e3839 0%, #162a2b 100%);
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar .contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar .contact-info i {
    color: var(--accent);
}

.top-bar .social-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 15px;
    font-size: 16px;
    transition: var(--transition);
}

.top-bar .social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: linear-gradient(180deg, #3a6a6b 0%, #2D5152 60%, #1e3839 100%);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: sticky !important;
    top: 0;
    z-index: 1030;
}

/* Wave effect at bottom of navbar */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%231e3839' d='M0,0 L0,40 Q360,60 720,40 T1440,40 L1440,0 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    z-index: 1000;
    pointer-events: none;
    transition: var(--transition);
}

.navbar.scrolled::after {
    bottom: -14px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%231e3839' d='M0,0 L0,40 Q360,60 720,40 T1440,40 L1440,0 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
}

.navbar.scrolled {
    padding: 10px 0;
    background: linear-gradient(180deg, #3a6a6b 0%, #2D5152 60%, #1e3839 100%);
    backdrop-filter: blur(10px);
}

.navbar .logo {
    height: 60px;
    transition: var(--transition);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .logo {
    height: 50px;
}

/* Logo on mobile */
@media (max-width: 991.98px) {
    .navbar .logo {
        height: 55px;
    }

    .navbar.scrolled .logo {
        height: 50px;
    }
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   Mega Menu
   ============================================ */
.mega-dropdown {
    position: static;
}

/* Base mega menu styles */
.mega-menu {
    border: none;
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

/* Desktop mega menu - full width absolute positioning */
@media (min-width: 992px) {
    .mega-menu {
        width: 100%;
        padding: 30px 0;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-top: 0 !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        position: absolute !important;
    }
}

/* Mobile mega menu - flows within navbar collapse */
@media (max-width: 991.98px) {
    .mega-dropdown {
        position: relative;
    }

    .mega-menu {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 15px 0;
        border-radius: var(--radius-md);
        box-shadow: none;
        background: var(--light);
        display: none;
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mega-menu.show,
    .dropdown-menu.mega-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Make navbar collapse scrollable too */
    .navbar-collapse {
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-col {
    padding: 0 25px;
    border-right: 1px solid var(--gray-lighter);
}

.mega-col:last-child {
    border-right: none;
}

.mega-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-title i {
    color: var(--primary);
    font-size: 18px;
}

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

.mega-list li {
    margin-bottom: 8px;
}

.mega-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--gray-dark);
    font-size: 14px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mega-list li a i {
    color: var(--primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.mega-list li a:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

/* Bulletin Board in Mega Menu */
.bulletin-col {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: -30px 0;
    padding: 30px 25px !important;
    border-radius: 0 0 var(--radius-lg) 0;
}

.bulletin-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent);
}

.bulletin-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.bulletin-card h6 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.bulletin-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
}

.hero-slide {
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

/* Ken Burns zoom effect on active slide */
.carousel-item.active .hero-slide-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 81, 82, 0.85) 0%, rgba(30, 56, 57, 0.80) 50%, rgba(22, 42, 43, 0.75) 100%);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    z-index: 10;
    margin: 0;
    padding: 0;
}

.carousel-indicators button {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    margin: 0 6px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    transition: var(--transition);
    text-indent: -9999px;
    box-sizing: border-box;
}

.carousel-indicators button.active {
    background-color: var(--accent);
    border-color: var(--accent) !important;
    transform: scale(1.2);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background-size: 50%;
    padding: 15px;
    transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--accent);
}

/* Hide controls on mobile */
@media (max-width: 767.98px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo {
    filter: brightness(0) invert(1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(247, 148, 29, 0.4);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-light {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.btn-light:hover {
    background: var(--light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 15px;
}

/* ============================================
   Announcement Banner
   ============================================ */
.announcement-banner {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.announcement-icon {
    font-size: 24px;
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.announcement-text {
    flex: 1;
    color: var(--white);
    font-size: 15px;
}

.announcement-text strong {
    font-weight: 700;
}

.announcement-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ============================================
   Section Styling
   ============================================ */
.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
}

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

/* ============================================
   Welcome Section
   ============================================ */
.welcome-section {
    background: var(--white);
}

.welcome-content .lead {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 500;
}

.welcome-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: var(--gray-dark);
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
}

.welcome-image {
    position: relative;
    padding: 20px;
}

.welcome-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--gradient-accent);
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-accent);
    text-align: center;
    color: var(--white);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Fuel Section
   ============================================ */
.fuel-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.fuel-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
}

.fuel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.fuel-card.member::before {
    background: var(--gradient-accent);
}

.fuel-card.diesel::before {
    background: var(--gradient-secondary);
}

.fuel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.fuel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.fuel-card:hover .fuel-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.fuel-card.member:hover .fuel-icon {
    background: var(--gradient-accent);
}

.fuel-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.fuel-price {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.fuel-card.member .fuel-price {
    color: var(--accent);
}

.fuel-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
}

.fuel-card p {
    color: var(--gray);
    margin-top: 10px;
    margin-bottom: 0;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-lighter);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 164, 0.1) 0%, rgba(0, 102, 164, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-primary);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   Fishing Section
   ============================================ */
.fishing-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.fishing-content .lead {
    color: var(--secondary);
    font-weight: 500;
}

.fishing-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.highlight-item h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.highlight-item p {
    color: var(--gray);
    margin: 0;
    font-size: 14px;
}

.fishing-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Red Snapper Section
   ============================================ */
.snapper-section {
    padding: 60px 0;
    background: var(--gradient-ocean);
    position: relative;
}

/* Wave effect at top of snapper section */
.snapper-section::before {
    content: '';
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%233a6a6b' d='M0,60 L0,20 Q360,0 720,20 T1440,20 L1440,60 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

/* Wave effect at bottom of snapper section */
.snapper-section::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%231e3839' d='M0,0 L0,40 Q360,60 720,40 T1440,40 L1440,0 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.snapper-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.snapper-banner h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.snapper-banner h3 i {
    color: var(--accent);
}

.snapper-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================================
   Hours Section
   ============================================ */
.hours-section {
    background: var(--white);
}

.hours-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
}

.hours-block {
    padding: 35px;
}

.hours-block h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-block h4 i {
    color: var(--primary);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--gray-lighter);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    color: var(--gray);
}

.hours-list li strong {
    color: var(--secondary);
}

/* ============================================
   Location Section
   ============================================ */
.location-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.location-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.location-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-card h4 i {
    color: var(--primary);
}

.location-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: var(--white);
}

.accordion-item {
    border: 1px solid var(--gray-lighter);
    margin-bottom: 15px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    padding: 20px 25px;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-lighter);
}

.accordion-button::after {
    background-size: 16px;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.contact-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-lighter);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--gray);
    margin: 0;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-lighter);
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 164, 0.1);
}

.form-label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 8px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, #2D5152 0%, #1e3839 100%);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

/* Wave effect at top of footer */
.footer::before {
    content: '';
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%232D5152' d='M0,60 L0,20 Q360,0 720,20 T1440,20 L1440,60 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

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

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-contact i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 0;
}

.footer-bottom {
    padding: 25px 0;
}

.copyright {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.copyright a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-accent);
}

/* ============================================
   Template Page Styles
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(180deg, #e9ecef 0%, #dee2e6 100%);
    padding: 40px 0 50px;
    position: relative;
    margin-top: 20px;
    border-bottom: 1px solid #ced4da;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 12px;
}

.page-header .breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.page-header .breadcrumb-item a:hover {
    color: var(--accent);
}

.page-header .breadcrumb-item.active {
    color: var(--gray);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-light);
}

.page-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin: 0;
}

/* Content Section */
.content-section {
    background: var(--light);
    padding-top: 60px;
}

.content-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.content-card h2 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.content-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-card ul {
    color: var(--gray);
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-card ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    border-top: 4px solid var(--primary);
}

.sidebar-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h4 i {
    color: var(--primary);
}

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

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-lighter);
    color: var(--gray);
    font-size: 14px;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li strong {
    color: var(--secondary);
}

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

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.sidebar-links a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    margin-right: 8px;
    font-size: 10px;
    color: var(--accent);
}

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

/* Clearance Info Boxes */
.clearance-box {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    height: 100%;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

.clearance-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.clearance-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.clearance-box h5 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.clearance-box p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

@media (max-width: 991.98px) {
    .sticky-sidebar {
        position: static;
    }
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 991.98px) {
    .mega-col {
        border-right: none;
        border-bottom: 1px solid var(--gray-lighter);
        padding: 15px;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .bulletin-col {
        margin: 0;
        border-radius: var(--radius-md);
        background: var(--white);
    }

    .mega-title {
        font-size: 14px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .mega-list li a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

@media (max-width: 767.98px) {
    .top-bar {
        display: none;
    }

    .hero-slide {
        height: 75vh;
        min-height: 500px;
    }

    .hero-slide-bg {
        transition: transform 6s ease-out;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        display: none;
    }

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

    .announcement-content {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .announcement-icon {
        width: 100%;
        margin-bottom: 10px;
    }

    .fuel-price {
        font-size: 2.5rem;
    }

    .experience-badge {
        position: relative;
        margin-top: 20px;
        display: inline-block;
    }

    .welcome-image {
        padding: 0;
        margin-top: 30px;
    }

    .snapper-banner {
        text-align: center;
        padding: 25px;
    }

    .snapper-banner .btn {
        margin-top: 15px;
    }

    .hours-block {
        padding: 25px;
    }

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

    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   Mobile-Friendly Tables
   ============================================ */
@media (max-width: 575.98px) {
    .content-card {
        padding: 20px 15px;
    }

    .content-card .table-responsive {
        margin-left: -15px;
        margin-right: -15px;
        overflow-x: visible;
    }

    .table-mobile {
        width: 100%;
    }

    .table-mobile thead {
        display: none;
    }

    .table-mobile tr {
        display: block;
        border: 1px solid var(--gray-lighter);
        border-radius: var(--radius-sm);
        margin-bottom: 12px;
    }

    .table-mobile td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
        border-bottom: 1px solid var(--gray-lighter);
        text-align: right;
    }

    .table-mobile td:last-child {
        border-bottom: none;
    }

    .table-mobile td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gray-dark);
        text-align: left;
        flex-shrink: 0;
        margin-right: 10px;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .top-bar,
    .hero-section,
    .announcement-banner,
    .back-to-top,
    .footer-social {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
