/* Hero Section */
.hero-section {
    padding: 240px 80px 0;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 790px;
}

.hero-title {
    font-family: 'Museo Sans', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -1%;
    text-transform: uppercase;
    color: #12171A;
    margin-bottom: 20px;
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.5;
    letter-spacing: -2%;
    color: #848A8F;
}

/* Sales Office Contact */
.sales-office {
    background-color: var(--color-neutral-100);
    padding: 30px 40px;
    margin-right: 100px;
    text-align: center;
}

.sales-office h3 {
    font-size: 18px;
    font-weight: 500;
    color: #4FBDB9;
    margin-bottom: 10px;
}

.sales-office .contact {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.sales-office .phone-number {
    font-size: 21px;
    font-weight: 600;
    color: #262B2F;
}

/* Background Image */
.bg-image {
    width: 100%;
    max-width: 1240px;
    padding: 0 100px;
    margin: 54px auto 0;
    height: 450px;
    background-image: url('/images/4391105469072d6270b68cba5b579fcba05d9057.jpg');
    background-size: cover;
    background-position: center;
}

/* Service Selection */
.service-selection {
    max-width: 1240px;
    width: 100%;
    padding: 0 60px;
    margin: 120px auto 0;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -2%;
    color: #12171A;
    margin: 80px 0 40px;
}

.service-tabs {
    display: flex;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: var(--space-5);
}

.service-tab {
    flex: 1;
    padding: 25px 168px;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 21px;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--color-neutral-300);
}

.service-tab.active {
    font-weight: var(--font-weight-bold);
    border-bottom: 3px solid var(--color-neutral-800);
    color: var(--color-neutral-800);
}

.service-tab:not(.active) {
    color: var(--color-neutral-500);
    font-weight: 500;
}

.service-tab.active::after {
    opacity: 1;
}

/* Form Section */
.form-section {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.contact-form {
    background-color: #F7F8F9;
    padding: var(--space-10) var(--space-20) 30px;
    margin: 0 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.form-field {
    width: 100%;
    display: flex;
    grid-column: span 2;
    margin-bottom: 10px;
}

.form-field:nth-last-child(1) {
    margin-bottom: 0;
}

.form-field.span-1 {
    grid-column: span 1;
}

.form-label {
    width: 160px;
    height: 60px;
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-neutral-800);
    padding: 17px 0;
    text-align: center;
    background-color: transparent;
}

.form-input {
    flex: 1;
    padding: 17px 30px;
    border: none;
    background-color: #FFFFFF;
    font-size: 18px;
    border-radius: 0;
    color: var(--color-neutral-900);
    border-bottom: 1px solid #C9CDD2;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: #262B2F;
}

.form-input::placeholder {
    color: #C9CDD2;
}

.form-input.filled {
    color: #12171A;
}

.reservation-form {
    background-color: var(--color-neutral-100);
    padding: var(--space-10) var(--space-20) 30px;
    margin: 0 60px;
}


/* Calendar */
.calendar-container {
    grid-area: calendar;
    grid-column: span 2;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    margin-top: 10px;
    flex: 1;
}

.calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.calendar-nav {
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.calendar-title {
    font-size: 18px;
    font-weight: 700;
    color: #262B2F;
    min-width: 120px;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.calendar-day-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #848A8F;
    margin-bottom: 10px;
}

#calendarDays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: #262B2F;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background-color: #F7F8F9;
}

.calendar-day.other-month {
    color: #9EA4A9;
}

.calendar-day.prev-month {
    color: #E8EBED;
}

.calendar-day.today {
    border: 1px solid #C9CDD2;
}

.calendar-day.selected {
    background-color: #262B2F;
    color: #4FBDB9;
    font-weight: 700;
}

.calendar-separator {
    width: calc(100% - 60px);
    height: 1px;
    background-color: #C9CDD2;
    margin: 20px 30px;
}

.calendar-today-label {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: #9EA4A9;
    margin-top: 10px;
}

/* Name field pre-filled */
.name-input {
    color: #12171A !important;
}

/* Privacy Policy */
.privacy-section {
    background-color: #FFFFFF;
    padding: 20px 40px;
    margin-left: 160px;
}

.privacy-text {
    font-size: 13px;
    line-height: 1.4;
    color: #848A8F;
    height: 180px;
    overflow-y: auto;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 30px 160px 20px;
    padding-left: 10px;
}

.submit-container {
    margin-left: 160px;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #262B2F;
    background-color: #FFFFFF;
    cursor: pointer;
    position: relative;
}

.checkbox.checked {
    background-color: #FFFFFF;
}

.checkbox.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #12171A;
    font-size: 12px;
    font-weight: bold;
}

#privacyAgree {
    display: none;
}

.checkbox-label {
    font-size: 16px;
    font-weight: 500;
    color: #53585D;
}

/* Submit Button */
.submit-button {
    display: block;
    margin: 30px auto;
    height: 60px;
    padding: 12px 132px;
    background-color: var(--color-neutral-800);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a1f23;
}

/* Location Section */
.location-section {
    padding-top: 120px;
    padding-left: 160px;
    display: flex;
    gap: var(--space-20);
    max-width: 1440px;
    margin: 0 auto 120px;
}

.location-title {
    margin: 0;
    font-size: var(--text-3xl);
    
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-bottom: 10px;
    min-width: 320px;
}

.location-details {
    display: flex;
    flex-direction: column;
}

.location-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 0.5px solid #9EA4A9;
    max-width: 320px;
}


.location-label {
    font-size: 16px;
    font-weight: 700;
    color: #12171A;
    width: 80px;
}

.location-value {
    font-size: 16px;
    color: var(--color-neutral-700);
    line-height: 1.6;
    letter-spacing: -0.02em;
    flex: 1;
}

.location-map {
    width: 900px;
    height: 640px;
    position: relative;
    overflow: hidden;
    /* background: transparent; */
}

.location-map-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 960px;
    max-width: none;
    height: 720px;
    object-fit: cover;
    object-position: right -100px;
}

/* .location-map::after {
    content: '';
    position: absolute;
    width: 900px;
    height: 800px;
    right: 0;
    bottom: 0;
    z-index: -1;
    
    background-image: url('/images/cbe11a247f79fdc16078bd9f0b24c6486d877914.jpg');
} */

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 150px 20px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .bg-image {
        height: 450px;
        margin: 40px 0;
    }

    .service-selection {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .service-tab {
        padding: 30px 20px;
        font-size: 16px;
    }

    .form-section {
        padding: 0 20px;
        overflow: hidden;
    }

    .contact-form {
        padding: 20px 20px 0 0;
        margin: 0;
    }

    .reservation-form {
        padding: 20px 20px 0 0;
        margin: 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-field {
        margin-bottom: 0;
    }

    .form-field.span-1 {
        grid-column: span 2;
    }

    .form-label {
        width: auto;
        min-width: 80px;
        height: auto;
        padding: 10px 0;
        text-align: left;
        font-size: 16px;
        text-align: center;
    }

    .form-input {
        padding: 14px 20px;
        font-size: 16px;
    }

    .calendar-container {
        width: 100%;
        padding: 20px;
        margin-top: 10px;
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day {
        width: 33px;
        height: 33px;
        font-size: 14px;
    }

    .privacy-section {
        margin: 0;
        margin-left: 80px;
        padding: 20px;
    }

    .privacy-checkbox {
        margin: 30px 0 30px 80px;
        gap: 16px;
    }

    .checkbox-label {
        font-size: 16px;
    }

    .submit-container {
        margin: 0;
        margin-left: 80px;
        display: flex;
        flex-direction: column;
        padding-bottom: 10px;

    }

    .submit-button {
        width: 100%;
        padding: 12px 24px;
    }

    .location-section {
        padding: 84px 0 0;
        gap: 30px;
        flex-direction: column;
        margin: 0 auto 100px;
    }

    .location-info {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .location-details {
        gap: 0;
    }

    .location-item {
        width: 100%;
        max-width: 100%;
    }

    .location-item:nth-last-child(1) {
        border-bottom: 0.5px solid #9EA4A9;
    }

    .location-label {
        width: 80px;
        font-size: 16px;
    }

    .location-value {
        font-size: 16px;
    }

    .location-map {
        width: 100%;
        height: 300px;
    }

    .location-map-img {
        position: absolute;
        right: 0;
        top: 0;
        width: 135%;
        height: 300px;
        object-fit: cover;
    }

    .sales-office {
        display: none;
    }

}