﻿/* ================= Ocean Button for Contact Form ================= */
.btn-ocean {
    background: linear-gradient(90deg, #0B3037 0%, #134E5E 100%) !important; /* ocean gradient */
    color: #FFFFFF !important; /* white text */
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    transition: 0.3s ease;
}

    .btn-ocean:hover {
        background: linear-gradient(90deg, #134E5E 0%, #0B3037 100%) !important;
        transform: translateY(-2px);
        color: #FFFFFF !important;
    }

.ocean-section {
    background: linear-gradient(135deg, rgba(11,48,55,0.85), rgba(19,78,94,0.85));
    color: #FFFFFF;
    padding: 80px 0;
}

    .ocean-section h1,
    .ocean-section p {
        text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    }
