﻿.ferry-booking-section {
        background: #f8fafc;
    }

    .ferry-booking-section .title h1 {
        font-size: 32px;
        font-weight: 700;
        color: #222;
        line-height: 1.3;
    }

    .ferry-booking-section .title p {
        color: #666;
        font-size: 15px;
        line-height: 1.8;
        margin-top: 15px;
    }


    /* Benefits */

    .booking-benefits {
        margin-top: 20px;
    }

    .benefit-card {
        height: 100%;
        min-height: 245px;
        padding: 30px 20px;
        margin-bottom: 20px;

        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 12px;

        text-align: center;

        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
    }


    /* Icons */

    .benefit-icon {
        width: 65px;
        height: 65px;

        margin: 0 auto 18px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        font-size: 28px;
    }

    .benefit-icon.availability {
        background: #fff3cd;
        color: #d39e00;
    }

    .benefit-icon.secure {
        background: #e8f7ee;
        color: #198754;
    }

    .benefit-icon.ticket {
        background: #e7f0ff;
        color: #0d6efd;
    }

    .benefit-icon.support {
        background: #e8f7ff;
        color: #0dcaf0;
    }


    /* Heading */

    .benefit-card h4 {
        font-size: 17px;
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
    }


    /* Description */

    .benefit-card p {
        margin: 0;
        color: #777;
        font-size: 13px;
        line-height: 1.6;
    }


    /* Mobile */

    @media (max-width: 767px) {

        .ferry-booking-section .title h1 {
            font-size: 24px;
        }

        .ferry-booking-section .title p {
            font-size: 14px;
        }

        .benefit-card {
            min-height: auto;
            padding: 25px 18px;
        }

        .benefit-icon {
            width: 58px;
            height: 58px;
            font-size: 24px;
        }
    }