/* ----------------- Hero Section ----------------- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.35); /* Dark overlay */
}

.hero-inner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 550px;
}

.hero-subtitle {
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.hero-title {
    font-size: 72px;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 450px;
}

.transparent-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.transparent-btn:hover {
    background-color: white;
    color: var(--text-dark);
}

/* Hero Booking Box */
.hero-booking {
    background-color: white;
    padding: 50px 40px;
    width: 400px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.hero-booking h3 {
    font-size: 26px;
    margin-bottom: 35px;
    text-align: left;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.input-icon-wrapper {
    position: relative;
    border-bottom: 1px solid #EBEBEB;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.input-icon-wrapper:focus-within {
    border-bottom-color: var(--primary);
}

.input-icon-wrapper input {
    width: 100%;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: transparent;
    cursor: pointer;
}

.input-icon-wrapper input:focus {
    outline: none;
}

.input-icon-wrapper i {
    color: #999;
    font-size: 18px;
}

.form-row {
    display: flex;
    gap: 30px;
}
.half {
    flex: 1;
}

.full-width {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    margin-top: 15px;
}
.full-width:hover {
    background-color: var(--primary);
    color: white;
}

/* ----------------- About Section ----------------- */
.section-padding {
    padding: 120px 0;
}

.about-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1;
    max-width: 480px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.section-title {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 30px;
}

.section-desc {
    font-size: 16px;
    margin-bottom: 50px;
    color: var(--text-light);
}

.stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 38px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #999;
}

.about-images {
    flex: 1;
    display: flex;
    gap: 20px;
    height: 550px;
}

.img-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.img-col img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.img-col img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.left-col .img-top {
    flex: 1.2;
}

.left-col .img-bottom {
    flex: 0.8;
}

.right-col .img-tall {
    height: 100%;
}

.hero-content > *, .hero-booking {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.hero-subtitle { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.3s; }
.hero-desc { animation-delay: 0.5s; }
.transparent-btn { animation-delay: 0.7s; }
.hero-booking { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 100px 0 50px;
    }

    .hero-inner {
        gap: 50px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-booking {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-inner {
        gap: 50px;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-booking {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .section-title {
        font-size: 32px;
    }

    .about-images {
        height: auto;
        flex-direction: column;
    }

    .left-col .img-top, .left-col .img-bottom {
        height: 250px;
    }

    .right-col .img-tall {
        height: 350px;
    }
}
