/* ─── HERO CONTACT ─── */
#hero-contact {
    padding-top: 100px;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: transparent;
}

/* Removed backgrounds */

.hero-banner-shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
    animation: float 20s infinite alternate ease-in-out;
}

.s1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
}

.s2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    opacity: 0.2;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(15deg);
    }
}

.hero-contact-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding: 6rem 0;
}

.hero-contact-text {
    color: var(--gray-900);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-200);
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-badge .material-symbols-rounded {
    font-size: 1.1rem;
    color: var(--blue-400);
}

.hero-contact-text h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.hero-contact-text h1 span {
    background: linear-gradient(135deg, var(--blue-400), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-contact-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.8;
}

/* ─── CONTACT CARD ─── */
.contact-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 20px 80px rgba(15, 23, 42, 0.08);
    width: 100%;
    max-width: 540px;
    justify-self: end;
}

.contact-card h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

/* ─── CUSTOM SELECT ─── */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    color: var(--gray-900);
    background: #ffffff;
    border: 1.5px solid var(--card-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 76px;
    width: 100%;
}

.custom-select-trigger.has-value {
    color: var(--gray-900);
}

.custom-select-trigger:hover {
    border-color: var(--blue-500);
    /* Changed to a more vibrant blue */
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select-trigger .material-symbols-rounded {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--blue-500);
    font-size: 1.5rem;
}

.custom-select.open .custom-select-trigger .material-symbols-rounded {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 280px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.custom-option:hover {
    background: var(--blue-50);
    color: var(--blue-700);
    border-left-color: var(--blue-500);
}

.custom-option.selected {
    background: #fefce8;
    /* Match the yellowish highlight in user's image if preferred, or keep blue */
    background: rgba(37, 99, 235, 0.04);
    color: var(--blue-700);
    font-weight: 700;
    border-left-color: var(--blue-700);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

/* Specific styling for label inside the custom select area */
.form-group:has(.custom-select-wrapper) label {
    display: none;
    /* Hide the outer label and use inner one or integrated look */
}

.custom-select-trigger::before {
    content: 'Enquiry for';
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a1a1aa;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--card-border);
    border-radius: 12px;
    padding: 1.2rem;
    color: var(--gray-900);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.25s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--blue-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: auto;
    background: #ffffff;
    color: #1a2332;
    border: 1.5px solid #256be3;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: var(--blue-400);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
}

/* ─── SOCIAL LINKS ─── */
.social-links-wrap {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
}

.social-links-wrap strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.social-grid {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--blue-500);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 78, 216, 0.2);
}

/* ─── LOCATION ─── */
#location {
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
    align-items: center;
}

.location-info h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.location-info>p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.loc-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.loc-detail-icon {
    width: 38px;
    height: 38px;
    background: var(--blue-50);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    flex-shrink: 0;
}

.loc-detail-body strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.loc-detail-body span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--card-border);
    height: 340px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ─── FOOTER CONTACT FORM ─── */
.footer-contact-form button {
    width: 100%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.footer-contact-form button:hover {
    opacity: 0.88;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-contact-inner {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-cell-tall {
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-card {
        justify-self: center;
        padding: 2rem;
    }
}

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }

    .contact-card {
        padding: 1rem;
        border-radius: var(--radius-lg);
        max-width: 320px;
        margin: 0 auto;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .hero-contact-inner {
        padding: 2.5rem 0;
        gap: 1.5rem;
    }

    .hero-contact-text h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .hero-contact-text p {
        text-align: center;
        margin: 0 auto;
        font-size: 1rem;
    }

    .btn-submit {
        padding: 0.85rem 2.5rem;
        font-size: 1rem;
        display: flex;
        margin: 1.5rem auto 0;
    }

    .form-group input,
    .form-group textarea,
    .custom-select-trigger {
        padding: 1rem 0.8rem;
    }

    .form-group textarea {
        min-height: 90px;
    }
}