/* ============ INQUIRY PAGE ANTON SC ADDITIONS ============ */
.inquiry-form-title {
    font-family: "Anton SC", "Play", sans-serif !important;
}

/* Make An Inquiry Page Styles */
.inquiry-section {
    position: relative;
    width: 100%;
    height: max-content;
    background-color: var(--primary-red);
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.inquiry-container {
    width: 85%;
    max-width: 1400px;
    position: relative;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

/* Form Column */
.inquiry-form-column {
    flex: 1 1 55%;
    min-width: 300px;
    position: relative;
}

.inquiry-form-wrapper {
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.inquiry-form-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--heading-white);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.inquiry-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--heading-white);
}

/* Custom Form Styles */
.inquiry-form {
    position: relative;
    z-index: 2;
}

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

.inquiry-form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-white);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.inquiry-form-required {
    color: var(--dark-bg);
    margin-left: 4px;
}

.inquiry-form-input,
.inquiry-form-textarea,
.inquiry-form-select {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--heading-white);
    font-size: 16px;
    transition: all 0.3s ease;
}
.inquiry-form-select:focus {
    color: #000;
}

.inquiry-form-input:focus,
.inquiry-form-textarea:focus,
.inquiry-form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--heading-white);
    outline: none;
}

.inquiry-form-input::placeholder,
.inquiry-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.inquiry-form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Custom Checkbox Styles */
.inquiry-form-checkbox-container {
    margin-bottom: 25px;
}

.inquiry-form-checkbox-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-white);
    margin-bottom: 15px;
}

.inquiry-form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.inquiry-form-checkbox-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
    position: relative;
}

.inquiry-real-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.inquiry-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.inquiry-checkbox-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    transition: all 0.3s ease;
}

.inquiry-real-checkbox:checked + .inquiry-checkbox-label::before {
    background-color: var(--dark-bg);
    border-color: var(--dark-bg);
}

.inquiry-checkbox-label::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    left: 5px;
    top: 3px;
    color: var(--heading-white);
    opacity: 0;
    transition: all 0.3s ease;
}

.inquiry-real-checkbox:checked + .inquiry-checkbox-label::after {
    opacity: 1;
}

/* Unique Photo Booth Film Strip Background */
.inquiry-film-strip-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.07;
    z-index: 0;
}

.inquiry-film-strip {
    position: absolute;
    width: 100px;
    height: 5000px;
    background-color: var(--dark-bg);
    top: -500px;
    transform: rotate(30deg);
}

.inquiry-film-strip-left {
    left: -50px;
}

.inquiry-film-strip-right {
    right: -50px;
}

.inquiry-film-sprocket-hole {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--primary-red);
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

/* Generate holes every 50px */
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(1) { top: 50px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(2) { top: 100px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(3) { top: 150px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(4) { top: 200px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(5) { top: 250px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(6) { top: 300px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(7) { top: 350px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(8) { top: 400px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(9) { top: 450px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(10) { top: 500px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(11) { top: 550px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(12) { top: 600px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(13) { top: 650px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(14) { top: 700px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(15) { top: 750px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(16) { top: 800px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(17) { top: 850px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(18) { top: 900px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(19) { top: 950px; }
.inquiry-film-strip-left .inquiry-film-sprocket-hole:nth-child(20) { top: 1000px; }

.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(1) { top: 75px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(2) { top: 125px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(3) { top: 175px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(4) { top: 225px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(5) { top: 275px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(6) { top: 325px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(7) { top: 375px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(8) { top: 425px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(9) { top: 475px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(10) { top: 525px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(11) { top: 575px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(12) { top: 625px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(13) { top: 675px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(14) { top: 725px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(15) { top: 775px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(16) { top: 825px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(17) { top: 875px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(18) { top: 925px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(19) { top: 975px; }
.inquiry-film-strip-right .inquiry-film-sprocket-hole:nth-child(20) { top: 1025px; }

/* Form Input Camera Focus Styling */
.inquiry-form-input:focus,
.inquiry-form-textarea:focus,
.inquiry-form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--heading-white);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 
                0 0 0 4px rgba(255, 255, 255, 0.05),
                0 0 0 8px rgba(255, 255, 255, 0.025),
                0 0 20px rgba(255, 255, 255, 0.2);
}

/* Camera Shutter Label Animation */
.inquiry-form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-white);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    transform-origin: left center;
    position: relative;
    padding-left: 25px;
}

.inquiry-form-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 15px;
    height: 7px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: all 0.3s ease;
}

.inquiry-form-input:focus + .inquiry-form-label::before,
.inquiry-form-textarea:focus + .inquiry-form-label::before,
.inquiry-form-select:focus + .inquiry-form-label::before {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    border-color: var(--heading-white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) rotate(45deg);
}

/* Polaroid Frame for Info Column */
.inquiry-info-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 15px solid rgba(255, 255, 255, 0.06);
    border-bottom-width: 60px;
}

.inquiry-info-wrapper::after {
    content: 'In Your Face Photo Booth';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Unique Submit Button */
.inquiry-submit-container {
    position: relative;
    margin-top: 40px;
}

.inquiry-submit-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--dark-bg);
    color: var(--heading-white);
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 1;
}

.inquiry-submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.inquiry-submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.inquiry-submit-button:hover::before {
    left: 100%;
}

/* Information Column */
.inquiry-info-column {
    flex: 1 1 35%;
    min-width: 300px;
    position: relative;
}

.inquiry-info-wrapper {
    position: relative;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inquiry-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--heading-white);
    margin-bottom: 30px;
    position: relative;
}

.inquiry-info-text-highlight {
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.inquiry-info-text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--dark-bg);
    opacity: 0.5;
}

.inquiry-contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.inquiry-contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--heading-white);
    transition: all 0.3s ease;
}

.inquiry-contact-info {
    font-size: 16px;
    color: var(--heading-white);
}

.inquiry-contact-method:hover .inquiry-contact-icon {
    transform: translateY(-5px) rotate(10deg);
}

/* Background Elements */
.inquiry-background-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Camera Lens Aperture Element */
.inquiry-lens-aperture {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 15px solid var(--dark-bg);
    opacity: 0.2;
}

.inquiry-lens-aperture::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid var(--dark-bg);
    transform: translate(-50%, -50%);
}

.inquiry-lens-aperture::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid var(--dark-bg);
    transform: translate(-50%, -50%);
}

/* Floating Photo Frame Elements */
.inquiry-photo-frame {
    position: absolute;
    background-color: var(--heading-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 10px;
    transform: rotate(-5deg);
    opacity: 0.1;
}

.inquiry-photo-frame-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: -100px;
    animation: floatFrame 10s infinite ease-in-out;
}

.inquiry-photo-frame-2 {
    width: 120px;
    height: 180px;
    bottom: 15%;
    right: -80px;
    transform: rotate(8deg);
    animation: floatFrame 12s infinite ease-in-out reverse;
}

@keyframes floatFrame {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

/* Diagonal Lines Pattern */
.inquiry-diagonal-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 50%, 
                                        rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.2;
}

/* Photo Corners for Form */
.inquiry-form-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
    border: 2px solid var(--heading-white);
    opacity: 0.3;
}

.inquiry-form-corner-top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.inquiry-form-corner-top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.inquiry-form-corner-bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.inquiry-form-corner-bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Moving Light Effect */
.inquiry-light-effect {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: movingLight 8s infinite;
    pointer-events: none;
}

@keyframes movingLight {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(50%) translateY(50%);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .inquiry-container {
        gap: 40px;
    }

    .inquiry-form-wrapper {
        padding: 40px;
    }

    .inquiry-form-title {
        font-size: 32px;
    }

    .inquiry-info-text {
        font-size: 16px;
    }

    .inquiry-lens-aperture {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 992px) {
    .inquiry-section {
        padding: 80px 0;
    }

    .inquiry-container {
        flex-direction: column;
        gap: 60px;
    }

    .inquiry-form-column,
    .inquiry-info-column {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .inquiry-photo-frame-1,
    .inquiry-photo-frame-2 {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .inquiry-form-wrapper {
        padding: 30px;
    }

    .inquiry-form-title {
        font-size: 28px;
    }

    .inquiry-form-checkbox-group {
        flex-direction: column;
        gap: 10px;
    }

    .inquiry-form-checkbox-item {
        flex: 1 1 100%;
    }

    .inquiry-lens-aperture {
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width: 576px) {
    .inquiry-section {
        padding: 120px 0 60px;
    }

    .inquiry-container {
        width: 90%;
    }

    .inquiry-form-wrapper {
        padding: 25px;
    }

    .inquiry-form-title {
        font-size: 24px;
    }

    .inquiry-form-label {
        font-size: 14px;
    }

    .inquiry-form-input,
    .inquiry-form-textarea,
    .inquiry-form-select {
        padding: 12px 15px;
        font-size: 14px;
    }

    .inquiry-form-corner {
        width: 20px;
        height: 20px;
    }

    .inquiry-submit-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .inquiry-info-text {
        font-size: 14px;
    }

    .inquiry-contact-icon {
        min-width: 40px;
        min-height: 40px;
        font-size: 16px;
    }

    .inquiry-contact-info {
        font-size: 14px;
    }
}

.inquiry-total-price {
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--heading-white);
    text-align: center;
    text-shadow: 0 0 5px rgba(255,255,255,0.2);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

#total-price {
    display: inline-block;
    color: #3dff87;
    font-size: 28px;
    font-weight: 900;
    margin-left: 8px;
    text-shadow: 0 0 8px rgba(255, 60, 60, 0.4);
    transition: all 0.3s ease;
}
