@font-face {
    font-family: "Antonio-Bold";
    src: url("fonts/Antonio-Bold.woff2") format("woff2");
    src: url("fonts/Antonio-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

@font-face {
  font-family: "Montserrat-Regular";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2");
  src: url("fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url("fonts/Montserrat-Bold.woff2") format("woff2");
  src: url("fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-Medium";
  src: url("fonts/Montserrat-Medium.woff2") format("woff2");
  src: url("fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("fonts/Montserrat-SemiBold.woff2") format("woff2");
  src: url("fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Montserrat-Light";
  src: url("fonts/Montserrat-Light.woff2") format("woff2");
  src: url("fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

body {
    font-family: "Montserrat-Regular";
    background-color: white;
    color: #292231;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 50px;
}

.booking-page {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 44px;
    align-items: start;
}

/* Left Section - Contact Info */
.contact-section {
    padding: 115px 0 30px 0;
}

.contact-title {
    font-family: "Montserrat-Bold";
    font-size: 48px;
    text-transform: uppercase;
    color: #292231;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.form-phone-icon {
    width: 20px;
    height: 20px;
}

.form-email-icon {
    width: 20px;
    height: 20px;
}

                    
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-slogan {
    font-family: "Montserrat-Medium";
    font-size: 18px;
    color: #6c5ce7;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.4;
}

.contact-slogan span {
    font-family: "Montserrat-Bold";
}

.back-btn-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-btn-icon img {
    width: 100%;
    height: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.contact-item {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

.social-media {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icon img {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: scale(1.1);
}


/* Right Section - Booking Form */
.form-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
}

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

.form-group-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 26px;
}

.form-label {
    display: block;
    font-family: "Montserrat-SemiBold";
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 16px;
    background: none;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-bottom-color: #6c5ce7;
}

.form-input::placeholder {
    color: #999;
    font-size: 16px;
}

.services-section {
    margin-bottom: 26px;
}

.services-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.service-checkbox:checked {
    background: #6c5ce7;
    border-color: #6c5ce7;
}

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

.service-label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.comments-section {
    margin-bottom: 32px;
}

.comments-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.comments-textarea {
    width: 100%;
    padding: 12px 0;
    align-content: center;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 16px;
    background: none;
    outline: none;
    resize: vertical;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.comments-textarea:focus {
    border-bottom-color: #6c5ce7;
}

.comments-textarea::placeholder {
    color: #999;
    font-size: 16px;
}

.submit-btn {
    background: linear-gradient(90deg, #FF3404 0%, #FF963A 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #FF3404 0%, #FF3404 100%) !important;
}

.back-btn {
    color: #292231;
    padding: 12px 0px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: "Montserrat-Medium";
    font-weight: 500;
    width: fit-content;
    position: relative;
}

.back-btn:hover {
    transform: translateX(-5px);
}

.back-btn:hover .back-btn-icon {
    transform: translateX(-3px);
}


@media (max-width: 1024px) {
    .container {
        padding: 20px 40px;
    }

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

    .contact-slogan {
        font-size: 16px;
    }

    .contact-info {
        font-size: 14px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .form-section {
        padding: 24px;
    }
    
    .form-group-inline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comments-section {
        margin-bottom: 24px;
    }
    
    
    .comments-title {
        font-size: 14px;
    }
    
    .comments-textarea {
        font-size: 14px;
        min-height: 70px;
    }

    .booking-page {
        gap: 30px;
    }
    
    
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-page {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    
    .container {
        padding: 20px 16px;
    }

    .contact-section {
        padding: 25px 0 20px 0;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-slogan {
        font-size: 16px;
    }
    
    .form-section {
        padding: 0px;
    }
    
    .form-group-inline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
