/* ===================================
   CONNECT PAGE – DEDICATED STYLES
   =================================== */

/* --- Hero Section --- */
.con-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    background-color: #000;
}

.con-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.con-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}

.con-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.con-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
    margin-top: 60px;
}

.con-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.con-hero-content h1 span {
    display: block;
    margin-top: 6px;
    font-weight: 300;
    font-size: 2.8rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2), 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ===================================
   GET IN TOUCH – SPLIT SECTION
   =================================== */

.con-contact {
    background-color: #f5f5f5;
}

.con-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

/* ———— LEFT HALF (Black background) ———— */
.con-contact-left {
    background-color: #000;
    position: relative;
    display: flex;
}

/* Thin vertical accent line on the far left */
.con-left-accent {
    width: 4px;
    background-color: #c46015;
    flex-shrink: 0;
}

.con-left-content {
    padding: 80px 60px 80px 50px;
    flex: 1;
}

.con-contact-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

/* Info blocks */
.con-info-block {
    margin-bottom: 40px;
}

.con-info-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #c46015;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.con-info-block p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: #ccc;
}

/* "What to Expect" bullet list */
.con-expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.con-expect-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: #ccc;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.con-expect-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c46015;
    font-size: 1.1rem;
}

/* ———— RIGHT HALF (Form) ———— */
.con-contact-right {
    background-color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Form styles */
.con-form {
    width: 100%;
    max-width: 520px;
}

.con-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.con-form-group {
    margin-bottom: 24px;
}

.con-form-row .con-form-group {
    margin-bottom: 0;
}

.con-form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.con-form-group label .required {
    color: #c46015;
    font-weight: 600;
}

.con-form-group input,
.con-form-group textarea {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #111;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.con-form-group input:focus,
.con-form-group textarea:focus {
    border-bottom-color: #c46015;
}

.con-form-group input::placeholder,
.con-form-group textarea::placeholder {
    color: #aaa;
    font-weight: 300;
}

.con-form-group textarea {
    resize: vertical;
    min-height: 120px;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 12px;
}

.con-form-group textarea:focus {
    border-color: #c46015;
}

/* Send button */
.con-send-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background-color: #c46015;
    border: 2px solid #c46015;
    padding: 14px 48px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    margin-top: 8px;
}

.con-send-btn:hover {
    background-color: transparent;
    color: #c46015;
}

/* Professional Enquiries Only */
.con-disclaimer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.con-disclaimer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.con-disclaimer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

.con-disclaimer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}

.con-disclaimer ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: #666;
    padding-left: 18px;
    position: relative;
    line-height: 1.8;
}

.con-disclaimer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
}

.con-disclaimer-note {
    font-style: italic;
    color: #888 !important;
    font-size: 0.78rem !important;
}

/* ===================================
   RESPONSIVE – TABLET (≤1024px)
   =================================== */

@media (max-width: 1024px) {
    .con-hero-content h1 {
        font-size: 2.4rem;
    }

    .con-hero-content h1 span {
        font-size: 2.2rem;
    }

    .con-left-content {
        padding: 60px 40px 60px 36px;
    }

    .con-contact-right {
        padding: 60px 40px;
    }
}

/* ===================================
   RESPONSIVE – MOBILE (≤768px)
   =================================== */

@media (max-width: 768px) {
    .con-hero {
        height: 70vh;
        min-height: 450px;
    }

    .con-hero-content h1 {
        font-size: 1.9rem;
    }

    .con-hero-content h1 span {
        font-size: 1.7rem;
    }

    .con-contact-inner {
        grid-template-columns: 1fr;
    }

    .con-contact-heading {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }

    .con-left-content {
        padding: 50px 30px 50px 28px;
    }

    .con-contact-right {
        padding: 50px 30px;
    }

    .con-form {
        max-width: 100%;
    }

    .con-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .con-form-row .con-form-group {
        margin-bottom: 24px;
    }
}

/* ===================================
   RESPONSIVE – SMALL MOBILE (≤480px)
   =================================== */

@media (max-width: 480px) {
    .con-hero {
        height: 60vh;
        min-height: 360px;
    }

    .con-hero-content h1 {
        font-size: 1.4rem;
    }

    .con-hero-content h1 span {
        font-size: 1.25rem;
    }

    .con-contact-heading {
        font-size: 1.3rem;
        margin-bottom: 36px;
    }

    .con-left-content {
        padding: 40px 20px 40px 18px;
    }

    .con-contact-right {
        padding: 40px 20px;
    }

    .con-info-block {
        margin-bottom: 30px;
    }

    .con-send-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}
