:root {
    --primary-color: #0c1e33;
    --secondary-color: #d4a017; /* Gold accent */
    --accent-color: #1a3a5f;
    --text-color: #333;
    --light-text: #fff;
    --bg-light: #f0fdf4; /* Very subtle green */
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--secondary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: url('images/hero.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--light-text);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 30, 51, 0.8) 0%, rgba(12, 30, 51, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-actions {
    margin-top: 30px;
}

.quick-routes {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.quick-routes a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.quick-routes a:hover {
    opacity: 1;
    border-bottom-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #b88a10;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
}

.booking-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.booking-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.booking-steps {
    list-style: none;
    margin-bottom: 40px;
}

.booking-steps li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.booking-steps li span {
    background-color: var(--secondary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.contact-info {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
}

.phone-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    margin-top: 10px;
}

.booking-iframe-container {
    position: fixed;
    top: 100px;
    right: 50px;
    z-index: 2000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    border: 8px solid #fff;
    transition: var(--transition);
}

.booking-iframe-container:hover {
    transform: scale(1.02);
}

.booking-iframe-container iframe {
    display: block;
}

/* Add space for the fixed iframe on large screens */
@media (min-width: 1200px) {
    body {
        padding-right: 450px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-iframe-container {
        position: relative;
        top: 0;
        right: 0;
        margin: 40px auto;
        order: -1; /* Move to top of the flex container if needed, but here it's outside main content */
    }

    body {
        padding-right: 0;
    }

    .booking-container {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-info {
        text-align: center;
        width: 100%;
    }
    
    .booking-steps li {
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}
