/* Global Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f0f7f7;
    color: #333;
}

/* Header */
header {
    background-color: #007c91;
    color: white;
    padding: 25px;
    text-align: center;
}

header h1 {
    font-size: 50px;
    letter-spacing: 2px;
}

/* Navigation */
nav {
    background-color: #005f6b;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover {
    color: #a8f0f0;
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

/* Lists */
ul {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
}

ul li {
    padding: 8px 0;
}

/* Buttons */
button {
    background-color: #007c91;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background-color: #00a8a8;
}

/* CTA Button */
.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: #00b4d8;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

/* Form Styling */
form {
    max-width: 420px;
    margin: auto;
    text-align: left;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

/* VIDEO COLLAGE */
.video-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
}

.video-collage video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.video-collage video:hover {
    transform: scale(1.03);
}

/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Email Link */
.email-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.email-link a:hover {
    color: white;
    text-shadow: 0 0 8px #d4af37;
}

/* Cards (Services) */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    width: 240px;
    padding: 25px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* Destinations */
.destinations {
    list-style: none;
    font-size: 24px;
    padding: 0;
    line-height: 2;
}

/* CTA Section */
#cta {
    background: linear-gradient(120deg, #0096c7, #023e8a);
    color: white;
}

/* Footer */
footer {
    background-color: #005f6b;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }

    .video-collage {
        grid-template-columns: 1fr;
    }
}