.container {
    background-image: url('../images/GLjpg.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #00ffb3;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    gap: 20px;
    position: relative;
}

img {
    width: auto;
    max-width: 600px;
    object-fit: contain;
}

.container h1 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.container h2 {
    font-size: 17px;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.container .buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.container button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.container button:nth-of-type(1) {
    background: linear-gradient(135deg, #35ffbc, #1ef7cf);
    color: white;
}

.container button:nth-of-type(1):hover {
    background: linear-gradient(135deg, #42ffc6, #47ffd1);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(53, 255, 215, 0.4);
}

.container button:nth-of-type(2) {
    background: rgba(36, 36, 36, 0.95);
    color: #333;
}

.container button:nth-of-type(2):hover {
    background: rgb(27, 27, 27);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.google-reviews {
    position: absolute;
    cursor: pointer;
    bottom: 30px;
    right: 30px;
    display: flex;
    float: right;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stars {
    color: #FFA726;
    font-size: 18px;
    display: flex;
    gap: 1px;
}

.rating {
    font-weight: 700;
    font-size: 16px;
    color: white;
    margin-right: 6px;
}

.reviews-count {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.google-badge {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    padding: 3px 7px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.trailer-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.trailer-section h2 {
    font-size: 20px;
    font-weight: bolder;
    text-decoration: underline;
    margin-bottom: 20px;
}

.trailer-h2 {
    color: var(--bg-h1-colour);
}

.videos-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1200px;
}

.video-item {
    flex: 1;
    max-width: 550px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: block;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    padding: 1rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);

}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ffffff;
}

.modal-close1 {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ffffff;
    z-index: 1001;
}

.modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us {
    margin: 0;
}

.contact-us h1 {
    margin-top: 0;
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--bg-h1-colour);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #1c1c1c;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    background: var(--bg-input-box);
    color: var(--bg-h1-colour);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    accent-color: #00ffcc;
}

.required {
    color: #00ffcc;
}

.btn-submit {
    background: #00ffcc;
    color: black;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
}

.btn-submit:hover {
    background: rgb(0, 229, 168);
}

h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.checkmark-loader {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #00ffcc;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .videos-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }

    .video-item {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    img {
        max-width: 300px;
    }

    .trailer-section h2 {
        font-size: 20px;
    }

    @media (max-width: 500px) {
        .trailer-section {
            padding: 25px 15px;
        }

        .trailer-section h2 {
            margin-bottom: 20px;
        }
    }

    @media (max-width: 768px) {

        .container button {
            width: 60px;
            height: 60px;
            font-size: 20px;
            margin: 0 10px;
        }

        .container h1 {
            font-size: 15px;
        }

        .container h2 {
            font-size: 12px;
        }

        img {
            max-width: 300px;
        }

        .trailer-section h2 {
            font-size: 15px;
        }

        .con {
            gap: 10px;
            margin-top: 10px;
        }

        .stars {
            font-size: 10px;
        }

        .business-hours {
            font-size: 0.5rem;
        }
    }
}

.business-hours {
    background: var(--bg-business-hours);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    max-width: 90vw;
    width: 90%;
    max-height: 80vh;
    margin: 0 auto;
    border: 1px solid #00ffaa;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    /* Contain grid */
    position: relative;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    text-align: center;
    align-items: center;
}

.day-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.day-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--bg-h1-colour);
    position: relative;
    transition: all 0.3s ease;
    background: transparent;
    /* Start transparent */
}

.day-circle.active {
    background: #00ff88 !important;
    border-color: #00ff88 !important;
    box-shadow: 0 0 15px #00ff88 !important;
}

.day-circle.closed {
    background: #ff4444 !important;
    border-color: #ff4444 !important;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.5) !important;
}

.day-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--bg-h1-colour);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    z-index: 1;
    /* Dot behind background color */
}

.day-circle.active::after,
.day-circle.closed::after {
    background: white;
    /* White dot on colored circles */
    opacity: 1;
}


span {
    font-size: 0.85em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bg-h1-colour);
}

.time {
    font-size: 0.8em;
    font-weight: 400;
    color: var(--bg-h1-colour);
}

@media (max-width: 768px) {

    .contact-us h2 {
        font-size: 20px;

    }

    .container h1 {
        font-size: 10px;
    }

    .container h2 {
        font-size: 8px;
    }

    .form-group label {
        font-size: 12px;
    }

    img {
        max-width: 250px;
    }

    .modal-close {
        padding-left: 15px;
    }
}