/*
Theme Name: Sweet Lam Too Fishing Charter
Description: A custom WordPress theme for Sweet Lam Too fishing charter business with Elementor support
Version: 2.0
Author: Custom Theme Developer
Text Domain: sweet-lam-too
Domain Path: /languages
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =============================================================================
   ELEMENTOR CANVAS TEMPLATE SUPPORT
   ============================================================================= */
.elementor-page {
    padding-top: 0 !important;
}

.page-template-elementor_canvas {
    padding-top: 0 !important;
}

.page-template-elementor_canvas .site-header,
.page-template-elementor_canvas .site-footer {
    display: none;
}

.elementor-page .site-header {
    position: relative;
}

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

.elementor-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a202c;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* =============================================================================
   BUTTONS AND INTERACTIVE ELEMENTS
   ============================================================================= */
.slt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    line-height: 1.5;
}

.slt-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.slt-btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: white;
}

.slt-btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.slt-btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.slt-btn-outline {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.slt-btn-outline:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
}

.slt-btn-full {
    width: 100%;
    justify-content: center;
}

.slt-btn-instagram {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #fccc63 100%);
    color: white;
    padding: 10px 20px;
}

.slt-btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
    color: white;
}

.slt-btn-newsletter {
    background: #48bb78;
    color: white;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
}

.slt-btn-newsletter:hover {
    background: #38a169;
    color: white;
}

/* =============================================================================
   HEADER AND NAVIGATION
   ============================================================================= */

/* Fixed Header with Glassmorphism */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.admin-bar .site-header {
    top: 32px;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo Section */
.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.site-branding:hover {
    transform: translateY(-2px);
}

.logo-wrapper {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: #2563eb;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.site-branding:hover .logo-glow {
    opacity: 0.5;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2.5rem;
    color: #2563eb;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.site-branding:hover .logo-icon {
    transform: rotate(12deg);
}

.site-title-wrapper {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1;
}

.site-tagline {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.025em;
}

/* Desktop Navigation */
.main-navigation {
    display: none;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Desktop Navigation Styles - Only apply when visible on desktop */
@media (min-width: 1026px) {
    .main-navigation {
        display: block;
    }
    
    .main-navigation ul {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .main-navigation a {
        position: relative;
        padding: 0.5rem 1rem;
        font-weight: 500;
        color: #374151;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .main-navigation a:hover,
    .main-navigation a.active,
    .main-navigation a.current-menu-item {
        color: #2563eb;
    }
    
    .main-navigation a::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #eff6ff;
        border-radius: 0.5rem;
        opacity: 0;
        transform: scale(0.95);
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .main-navigation a:hover::before,
    .main-navigation a.active::before,
    .main-navigation a.current-menu-item::before {
        opacity: 1;
        transform: scale(1);
    }
    
    .main-navigation a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #2563eb;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .main-navigation a:hover::after,
    .main-navigation a.active::after,
    .main-navigation a.current-menu-item::after {
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: block;
    padding: 0.5rem;
    border: none;
    background: transparent;
    color: #374151;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.75rem;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #2563eb;
}

.mobile-menu-toggle .menu-close {
    display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon {
    display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-close {
    display: block;
}

.mobile-menu-toggle[aria-expanded="true"] {
    color: white;
}

.mobile-menu-toggle[aria-expanded="true"]:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #2563eb;
}

/* Mobile & Tablet Menu Overlay */
@media (max-width: 1025px) {
    .main-navigation {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        z-index: 998;
        overflow-y: auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        background: white;
        width: 100%;
        min-height: calc(100vh - 80px);
        padding: 24px 0 40px;
        margin: 0;
    }
    
    .main-navigation li {
        width: 100%;
    }
    
    .main-navigation a {
        display: block;
        padding: 18px 32px;
        width: 100%;
        font-size: 18px;
        font-weight: 500;
        color: #374151;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .main-navigation a:hover,
    .main-navigation a.active,
    .main-navigation a.current-menu-item {
        background: #f3f4f6;
        color: #2563eb;
    }
    
    .main-navigation a::before,
    .main-navigation a::after {
        display: none;
    }
}

/* Elementor Editor Preview Modes */
body[data-elementor-device-mode="tablet"] .main-navigation,
body[data-elementor-device-mode="mobile"] .main-navigation {
    display: none !important;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    z-index: 998;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0px;
}

body[data-elementor-device-mode="tablet"] .main-navigation.active,
body[data-elementor-device-mode="mobile"] .main-navigation.active {
    display: block !important;
}

body[data-elementor-device-mode="tablet"] .main-navigation ul,
body[data-elementor-device-mode="mobile"] .main-navigation ul {
    flex-direction: column;
    gap: 0;
    background: #f9fafb;
    width: 100%;
    min-height: calc(100vh - 80px);
    padding: 0 0 40px;
    margin: 0;
    display: flex !important;
    transform: none !important;
}

body[data-elementor-device-mode="tablet"] .main-navigation li,
body[data-elementor-device-mode="mobile"] .main-navigation li {
    width: 100%;
    border-bottom: none;
}

body[data-elementor-device-mode="tablet"] .main-navigation a,
body[data-elementor-device-mode="mobile"] .main-navigation a {
    display: block !important;
    padding: 18px 32px !important;
    width: 100%;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

body[data-elementor-device-mode="tablet"] .main-navigation a:hover,
body[data-elementor-device-mode="tablet"] .main-navigation a.active,
body[data-elementor-device-mode="tablet"] .main-navigation a.current-menu-item,
body[data-elementor-device-mode="mobile"] .main-navigation a:hover,
body[data-elementor-device-mode="mobile"] .main-navigation a.active,
body[data-elementor-device-mode="mobile"] .main-navigation a.current-menu-item {
    background: #f3f4f6 !important;
    color: #2563eb !important;
}

body[data-elementor-device-mode="tablet"] .main-navigation a::before,
body[data-elementor-device-mode="mobile"] .main-navigation a::before,
body[data-elementor-device-mode="tablet"] .main-navigation a::after,
body[data-elementor-device-mode="mobile"] .main-navigation a::after {
    display: none !important;
}

body[data-elementor-device-mode="tablet"] .mobile-menu-toggle,
body[data-elementor-device-mode="mobile"] .mobile-menu-toggle {
    display: block !important;
}

/* Offset content for fixed header */
body {
    padding-top: 80px;
}

body.menu-open {
    overflow: hidden;
}

@media (min-width: 783px) {
    .admin-bar .site-header {
        top: 0;
    }
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 0px;
    }
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.site-footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Mobile - Single Column */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p,
.footer-section li {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.footer-logo i {
    font-size: 1.5rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    width: 100%;
    clear: both;
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e0;
    font-size: 0.875rem;
    padding: 10px 20px;
}

.footer-bottom-content {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e0;
    font-size: 0.875rem;
}

.menu-footer-menu-container ul li {
    list-style: none;
}

footer h4.footer-heading {
    color: #fff !important;
    font-size: 1.25rem;
}

footer a, footer p, .menu-footer-menu-container ul li a {
    color: #d1d5db !important;
    font-size: 0.9375rem;
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

/* Large Tablets and Small Desktops */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .header-content {
        padding: 0.75rem 15px;
    }
    
    .site-logo {
        font-size: 1.25rem;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 1rem;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation a {
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .admin-bar .site-header {
        top: 0px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Mobile Phones */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding: 0.5rem 10px;
    }
    
    .site-logo {
        font-size: 1.125rem;
    }
    
    .slt-btn {
        padding: 10px 16px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    h1 {
        font-size: 1.75rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Styles for high DPI displays */
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .slt-btn,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        padding-top: 0;
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
}

/* =============================================================================
   ELEMENTOR COMPATIBILITY
   ============================================================================= */
.elementor-widget-container {
    overflow: visible;
}

.elementor-section {
    overflow: visible;
}

.elementor-column {
    overflow: visible;
}

/* Fix Elementor button alignment */
.elementor-button-wrapper {
    text-align: center;
}

/* Elementor background overlay fix */
.elementor-background-overlay {
    z-index: 1;
}

.elementor-widget-wrap {
    position: relative;
    z-index: 2;
}

/* Fix Elementor spacing issues */
.elementor-section-wrap:first-child .elementor-section:first-child {
    margin-top: 0;
}

/* Custom Elementor Widget Styles */
.elementor-widget-slt_hero_section,
.elementor-widget-slt_services_grid,
.elementor-widget-slt_gallery_grid,
.elementor-widget-slt_crew_members,
.elementor-widget-slt_contact_info,
.elementor-widget-slt_pricing_cards,
.elementor-widget-slt_requirements_grid,
.elementor-widget-slt_testimonials {
    margin-bottom: 0;
}

/* =============================================================================
   WORDPRESS CORE COMPATIBILITY
   ============================================================================= */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

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

/* WordPress Image Alignment */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* WordPress Gallery */
.gallery {
    margin: auto;
}

.gallery .gallery-item {
    float: left;
    margin-top: 10px;
    text-align: center;
}

.gallery-columns-1 .gallery-item {
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    width: 50%;
}

.gallery-columns-3 .gallery-item {
    width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    width: 25%;
}

.gallery-columns-5 .gallery-item {
    width: 20%;
}

.gallery-columns-6 .gallery-item {
    width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    width: 11.11%;
}

.gallery .gallery-caption {
    margin-left: 0;
}

/* =============================================================================
   PERFORMANCE OPTIMIZATIONS
   ============================================================================= */
.slt-btn {
    will-change: transform, background-color, box-shadow;
}

/* =============================================================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================================================= */
.slt-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.main-navigation a:hover,
.main-navigation a.active {
    color: #2563eb;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-navigation a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.8)), 
                url('assets/images/hero-bg.jpg') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: #1f2937;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 5px 0;
    color: #6b7280;
}

.service-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

/* Footer */
.site-footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2563eb;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Font Awesome Icon Styles */
.fas, .far, .fab, .fal, .fad {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fab {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.far {
    font-weight: 400;
}

/* Icon spacing and sizing */
.fas, .far, .fab {
    margin-right: 8px;
}

.site-logo .fas {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Specific icon enhancements */
.footer-widget ul li i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.contact-method i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #2563eb;
    width: 40px;
    text-align: center;
}

.service-info i {
    margin-right: 8px;
    color: #6b7280;
}

.requirement-icon i {
    font-size: 3rem;
    color: #2563eb;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* Social media icons */
.fab.fa-instagram {
    color: #E4405F;
}

.fab.fa-facebook {
    color: #1877F2;
}

.fab.fa-twitter {
    color: #1DA1F2;
}

/* Button icons */
.btn i {
    margin-right: 8px;
}

.btn-primary i {
    color: inherit;
}

/* Star ratings */
.fa-star {
    color: #fbbf24;
}

.fa-star.empty {
    color: #d1d5db;
}

/* Navigation icons */
.lightbox-close {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.mobile-menu-toggle i {
    font-size: 1.5rem;
    margin-right: 0 !important;
}

/* Elementor Compatibility */
.elementor-widget-container {
    box-sizing: border-box;
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption-text {
    text-align: center;
    padding: 10px;
    font-style: italic;
}

/* Widget Styles */
.widget {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1f2937;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 10px;
}

.footer-widget-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2563eb;
}

/* Charter Services Widget */
.widget-charter-services .charter-service-widget-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.widget-charter-services .charter-service-widget-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-widget-image {
    margin-right: 15px;
    flex-shrink: 0;
}

.service-widget-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.service-widget-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.service-widget-content h4 a {
    color: #1f2937;
    text-decoration: none;
}

.service-widget-content h4 a:hover {
    color: #2563eb;
}

.service-widget-price {
    color: #2563eb;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Contact Info Widget */
.widget-contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.widget-contact-info .contact-item i {
    width: 20px;
    margin-right: 10px;
    color: #2563eb;
}

.widget-contact-info .contact-item a {
    color: #374151;
    text-decoration: none;
}

.widget-contact-info .contact-item a:hover {
    color: #2563eb;
}

/* Gallery Widget */
.widget-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-widget-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

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

.widget-gallery-link {
    text-align: center;
}

/* Testimonials Widget */
.widget-testimonials .testimonial-widget-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.widget-testimonials .testimonial-widget-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.testimonial-rating {
    margin-bottom: 10px;
}

.testimonial-rating .fas.fa-star.filled {
    color: #fbbf24;
}

.testimonial-rating .fas.fa-star.empty {
    color: #d1d5db;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
    font-size: 0.9rem;
}

/* Page Header Enhancement */
.page-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.8));
    color: white;
    padding: 100px 0 60px;
    margin-top: 80px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Form Enhancements */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Charter Options Styling */
.charter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.charter-option {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.charter-option:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
}

.charter-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2563eb;
    margin: 15px 0;
}

.price-note {
    color: #6b7280;
    margin-bottom: 20px;
}

.charter-features {
    list-style: none;
    text-align: left;
}

.charter-features li {
    padding: 5px 0;
    color: #374151;
}

/* Cost Calculator */
.cost-calculator {
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0369a1;
}

#cost-breakdown {
    margin-top: 10px;
    color: #0284c7;
    font-size: 0.9rem;
}

/* Requirements Page Styling */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.requirement-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.requirement-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.requirement-card h3 {
    color: #1f2937;
    margin-bottom: 15px;
}

.requirement-detail h4 {
    color: #2563eb;
    margin-bottom: 10px;
}

/* Safety Notice */
.safety-notice {
    display: flex;
    align-items: flex-start;
    background: #eff6ff;
    border-left: 5px solid #3b82f6;
    padding: 30px;
    border-radius: 10px;
}

.notice-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-right: 20px;
    flex-shrink: 0;
}

.notice-content h2 {
    color: #1e40af;
    margin-bottom: 15px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
}

/* Gallery Filter Buttons */
.gallery-filters {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    padding: 10px 20px;
    margin: 0 5px 10px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

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

.gallery-overlay i {
    font-size: 2rem;
    margin: 0;
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 5% auto;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

#lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 20px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
}

.lightbox-prev {
    left: -50px;
}

.lightbox-next {
    right: -50px;
}

.lightbox-caption {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

body.lightbox-open {
    overflow: hidden;
}

/* Info Sections */
.info-sections,
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-list,
.weather-list,
.contact-info,
.included-list {
    list-style: none;
    padding-left: 0;
}

.info-list li,
.weather-list li,
.contact-info li,
.included-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.info-list li i,
.included-list li i {
    margin-right: 10px;
    color: #10b981;
    width: 20px;
}

.contact-info li i {
    margin-right: 10px;
    color: #2563eb;
    width: 20px;
}

/* Accessibility */
.screen-reader-text {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .charter-options {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .widget-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Final edits */
.wpforms-container input.wpforms-field-medium {
	max-width: 100% !important;
}

/* =============================================================================
   END OF THEME STYLES
   ============================================================================= */