/* contact.css */

/* Override home.css body scroll lock */
body, html {
    overflow-y: auto !important;
    overflow-x: hidden;
    height: auto !important;
    min-height: 100vh;
}

.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 40px 20px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* HERO SECTION */
.hero-section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    transform: none; /* override home.css */
    margin: 0 auto;
}

.hero-logo {
    width: 350px;
    max-width: 100%;
    margin-bottom: 30px;
    mix-blend-mode: normal; /* override home.css if needed */
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.hero-title-wrapper .line {
    height: 1px;
    flex-grow: 1;
    max-width: 120px;
}

.line-left {
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.7));
}

.line-right {
    background: linear-gradient(to left, transparent, rgba(212, 175, 55, 0.7));
}

.hero-title {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 36px;
    letter-spacing: 3px;
    margin: 0;
    background: linear-gradient(to right, #d4af37, #fbda95, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ball-icon-wrapper {
    margin-bottom: 20px;
}

.hero-text-block {
    color: #e0e0e0; /* Beige/Gold-ish text color */
    font-family: 'Cinzel', serif;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.hero-text-block p {
    margin: 5px 0;
}

/* TWO COLUMN SECTION */
.two-column-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.outline-card {
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    background: rgba(11, 11, 11, 0.6);
    backdrop-filter: blur(5px);
}

.form-col {
    flex: 1;
    padding: 35px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #fff;
    padding: 14px 15px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d4af37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

.form-group select option {
    background: #111;
    color: #d4af37;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #d4af37;
}

.submit-btn {
    background: linear-gradient(90deg, #d4af37, #fbda95, #d4af37);
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coach-image-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    position: relative;
    /* Normally you would have an img inside, here we'll style the wrapper just in case */
}

.coach-image-placeholder {
    width: 100%;
    height: 100%;
    background: url('../media/herobg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    opacity: 0.8;
}

.commitment-card {
    padding: 35px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.commitment-title {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    letter-spacing: 2px;
    margin: 0 0 35px 0;
}

.commitment-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.icon-circle svg {
    width: 24px;
    height: 24px;
}

.icon-item span {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.commitment-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 0;
}

.commitment-logo {
    height: 25px;
    width: auto;
}

.commitment-desc {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.6;
}

/* LOOK FORWARD SECTION */
.look-forward-card {
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.look-forward-content {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 1;
}

.lf-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lf-icon svg {
    width: 24px;
    height: 24px;
}

.lf-text {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* FOOTER COPYRIGHT */
.footer-copyright {
    text-align: center;
    color: #d4af37;
    font-size: 12px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .two-column-layout {
        flex-direction: column;
    }
    
    .coach-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .commitment-icons {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .icon-item {
        min-width: 40%;
    }
    
    .look-forward-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-main {
        padding-top: 100px;
    }
}
