  :root{
  --primary:#009dbc;
  --primary2:#015566;
  --dark:#1a1a1a;
  --text:#555;
  --light:#f8f9fa;

  --grad:linear-gradient(135deg,var(--primary),var(--primary2));
  --radius:20px;
  --shadow-sm:0 5px 15px rgba(0,0,0,.1);
  --shadow-lg:0 20px 40px rgba(0,0,0,.15);

  --font-main:'Poppins','Segoe UI',sans-serif;
  --font-head:'Montserrat',sans-serif;
}


  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family:var(--font-main);
    }

    body {
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
        min-height: 100vh;
        color: #333;
        overflow-x: hidden;
    }

    /* MAIN CONTAINER */
    .main-container {
        margin: 0 auto;
    }

/* ====================================bread crum banner========================================== */
  .watersports-hero-banner{
            height:450px;
            background-size:cover;
            background-position:center;
            position:relative;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#fff;
        }
        .watersports-hero-overlay{
            position:absolute;
            inset:0;
            background:rgba(0,0,0,0.55);
        }
        .watersports-hero-title{
            position:relative;
            z-index:2;
            font-size:3rem;
            font-weight:800;
            text-align:center;
        }
/* ================================tour price============================= */
    .tour-price:first-child {
  border-right: 2px solid black;
  padding-right: 10px;
  margin-right: 10px;
}

    /* NAVBAR */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 32px;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.07),
            0 2px 6px rgba(0, 0, 0, 0.04);
        position: relative;
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }
    .navbar:hover {
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.1),
            0 3px 8px rgba(0, 0, 0, 0.05);
    }
    /* LOGO */
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        font-size: 16px;
        color: #1a1a1a;
        padding: 6px 0;
        min-width: 150px;
        transition: transform 0.3s ease;
        z-index: 1001;
    }
    .logo:hover {
        transform: translateY(-2px);
    }
    
    .logo-icon {
        color: #009dbc;
        font-size: 22px;
        background: linear-gradient(135deg, #009dbc, #015566);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
    }
    .logo-text span:first-child {
        color: #009dbc;
        font-weight: 800;
        font-size: 17px;
        letter-spacing: -0.3px;
        font-family: 'Montserrat', sans-serif;
    }
    .logo-text span:last-child {
        color: #000000;
        font-weight: 600;
        font-size: 13.5px;
    }
    /* MENU - CENTERED */
    .menu {
        list-style: none;
        display: flex;
        gap: 26px;
        flex: 1;
        justify-content: center;
        margin: 0 20px;
        position: relative;
    }

    .menu li {
        position: static;
    }
    .menu li a {
        text-decoration: none;
        color: #444;
        font-size: 14px;
        font-weight: 600;
        padding: 10px 5px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
        white-space: nowrap;
        position: relative;
        border-radius: 6px;
        letter-spacing: 0.1px;
        font-family: 'Montserrat', sans-serif;
    }
    .menu li a .menu-icon {
        font-size: 15px;
        width: 18px;
        text-align: center;
        transition: transform 0.3s ease;
    }
    .menu li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, #009dbc, #015566);
        border-radius: 8px;
        transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .menu li a:hover::before {
        width: 100%;
    }

    .mobileonlyitem{
        display: none;
    }
    .menu li a:hover {
        color: #009dbc;
        background: rgba(255, 122, 0, 0.04);
    }
    .menu li a:hover .menu-icon {
        transform: translateY(-1px) scale(1.05);
    }
    .menu li a.active {
        color: #009dbc;
        background: rgba(255, 122, 0, 0.07);
    }
    .menu li a.active::before {
        width: 100%;
    }
    /* MEGA MENU - PERFECT CENTER SOLUTION */
    .mega-box {
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%) translateY(12px);
        width: 1200px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 22px;
        padding: 25px;
        box-shadow: 
            0 25px 70px rgba(0, 0, 0, 0.12),
            0 8px 25px rgba(0, 0, 0, 0.06);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.3);
        z-index: 100;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        overflow: hidden;
    }

    .mega-box::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 50%;
        transform: translateX(-50%);
        width: 18px;
        height: 18px;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(240, 240, 240, 0.8);
        border-left: 1px solid rgba(240, 240, 240, 0.8);
        transform: translateX(-50%) rotate(45deg);
        z-index: 1;
    }

    .mega:hover .mega-box {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    /* MEGA MENU HEADER */
    .mega-header {
        display: flex;
        align-items: center;
        margin-bottom: 22px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .mega-header h3 {
        font-size: 18px;
        color: #0063a9;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
    }

    .mega-header h3 i {
        color: #009dbc;
    }

    /* GRID */
    .mega-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* CARD */
    .mega-card {
        border: 1px solid rgba(234, 234, 234, 0.8);
        border-radius: 16px;
        padding: 10px;
        transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.2);
        cursor: pointer;
        background: rgba(252, 252, 252, 0.7);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .mega-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #009dbc, #015566);
        transform: scaleY(0);
        transition: transform 0.4s ease;
        border-radius: 4px 0 0 4px;
    }

    .card-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .card-icon {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 157, 66, 0.08));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #009dbc;
        transition: all 0.3s ease;
    }

    .mega-card h4 {
        font-size: 21px;
        color: #1a1a1a;
        font-weight: 700;
        line-height: 1.3;
        font-family: 'Montserrat', sans-serif;
    }

    .mega-card p {
        font-size: 11px;
        color: #666;
        line-height: 1.25;
        flex-grow: 1;
    }

    .card-footer {
        margin-top: 2px;
        display: flex;
        justify-content: end;
        align-items: center;
        border-top: 1px dashed rgba(0, 0, 0, 0.06);
    }

    .card-cta {
        color: #0085c8;
        font-weight: 600;
        font-size: 12.5px;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
        font-family: 'Montserrat', sans-serif;
    }

    .mega-card:hover {
        border-color: #009dbc;
        transform: translateY(-6px) scale(1.01);
        box-shadow: 
            0 12px 30px rgba(255, 122, 0, 0.12),
            0 4px 12px rgba(255, 122, 0, 0.06);
        background: rgba(255, 255, 255, 0.95);
    }

    .mega-card:hover::before {
        transform: scaleY(1);
    }

    .mega-card:hover .card-icon {
        transform: rotate(8deg) scale(1.08);
        background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(255, 157, 66, 0.15));
    }

    .mega-card:hover .card-cta {
        color: #009dbc;
        transform: translateX(3px);
    }

    /* RIGHT ACTIONS - DESKTOP */
    .actions {
        display: flex;
        align-items: center;
        gap: 16px;
        min-width: 140px;
        justify-content: flex-end;
    }

    .action-icon {
        font-size: 16px;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        color: #555;
        background: rgba(0, 0, 0, 0.02);
        position: relative;
    }

    .action-icon:hover {
        background: rgba(255, 122, 0, 0.08);
        color: #009dbc;
        transform: translateY(-2px);
    }

    .theme-toggle {
        position: relative;
        overflow: hidden;
    }

    .theme-toggle i:last-child {
        display: none;
    }

    .dark-mode .theme-toggle i:first-child {
        display: none;
    }

    .dark-mode .theme-toggle i:last-child {
        display: block;
    }

    .actions button {
        background: linear-gradient(135deg, #009dbc, #015566);
        color: #fff;
        border: none;
        padding: 12px 24px;
        border-radius: 45px;
        cursor: pointer;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
        box-shadow: 0 5px 18px rgba(255, 122, 0, 0.25);
        white-space: nowrap;
        letter-spacing: 0.2px;
        position: relative;
        overflow: hidden;
        font-family: 'Montserrat', sans-serif;
    }

    .actions button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: left 0.6s ease;
    }

    .actions button:hover::before {
        left: 100%;
    }

    .actions button:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 8px 22px rgba(255, 122, 0, 0.35);
    }

    /* MOBILE CONTACT BUTTON - Inside Menu */
    .mobile-contact-btn {
        display: none;
        background: linear-gradient(135deg, #009dbc, #015566);
        color: #fff;
        border: none;
        padding: 14px 24px;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 700;
        font-size: 15px;
        transition: all 0.3s ease;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }
    a.mobile-contact-btn{
        text-decoration: none;
    }
    .mobile-contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
    }

   

    
    

    /* MOBILE MENU TOGGLE */
    .mobile-toggle {
        display: none;
        font-size: 22px;
        cursor: pointer;
        padding: 10px;
        border-radius: 10px;
        color: #009dbc;
        background: rgba(255, 122, 0, 0.08);
        z-index: 1001;
        transition: all 0.3s ease;
    }

    .mobile-toggle:hover {
        background: rgba(255, 122, 0, 0.15);
        transform: scale(1.05);
    }

    /* DARK MODE STYLES */
    body.dark-mode {
        background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
        color: #f0f0f0;
    }

    .dark-mode .navbar {
        background: rgba(25, 25, 25, 0.97);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .dark-mode .logo-text span:last-child {
        color: #8ecae6;
    }

    .dark-mode .menu li a {
        color: #ddd;
    }

    .dark-mode .mega-box {
        background: rgba(35, 35, 35, 0.98);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .dark-mode .mega-box::before {
        background: rgba(35, 35, 35, 0.98);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .dark-mode .mega-card {
        background: rgba(45, 45, 45, 0.7);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .dark-mode .mega-card h4 {
        color: #f0f0f0;
    }

    .dark-mode .mega-card p {
        color: #aaa;
    }

    .dark-mode .mega-header h3 {
        color: #8ecae6;
    }

    .dark-mode .action-icon {
        background: rgba(255, 255, 255, 0.04);
        color: #ddd;
    }

    .dark-mode .content h1 {
        background: linear-gradient(135deg, #8ecae6, #009dbc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


    .mobile-close{
        display: none;
    }
    /* ================= RESPONSIVE DESIGN - COMPLETELY FIXED ================= */
    
    /* For tablets and smaller desktops */

    @media (min-width: 992px) and (max-width: 1350px){

        .menu li a{
            font-size: 12px;
            padding: 10px 5px;
            gap: 6px;
        }

        .menu{
            gap: 13px;
            margin: 0 5px;
        }

        .action-icon{
            padding: 6px;
            width: 22px;
        }
        .actions button{
                padding: 10px 13px;
                font-size: 11px;
        }
        .actions{
                gap: 5px;
        }
        .logo{
            min-width: 130px;
        }
        .navbar{
                padding: 16px 10px;
        }
        .logo-text span:last-child{
                font-size: 12.5px;
        }
    }


    @media (max-width: 1200px) {
        .mega-box {
            width: 95vw;
            max-width: 900px;
        }
        
        .mega-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .menu {
            gap: 5px;
        }
    }

    /* For tablets - COMPLETELY FIXED MENU */
    @media (max-width: 992px) {
        
        .footer-links a{
                justify-content: center;
        }
        
        .mobilefooterlogo{
            display:flex;
            justify-content: center;
        }
.mobileonlyitem{
    display: flex;
    width: 100%;
        justify-content: space-between;
}

        /* .main-container {
            padding: 0 15px;
        } */
        
        .navbar {
            padding: 14px 20px;
            flex-wrap: nowrap;
            justify-content: space-between;
        }
        
        /* Hide desktop actions on mobile */
        .actions {
            display: none;
        }
        
        /* Show mobile toggle on right side */
        .mobile-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            order: 3;
        }
        
        /* Logo in the middle */
        .logo {
            order: 2;
            flex: 1;
            /* justify-content: center; */
            min-width: auto;
        }
        
        /* Mobile menu - FIXED positioning */
        .menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 80px 25px 30px;
            margin: 0;
            z-index: 9999;
            overflow-y: auto;
            transform: translateX(-110%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 0;
            box-shadow: none;
        }
        
        .menu.active {
            transform: translateX(0);
        }
        
        .dark-mode .menu {
            background: rgba(25, 25, 25, 0.98);
        }
        
        .menu li {
            width: 100%;
            margin-bottom: 5px;
        }
        
        .menu li a {
            padding: 16px 15px;
            justify-content: center;
            border-radius: 10px;
            font-size: 16px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            margin-bottom: 5px;
        }
        
        .dark-mode .menu li a {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        /* Mega menu for mobile - FIXED */
        .mega-box {
            position: static !important;
            transform: none !important;
            width: 100% !important;
            max-width: 100% !important;
            margin-top: 10px;
            margin-bottom: 15px;
            opacity: 1 !important;
            visibility: visible !important;
            display: none;
            padding: 20px;
            background: rgba(255, 255, 255, 0.95);
            max-height: 60vh;
            overflow-y: auto;
            border-radius: 15px;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
        }
        
        .dark-mode .mega-box {
            background: rgba(40, 40, 40, 0.95);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        }
        
        .mega-box::before {
            display: none;
        }
        
        .mega.active .mega-box {
            display: block;
        }
        
        .mega-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .mega-card {
            padding: 15px;
        }
        
        .mega-card h4 {
            font-size: 18px;
        }
        
        .mega-card p {
            font-size: 13px;
        }
        
        /* Show mobile contact button inside menu */
        .mobile-contact-btn {
            display: flex;
            margin-top: 20px;
            order: 100;
        }
        
        /* Close button for mobile menu */
        .mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: #009dbc;
            background: rgba(255, 122, 0, 0.1);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1001;
        }
        
        .content {
            padding: 0 25px;
            margin: 35px auto;
        }
    }

    /* For mobile phones */
    @media (max-width: 768px) {
        .content h1 {
            font-size: 30px;
        }
        
        .content p {
            font-size: 15px;
        }
        
        .demo-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .contact-modal {
            padding: 20px;
        }
        
        .modal-header h2 {
            font-size: 22px;
        }
        
        .mega-header h3 {
            font-size: 16px;
        }
    }

    /* For small mobile phones */
    @media (max-width: 576px) {
        .navbar {
            padding: 12px 15px;
        }
        
        .logo-text span:first-child {
            font-size: 16px;
        }
        
        .logo-text span:last-child {
            font-size: 12px;
        }
        
        .logo-icon {
            font-size: 20px;
        }
        
        .content h1 {
            font-size: 26px;
        }
        
        .content {
            padding: 0 20px;
            margin: 30px auto;
        }
        
        .menu {
            padding: 70px 20px 25px;
        }
        
        .menu li a {
            padding: 14px 12px;
            font-size: 15px;
        }
        
        .mobile-toggle {
            padding: 8px;
            font-size: 20px;
        }
        
        .contact-modal {
            padding: 18px;
        }
        
        .modal-header h2 {
            font-size: 20px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px;
            font-size: 15px;
        }
    }

    @media (max-width: 400px) {
        .logo-text span:first-child {
            font-size: 15px;
        }
        
        .logo-text span:last-child {
            font-size: 11px;
        }
        
        .mobile-toggle {
            padding: 7px;
            font-size: 18px;
        }
        
        .menu li a {
            font-size: 14px;
        }
        
        .mega-card h4 {
            font-size: 16px;
        }
        
        .mega-card p {
            font-size: 12px;
        }
    }

    /* ANIMATIONS */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInLeft {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }

    .mega-card {
        animation: fadeInUp 0.4s ease forwards;
        opacity: 0;
    }

    .mega-card:nth-child(1) { animation-delay: 0.08s; }
    .mega-card:nth-child(2) { animation-delay: 0.12s; }
    .mega-card:nth-child(3) { animation-delay: 0.16s; }
    .mega-card:nth-child(4) { animation-delay: 0.20s; }
    .mega-card:nth-child(5) { animation-delay: 0.24s; }
    .mega-card:nth-child(6) { animation-delay: 0.28s; }
    .mega-card:nth-child(7) { animation-delay: 0.32s; }
    .mega-card:nth-child(8) { animation-delay: 0.36s; }
    .mega-card:nth-child(9) { animation-delay: 0.40s; }
    .mega-card:nth-child(10) { animation-delay: 0.44s; }

    /* SCROLL ANIMATION */
    .navbar {
        animation: slideDown 0.5s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-25px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


/* ====================================common button================================= */
.btn,
.hero-main-btn,
.tour-book-btn,
.selfdrive-tour-book-btn,
.why-choose-btn,
.simple-cta-btn{
  background:var(--grad);
  color:#fff;
  border:0;
  border-radius:50px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
   box-shadow: 
        0 10px 30px rgb(0 55 88 / 35%), 0 5px 20px rgb(0 160 255 / 25%)
}
.hero-main-btn {
    padding: 18px 45px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    justify-content: center;
}
  .tour-book-btn {
    padding: 12px 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);

    position: relative;
    overflow: hidden;
}
.why-choose-btn {
    padding: 16px 40px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);

    position: relative;
    overflow: hidden;
}

.simple-cta-btn {
    padding: 15px 40px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;

}
.btn:hover,
.hero-main-btn:hover,
.tour-book-btn:hover,
.selfdrive-tour-book-btn:hover,
.why-choose-btn:hover,
.simple-cta-btn:hover{
  transform:translateY(-3px) scale(1.05);
   box-shadow: 0 8px 20px rgb(25 120 163 / 40%);
  letter-spacing: 0.5px;

}
/* ==================================SECTION TITLES========================= */
.section-title,
.services-title,
.tours-title,
.selfdrive-tours-title,
.why-choose-title span,
.simple-boat-title,
.reviews-title{
  font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
  font-family:var(--font-head);
  font-weight:800;
  background:linear-gradient(135deg,#315764,var(--primary));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.why-choose-title {
  font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
    /* ================= CARD BASE (mega, service, tour, review, why) ================= */


    /* ================= SIMPLE HERO SECTION ================= */
.simple-hero {
    margin-top: -1px;
    /* border-radius: 18px; */
    overflow: hidden;
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.08);
}

.hero-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Image Slides में ये CSS add करो */
.hero-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    /* ये line add करो */
    filter: brightness(0.7); /* Image ko thoda dark kar dega */
}

/* या फिर overlay के लिए */
.hero-image-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Black overlay with 30% opacity */
    z-index: 1;
}

.hero-image-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Fixed Content - ALWAYS VISIBLE */
.hero-fixed-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.hero-text-container {
    /* max-width: 800px; */
    padding: 40px;
    /* background: rgba(0, 0, 0, 0.6); */
    /* backdrop-filter: blur(2px); */
    /* border-radius: 20px; */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    animation: fadeInScale 1s ease-out;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); */
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-main-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.hero-main-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



.hero-main-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-main-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero-main-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Simple Dots */
.simple-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.simple-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
}

.simple-dot.active {
    background: #009dbc;
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.8);
}

/* Simple Arrows */
.simple-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    opacity: 0.7;
}

.simple-arrow:hover {
    background: rgba(255, 122, 0, 0.9);
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.simple-prev {
    left: 30px;
}

.simple-next {
    right: 30px;
}

/* Dark Mode Adjustments */
.dark-mode .simple-hero {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 20px rgba(0, 0, 0, 0.2);
}

.dark-mode .hero-text-container {
    /* background: rgba(0, 0, 0, 0.7); */
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
}

.dark-mode .simple-dots {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-mode .simple-arrow {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablet */
@media (max-width: 992px) {
    .simple-hero {
        height: 60vh;
        min-height: 450px;
        margin-top: -1px;
        /* border-radius: 16px; */
    }
    
    .hero-main-title {
        font-size: 42px;
    }
    
    .hero-main-subtitle {
        font-size: 18px;
        max-width: 500px;
    }
    
    .hero-text-container {
        padding: 35px;
        max-width: 700px;
    }
    
    .hero-main-btn {
        padding: 16px 40px;
        font-size: 17px;
        min-width: 230px;
    }
    
    .simple-arrow {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
    
    .simple-prev {
        left: 20px;
    }
    
    .simple-next {
        right: 20px;
    }
    
    .simple-dots {
        padding: 10px 18px;
        bottom: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .simple-hero {
        height: 55vh;
        min-height: 400px;
        /* border-radius: 14px; */
        /* margin-top: 1px; */
    }
    
    .hero-main-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero-main-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.4;
    }
    
    .hero-text-container {
        padding: 30px 25px;
        max-width: 90%;
        /* backdrop-filter: blur(8px); */
    }
    
    .hero-main-btn {
        padding: 15px 35px;
        font-size: 16px;
        min-width: 200px;
    }
    
    .simple-arrow {
        width: 50px;
        height: 50px;
        font-size: 16px;
        opacity: 0.8;
    }
    
    .simple-prev {
        left: 15px;
    }
    
    .simple-next {
        right: 15px;
    }
    
    .simple-dots {
        bottom: 30px;
        padding: 8px 16px;
        gap: 10px;
    }
    
    .simple-dot {
        width: 12px;
        height: 12px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .simple-hero {
        height: 50vh;
        min-height: 350px;
        /* border-radius: 12px; */
    }
    
    .hero-main-title {
        font-size: 30px;
    }
    
    .hero-main-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-text-container {
        padding: 25px 20px;
        /* backdrop-filter: blur(5px); */
    }
    
    .hero-main-btn {
        padding: 14px 30px;
        font-size: 15px;
        min-width: 180px;
    }
    
    .hero-main-btn i {
        font-size: 16px;
    }
    
    .simple-arrow {
        width: 45px;
        height: 45px;
        font-size: 15px;
    }
    
    .simple-dots {
        bottom: 30px;
    }
}

/* Extra Small */
@media (max-width: 400px) {
    .hero-main-title {
        font-size: 26px;
    }
    
    .hero-main-subtitle {
        font-size: 14px;
    }
    
    .hero-main-btn {
        padding: 12px 25px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .simple-hero {
        height: 45vh;
        min-height: 320px;
    }
}





/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 80px 0;
    background: white;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}



.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #009dbc, #015566);
    margin: 20px auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 157, 66, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 20px;
    color: #009dbc;
}

.feature:hover .feature-icon {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(255, 157, 66, 0.2));
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 122, 0, 0.95);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    display: block;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 122, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
    }
}

/* Dark Mode Styles */
.dark-mode .about-section {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .section-title {
    background: linear-gradient(135deg, #8ecae6, #009dbc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-mode .section-subtitle {
    color: #aaa;
}

.dark-mode .about-title {
    color: #f0f0f0;
}

.dark-mode .about-description {
    color: #ccc;
}

.dark-mode .feature-content h4 {
    color: #f0f0f0;
}

.dark-mode .feature-content p {
    color: #aaa;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
        margin-top: 25px;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .experience-badge {
        top: 15px;
        right: 15px;
        padding: 12px;
        min-width: 80px;
    }
    
    .experience-badge .years {
        font-size: 24px;
    }
    
    .experience-badge .text {
        font-size: 11px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
        margin-top: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 15px;
    }
}


/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
    /* margin-top: 40px; */
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}


.services-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #009dbc, #015566);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.service-image-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #009dbc;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-cta i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgb(0 122 211 / 20%);
    background: white;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-image-container {
    transform: scale(1.05);
    border-color: rgb(0 123 157 / 30%);
    box-shadow: 0 20px 40px rgb(0 91 145 / 20%);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card:hover .service-name {
    color: #009dbc;
    background: linear-gradient(135deg, #009dbc, #015566);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover .service-cta:hover {
    color: #009dbc;
}

.service-card:hover .service-cta:hover i {
    transform: translateX(5px);
}

/* Dark Mode Styles */
.dark-mode .services-section {
    background: rgba(20, 20, 20, 0.8);
}

.dark-mode .service-card {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.05);
}

.dark-mode .service-name {
    color: #f0f0f0;
}

.dark-mode .service-image-container {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
        margin-top: 30px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 700px;
    }
    
    .service-image-container {
        width: 160px;
        height: 160px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
        margin-top: 25px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 25px;
    }
    
    .service-image-container {
        width: 180px;
        height: 180px;
    }
    
    .service-name {
        font-size: 22px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .service-image-container {
        width: 160px;
        height: 160px;
    }
    
    .service-name {
        font-size: 20px;
    }
}

/* ================= BOAT TOURS SECTION ================= */
.tours-section {
    padding: 80px 0;
    background: white;
    /* margin-top: 40px; */
    position: relative;
    overflow: hidden;
}

.tours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.02) 0%, rgba(26, 95, 122, 0.02) 100%);
    z-index: 1;
}

.tours-container {
    position: relative;
    z-index: 2;
}

.tours-header {
    text-align: center;
    margin-bottom: 60px;
}



.tours-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgb(0 179 255 / 20%);
}

.tour-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.tour-card:hover .tour-image {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #009dbc, #015566);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
    z-index: 2;
}

.tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-header {
    margin-bottom: 15px;
}

.tour-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.tour-duration i {
    color: #009dbc;
}

.tour-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 122, 0, 0.08);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: #009dbc;
    font-weight: 600;
}

.tour-feature i {
    font-size: 12px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #00b5e5;
    line-height: 1;
}

.price-period {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}



.tour-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.tour-book-btn:hover::before {
    left: 100%;
}



.tour-book-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.tour-book-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

.tour-view-more {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    background: transparent;
    color: #ff9635;
    border: 2px solid #ff9635;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.view-more-btn:hover {
    background: #ff9635;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 95, 122, 0.2);
    border-color: #ff9635;
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateY(3px);
}

/* Dark Mode Styles */
.dark-mode .tours-section {
    background: rgba(25, 25, 25, 0.8);
}

.dark-mode .tours-section::before {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(26, 95, 122, 0.05) 100%);
}

.dark-mode .tour-card {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .tour-name {
    color: #f0f0f0;
}

.dark-mode .tour-description {
    color: #ccc;
}

.dark-mode .tour-duration {
    color: #aaa;
}

.dark-mode .tour-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .price-label {
    color: #aaa;
}

.dark-mode .price-period {
    color: #aaa;
}

.dark-mode .view-more-btn {
    color: #8ecae6;
    border-color: #8ecae6;
}

.dark-mode .view-more-btn:hover {
    background: #8ecae6;
    color: #121212;
    border-color: #8ecae6;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .tours-section {
        padding: 60px 0;
        margin-top: 30px;
    }
    
    .tours-title {
        font-size: 36px;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 900px;
    }
    
    .tour-name {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tours-section {
        padding: 50px 0;
        margin-top: 25px;
    }
    
    .tours-title {
        font-size: 32px;
    }
    
    .tours-subtitle {
        font-size: 16px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .tour-price {
        min-width: 100px;
    }
    
    .price-amount {
        font-size: 26px;
    }
    
    .tour-book-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .tours-section {
        padding: 40px 0;
    }
    
    .tours-title {
        font-size: 28px;
    }
    
    .tour-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
    
    .tour-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .tour-book-btn {
        width: 100%;
        justify-content: center;
    }
    
    .price-amount {
        font-size: 24px;
    }
}

/* ================= SELF DRIVE BOAT TOURS SECTION ================= */
.selfdrive-tours-section {
    padding: 40px 0;
    background: white;
    /* margin-top: 40px; */
    position: relative;
    overflow: hidden;
}

.selfdrive-tours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.02) 0%, rgba(26, 95, 122, 0.02) 100%);
    z-index: 1;
}

.selfdrive-tours-container {
    position: relative;
    z-index: 2;
}

.selfdrive-tours-header {
    text-align: center;
    margin-bottom: 60px;
}


.selfdrive-tours-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.selfdrive-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.selfdrive-tour-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.selfdrive-tour-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 122, 0, 0.2);
}

.selfdrive-tour-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.selfdrive-tour-card:hover .selfdrive-tour-image {
    transform: scale(1.1);
}

.selfdrive-tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #009dbc, #015566);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
    z-index: 2;
}

.selfdrive-tour-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.selfdrive-tour-header {
    margin-bottom: 15px;
}

.selfdrive-tour-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.selfdrive-tour-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.selfdrive-tour-duration i {
    color: #009dbc;
}

.selfdrive-tour-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.selfdrive-tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.selfdrive-tour-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 122, 0, 0.08);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: #009dbc;
    font-weight: 600;
}

.selfdrive-tour-feature i {
    font-size: 12px;
}

.selfdrive-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.selfdrive-tour-price {
    display: flex;
    flex-direction: column;
}

.selfdrive-price-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.selfdrive-price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #00b5e5;
    line-height: 1;
}

.selfdrive-price-period {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.selfdrive-tour-book-btn {

    padding: 12px 25px;

    font-size: 14px;

    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    /* box-shadow: 0 5px 15px rgba(255, 122, 0, 0.25); */
    position: relative;
    overflow: hidden;
}

.selfdrive-tour-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.selfdrive-tour-book-btn:hover::before {
    left: 100%;
}

.selfdrive-tour-book-btn:hover {

    /* box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4); */
    letter-spacing: 0.5px;
}

.selfdrive-tour-book-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.selfdrive-tour-book-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

.selfdrive-tour-view-more {
    text-align: center;
    margin-top: 50px;
}

.selfdrive-view-more-btn {
    background: transparent;
    color: #ff9635;
    border: 2px solid #ff9635;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.selfdrive-view-more-btn:hover {
    background: #ff9635;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 95, 122, 0.2);
    border-color: #ff9635;
}

.selfdrive-view-more-btn i {
    transition: transform 0.3s ease;
}

.selfdrive-view-more-btn:hover i {
    transform: translateY(3px);
}

/* Dark Mode Styles */
.dark-mode .selfdrive-tours-section {
    background: rgba(25, 25, 25, 0.8);
}

.dark-mode .selfdrive-tours-section::before {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05) 0%, rgba(26, 95, 122, 0.05) 100%);
}

.dark-mode .selfdrive-tour-card {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .selfdrive-tour-name {
    color: #f0f0f0;
}

.dark-mode .selfdrive-tour-description {
    color: #ccc;
}

.dark-mode .selfdrive-tour-duration {
    color: #aaa;
}

.dark-mode .selfdrive-tour-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .selfdrive-price-label {
    color: #aaa;
}

.dark-mode .selfdrive-price-period {
    color: #aaa;
}

.dark-mode .selfdrive-view-more-btn {
    color: #8ecae6;
    border-color: #8ecae6;
}

.dark-mode .selfdrive-view-more-btn:hover {
    background: #8ecae6;
    color: #121212;
    border-color: #8ecae6;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .selfdrive-tours-section {
        padding: 60px 0;
        margin-top: 30px;
    }
    
    .selfdrive-tours-title {
        font-size: 36px;
    }
    
    .selfdrive-tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 900px;
    }
    
    .selfdrive-tour-name {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .selfdrive-tours-section {
        padding: 50px 0;
        margin-top: 25px;
    }
    
    .selfdrive-tours-title {
        font-size: 32px;
    }
    
    .selfdrive-tours-subtitle {
        font-size: 16px;
    }
    
    .selfdrive-tours-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
    
    .selfdrive-tour-image {
        height: 200px;
    }
    
    .selfdrive-tour-content {
        padding: 20px;
    }
    
    .selfdrive-tour-price {
        min-width: 100px;
    }
    
    .selfdrive-price-amount {
        font-size: 26px;
    }
    
    .selfdrive-tour-book-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .selfdrive-tours-section {
        padding: 40px 0;
    }
    
    .selfdrive-tours-title {
        font-size: 28px;
    }
    
    .selfdrive-tour-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
    
    .selfdrive-tour-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .selfdrive-tour-book-btn {
        width: 100%;
        justify-content: center;
    }
    
    .selfdrive-price-amount {
        font-size: 24px;
    }
}


/* ================= WHY CHOOSE US SECTION ================= */
.why-choose-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    /* margin-top: 40px; */
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 Q40,5 60,20 T100,20 L100,80 Q80,95 60,80 T20,80 Z" fill="rgba(255, 122, 0, 0.03)" /></svg>');
    background-size: 200px;
    opacity: 0.3;
    z-index: 1;
}

.why-choose-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}




.why-choose-title i {
    color: #009dbc;
    font-size: 36px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.why-choose-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.intro-text {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
    padding: 0 20px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #009dbc, #015566);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
    transform: scaleY(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 157, 66, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #009dbc;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.why-choose-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(255, 157, 66, 0.2));
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

.card-content {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 122, 0, 0.2);
}

.why-choose-card:hover .card-title {
    color: #009dbc;
    background: linear-gradient(135deg, #009dbc, #015566);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.05), rgba(255, 122, 0, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 0, 0.1);
}

.why-choose-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: #015566;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.why-choose-cta p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}



.why-choose-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.why-choose-btn:hover::before {
    left: 100%;
}



.why-choose-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.why-choose-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Dark Mode Styles */
.dark-mode .why-choose-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.dark-mode .why-choose-title span {
    background: linear-gradient(135deg, #8ecae6, #009dbc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-mode .why-choose-subtitle {
    color: #aaa;
}

.dark-mode .intro-text {
    color: #ccc;
}

.dark-mode .why-choose-card {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .card-title {
    color: #f0f0f0;
}

.dark-mode .card-content {
    color: #ccc;
}

.dark-mode .why-choose-cta {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(255, 122, 0, 0.1));
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .why-choose-cta h3 {
    color: #8ecae6;
}

.dark-mode .why-choose-cta p {
    color: #ccc;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .why-choose-section {
        padding: 60px 0;
        margin-top: 30px;
    }
    
    .why-choose-title {
        font-size: 36px;
    }
    
    .why-choose-title i {
        font-size: 32px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .why-choose-cta {
        padding: 30px 25px;
    }
    
    .why-choose-cta h3 {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 0;
        margin-top: 25px;
    }
    
    .why-choose-title {
        font-size: 32px;
        flex-direction: column;
        gap: 10px;
    }
    
    .why-choose-title i {
        font-size: 28px;
    }
    
    .why-choose-subtitle {
        font-size: 16px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }
    
    .why-choose-card {
        padding: 25px;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .card-title {
        font-size: 19px;
    }
    
    .card-content {
        font-size: 14px;
    }
    
    .why-choose-btn {
        padding: 14px 35px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-title {
        font-size: 28px;
    }
    
    .why-choose-card {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: row;
        text-align: left;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .why-choose-cta {
        padding: 25px 20px;
    }
    
    .why-choose-cta h3 {
        font-size: 22px;
    }
    
    .why-choose-btn {
        padding: 13px 30px;
        font-size: 14px;
    }
}

/* ================= SIMPLE BOAT PARTY SECTION ================= */
.simple-boat-party {
    padding: 40px 20px;
    background: white;
    /* margin-top: 40px; */
}

.simple-boat-header {
    text-align: center;
    margin-bottom: 40px;
}


.simple-boat-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.simple-boat-content {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.simple-boat-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

/* Simple Image Gallery */
.simple-gallery {
    max-width: 800px;
    margin: 0 auto;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgb(0 135 165 / 90%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: #009dbc;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    transform: translateY(-5px);
    border-color: #009dbc;
}

.thumbnail.active {
    border-color: #009dbc;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

/* Simple Features */
.simple-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.simple-feature {
    text-align: center;
    padding: 20px;
    background: rgba(255, 122, 0, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.simple-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 122, 0, 0.1);
}

.simple-feature i {
    font-size: 30px;
    color: #009dbc;
    margin-bottom: 10px;
}

.simple-feature h4 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.simple-feature p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Simple CTA */
.simple-cta {
    text-align: center;
    margin-top: 40px;
}


/* Responsive */
@media (max-width: 768px) {
    .simple-boat-party {
        padding: 40px 15px;
    }
    
    .simple-boat-title {
        font-size: 28px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .simple-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .simple-features {
        grid-template-columns: 1fr;
    }
    
    .thumbnail {
        width: 70px;
        height: 50px;
    }
}

/* ================= REVIEWS SWIPER SECTION ================= */
.reviews-swiper-section {
    padding: 0px 20px;
    background: #f8f9fa;
    /*margin-top: 40px;*/
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}



.reviews-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Overall Rating */
.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ffc107;
    font-size: 20px;
}

.rating-text {
    font-size: 28px;
    font-weight: 700;
    color: #ff9635;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

/* Swiper Container */
.swiper-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 10px 10px;
}

/* Swiper Custom Styles */
.reviews-swiper {
    padding: 10px;
}

.reviews-swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews-swiper .swiper-slide {
    height: auto;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #009dbc;
}

.review-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.review-date {
    font-size: 13px;
    color: #888;
}

/* Review Stars */
.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.review-stars i {
    color: #ffc107;
    font-size: 14px;
}

/* Review Text */
.review-text {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.review-text::before {
    content: '"';
    font-size: 24px;
    color: #009dbc;
    margin-right: 5px;
}

.review-text::after {
    content: '"';
    font-size: 24px;
    color: #009dbc;
    margin-left: 5px;
}

/* Platform Badge */
.review-platform {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255, 122, 0, 0.1);
    color: #009dbc;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Swiper Navigation */
.swiper-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.swiper-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #009dbc;
    color: #009dbc;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button{
    color: #0093ba !important;
}

.swiper-button:hover {
    /* background: #009dbc; */
    /* color: white; */
    transform: scale(1.1);
}

/* Swiper Pagination (Dots) */
.swiper-pagination {
    position: relative !important;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #ddd !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #009dbc !important;
    transform: scale(1.2) !important;
}

/* All Reviews Button */
.all-reviews-btn {
    text-align: center;
    margin-top: 40px;
}

.all-reviews-btn button {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.all-reviews-btn button:hover {
    background: #ff9635;
    color: white;
    transform: translateY(-3px);
}

.all-reviews-btn i {
    transition: transform 0.3s ease;
}

.all-reviews-btn button:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .swiper-container {
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .swiper-container {
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .reviews-swiper-section {
        padding: 0px 15px;
    }
    
    .reviews-title {
        font-size: 28px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .swiper-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .swiper-nav {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .reviews-title {
        font-size: 24px;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
    }
    
    .review-info h4 {
        font-size: 16px;
    }
}


/* ================= FOOTER SECTION ================= */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255, 122, 0, 0.05)" stroke-width="1"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer About */
.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    background: white;
    width: fit-content;
    padding: 10px;
    border-radius: 21px;
}

.footer-logo-icon {
    font-size: 32px;
    color: #009dbc;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.footer-logo-text span:first-child {
    color: #009dbc;
    font-weight: 800;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo-text span:last-child {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #009dbc;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

/* Footer Links */
.footer-links h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #009dbc, #015566);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a i {
    color: #009dbc;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #009dbc;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: rotate(90deg);
}

/* Footer Contact */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #009dbc;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #009dbc;
}

/* Footer Newsletter */
.newsletter h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #009dbc, #015566);
    border-radius: 2px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #009dbc;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: linear-gradient(135deg, #009dbc, #015566);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 202 217 / 20%);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

.newsletter-btn i {
    transition: transform 0.3s ease;
}

.newsletter-btn:hover i {
    transform: translateX(5px);
}

/* Footer Middle */
.footer-middle {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-method {
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 122, 0, 0.2);
    color: #009dbc;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #009dbc;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #009dbc, #015566);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Dark Mode Support */
.dark-mode .footer-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 20px 25px;
        margin-top: 50px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 15px 20px;
    }
    
    .footer-logo {
        /*flex-direction: column;*/
        gap: 10px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .payment-methods {
        gap: 15px;
    }
    
    .payment-method {
        width: 45px;
        height: 30px;
        font-size: 18px;
    }
}
/* Boat Party Dark Mode */
.dark-mode .simple-boat-party {
    background: rgba(20, 20, 20, 0.8);
}

.dark-mode .simple-boat-title {
    background: linear-gradient(135deg, #8ecae6, #009dbc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-mode .simple-boat-subtitle {
    color: #aaa;
}

.dark-mode .simple-boat-description {
    color: #ccc;
}

.dark-mode .review-card {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .review-name {
    color: #f0f0f0;
}

.dark-mode .review-date {
    color: #aaa;
}

.dark-mode .review-text {
    color: #ccc;
}

.dark-mode .simple-feature {
    background: rgba(255, 122, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .simple-feature:hover {
    background: rgba(255, 122, 0, 0.15);
}

.dark-mode .simple-feature h4 {
    color: #f0f0f0;
}

.dark-mode .simple-feature p {
    color: #aaa;
}

/* Boat Party Gallery Dark Mode */
.dark-mode .main-image {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .gallery-nav {
    background: rgba(255, 122, 0, 0.8);
}

.dark-mode .gallery-nav:hover {
    background: #009dbc;
}

.dark-mode .thumbnail {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dark-mode .thumbnail:hover {
    border-color: #009dbc;
}

.dark-mode .thumbnail.active {
    border-color: #009dbc;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
}



/* Reviews Section Dark Mode */
.dark-mode .reviews-swiper-section {
    background: rgba(20, 20, 20, 0.8);
}

.dark-mode .reviews-title {
    background: linear-gradient(135deg, #8ecae6, #009dbc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-mode .reviews-subtitle {
    color: #aaa;
}

.dark-mode .rating-text {
    color: #8ecae6;
}

.dark-mode .rating-count {
    color: #aaa;
}

/* Review Card Dark Mode */
.dark-mode .review-card {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .review-info h4 {
    color: #f0f0f0;
}

.dark-mode .review-date {
    color: #aaa;
}
.dark-mode .review-text {
    color: #ccc;
}
.dark-mode .review-platform {
    background: rgba(255, 122, 0, 0.2);
    color: #015566;
}
/* Swiper Navigation Dark Mode */
.dark-mode .swiper-button {
    background: none;
}
.dark-mode .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
}
.dark-mode .swiper-pagination-bullet:hover {
    background: #015566 !important;
}
.dark-mode .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #009dbc, #015566) !important;
}
/* All Reviews Button Dark Mode */
.dark-mode .all-reviews-btn button {
    color: #8ecae6;
    border-color: #8ecae6;
}

.dark-mode .all-reviews-btn button:hover {
    background: #8ecae6;
    color: #121212;
}

/* Modal Dark Mode */
.dark-mode .booking-modal-overlay {
    background: rgba(0, 0, 0, 0.9);
}

.dark-mode .booking-modal {
    background: #2a2a2a;
    color: #f0f0f0;
}

.dark-mode .modal-header {
    background: linear-gradient(135deg, #009dbc, #015566);
}

.dark-mode .modal-content {
    color: #ccc;
}
.dark-mode .modal-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
}
.dark-mode .modal-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
}
.dark-mode .tour-summary img {
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.dark-mode .summary-details p {
    color: #ccc;
}
.dark-mode .summary-details p strong {
    color: #f0f0f0;
}
/* Play/Pause Button Dark Mode */
.dark-mode .play-pause-btn {
    background: linear-gradient(135deg, #1a5f7a, #219ebc);
}
.dark-mode .play-pause-btn:hover {
    background: linear-gradient(135deg, #009dbc, #015566);
}
/* ================= SIMPLE WHATSAPP FLOAT BUTTON ================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}
/* ==================================Gallery section================================== */

.gallery-section{
  padding:80px 8%;
  text-align:center;
}

.gallery-title{
  font-size:42px;
  font-weight:800;
  color:#004e64;
}

.gallery-subtitle{
  color:#555;
  margin:10px 0 40px;
  font-size:18px;
}

.gallery-grid{
  columns:3;
  column-gap:20px;
}

.gallery-item{
  margin-bottom:20px;
  overflow:hidden;
  border-radius:18px;
  cursor:pointer;
  transform:translateY(40px);
  opacity:0;
  transition:all .8s ease;
}

.gallery-item.show{
  transform:translateY(0);
  opacity:1;
}

.gallery-item img{
  width:100%;
  border-radius:18px;
  transition:transform .6s ease;
}

.gallery-item:hover img{
  transform:scale(1.15);
}
.lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.9);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999;
}

.lightbox img{
  max-width:80%;
  max-height:80%;
  border-radius:20px;
  animation:fadeIn .4s ease;
}

@keyframes fadeIn{
  from{opacity:0; transform:scale(.9)}
  to{opacity:1; transform:scale(1)}
}

.lightbox .close{
  position:absolute;
  top:20px;
  right:35px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}

.lightbox-header{
  position:absolute;
  top:25px;
  left:40px;
  color:#fff;
  font-size:18px;
  font-weight:600;
}

/* Navigation Buttons */
.nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.15);
  border:none;
  color:#fff;
  font-size:40px;
  padding:10px 18px;
  cursor:pointer;
  border-radius:50%;
}

.nav:hover{
  background:rgba(255,255,255,.35);
}

.prev{ left:40px; }
.next{ right:40px; }

@keyframes zoomIn{
  from{transform:scale(.7); opacity:0}
  to{transform:scale(1); opacity:1}
}

@media(max-width:900px){
  .gallery-grid{columns:2;}
}
@media(max-width:600px){
  .gallery-grid{columns:1;}
}

/* =============================Contact Section================================ */
.contact-section{
  padding:90px 8%;
  background:#f4fbff;
}

.contact-container{
  max-width:1200px;
  margin:auto;
}

.contact-header{
  text-align:center;
  margin-bottom:60px;
}

.contact-header h2{
  font-size:42px;
  font-weight:800;
  color:#004e64;
}

.contact-header p{
  color:#555;
  margin-top:10px;
}

/* INFO BOXES */
.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-bottom:70px;
}

.contact-info-box{
  background:#fff;
  padding:35px 25px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.4s;
}

.contact-info-box:hover{
  transform:translateY(-10px);
}

.contact-info-box i{
  font-size:36px;
  color:#00a6c7;
  margin-bottom:15px;
}

.contact-info-box h4{
  margin-bottom:10px;
  color:#003e4f;
}

.contact-info-box p{
  color:#555;
  line-height:1.6;
}

/* FORM + MAP */
.contact-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-form{
  background:#fff;
  padding:40px;
  border-radius:25px;
  box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.contact-form h3{
  margin-bottom:25px;
  color:#004e64;
}

.contact-form-group{
  margin-bottom:18px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #ddd;
  outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#00a6c7;
}

.contact-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#00a6c7,#007991);
  color:#fff;
  font-size:16px;
  cursor:pointer;
}
a.contact-btn{
    text-decoration: none;
}
/* MAP */
.contact-map iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:none;
  border-radius:25px;
}
.theme-toggle .fa-sun {
  display: none;
}

body.dark-mode .theme-toggle .fa-moon {
  display: none;
}

body.dark-mode .theme-toggle .fa-sun {
  display: inline-block;
}
body.dark-mode .contact-section {
  background:#0e1b22;
}

body.dark-mode .contact-form,
body.dark-mode .contact-info-box {
  background:#13232c;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){
  .contact-info-grid{
    grid-template-columns:1fr 1fr;
  }
  .contact-content{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .contact-info-grid{
    grid-template-columns:1fr;
  }
}
