
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT HERO SECTION
══════════════════════════════════════════════════════════════════════════ */
.contact-hero {
    padding: 140px 0 100px;
    background: #0c2c17; /* Updated to deep green */
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Updated RGB values for #d39f3c and #9b7826 */
    background-image:
        radial-gradient(circle at 20% 40%, rgba(211, 159, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(155, 120, 38, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 40px; left: 40px; right: 40px; bottom: 40px;
    border: 1px solid rgba(211, 159, 60, 0.08); /* Updated */
    pointer-events: none;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.hero-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(211, 159, 60, 0.3); /* Updated */
    background: rgba(211, 159, 60, 0.06); /* Updated */
}

.hero-icon i {
    font-size: 1.8rem;
    color: #d39f3c; /* Updated */
}

.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #d39f3c; /* Updated */
    margin: 0 0 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #f5f0e8;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
}

.hero-title em {
    font-style: italic;
    color: #d39f3c; /* Updated */
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin: 32px 0;
}

.hero-divider span {
    display: block;
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, #d39f3c, transparent); /* Updated */
}

.hero-divider i {
    display: block;
    width: 6px;
    height: 6px;
    background: #d39f3c; /* Updated */
    border-radius: 50%;
    font-style: normal;
}

.hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: #b4c5b9; /* Tinted green-grey */
    max-width: 700px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT INFO SECTION
══════════════════════════════════════════════════════════════════════════ */
.contact-info-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f4f7f5 0%, #ffffff 100%); /* Greenish off-white */
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(211, 159, 60, 0.2), transparent); /* Updated */
}

.contact-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: Contact Details */
.contact-details-col {
    padding-right: 20px;
}

.section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #d39f3c; /* Updated */
    margin: 0 0 20px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #0c2c17; /* Updated */
    line-height: 1.2;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.section-title .highlight {
    color: #d39f3c; /* Updated */
    font-style: italic;
}

.text-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
}

.text-divider span {
    display: block;
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, #d39f3c, transparent); /* Updated */
}

.text-divider i {
    display: block;
    width: 6px;
    height: 6px;
    background: #d39f3c; /* Updated */
    border-radius: 50%;
    font-style: normal;
}

.section-body {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 2;
    color: #3b4e41; /* Tinted dark green-grey */
    margin: 0 0 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(211, 159, 60, 0.4); /* Updated */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 159, 60, 0.08); /* Updated */
    flex-shrink: 0;
    transition: background 0.3s;
}

.contact-icon:hover {
    background: rgba(211, 159, 60, 0.18); /* Updated */
}

.contact-icon i {
    color: #d39f3c; /* Updated */
    font-size: 1.1rem;
}

.contact-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0c2c17; /* Updated */
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

.contact-content p {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: #3b4e41; /* Updated */
    margin: 0;
}

.contact-content a {
    color: #3b4e41; /* Updated */
    text-decoration: none;
    transition: color 0.3s;
}

.contact-content a:hover {
    color: #d39f3c; /* Updated */
}

/* Right: Image */
.contact-image-col {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(211, 159, 60, 0.2); /* Updated */
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 159, 60, 0.15) 0%, rgba(12, 44, 23, 0.4) 100%); /* Updated */
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 4px;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════════════════
   ENQUIRY FORM SECTION (Matching home_enquiry.php)
══════════════════════════════════════════════════════════════════════════ */
.enquiry-section {
    padding: 100px 0;
    background: #0c2c17; /* Updated */
    position: relative;
    overflow: hidden;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 50%, rgba(211, 159, 60, 0.07) 0%, transparent 50%),
      radial-gradient(circle at 85% 30%, rgba(155, 120, 38, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.enquiry-section::after {
    content: '';
    position: absolute;
    top: 30px; left: 30px; right: 30px; bottom: 30px;
    border: 1px solid rgba(211, 159, 60, 0.08); /* Updated */
    pointer-events: none;
}

.enquiry-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.enquiry-text-col {}

.enquiry-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #d39f3c; /* Updated */
    margin: 0 0 18px;
}

.enquiry-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #f5f0e8;
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.enquiry-title em {
    font-style: italic;
    color: #d39f3c; /* Updated */
}

.enquiry-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 28px;
}
.enquiry-divider span {
    display: block;
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, #d39f3c, transparent); /* Updated */
}
.enquiry-divider i {
    display: block;
    width: 6px; height: 6px;
    background: #d39f3c; /* Updated */
    border-radius: 50%;
    font-style: normal;
}

.enquiry-body {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.95;
    color: #b4c5b9; /* Updated */
    margin: 0 0 40px;
}

.enquiry-phone-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.enquiry-phone-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(211, 159, 60, 0.4); /* Updated */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 159, 60, 0.08); /* Updated */
    flex-shrink: 0;
    transition: background 0.3s;
}
.enquiry-phone-icon:hover {
    background: rgba(211, 159, 60, 0.18); /* Updated */
}
.enquiry-phone-icon i {
    color: #d39f3c; /* Updated */
    font-size: 1.1rem;
}

.enquiry-phone-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b4c5b9; /* Updated */
    margin: 0 0 6px;
}

.enquiry-phone-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #d39f3c; /* Updated */
    margin: 0;
    letter-spacing: 1px;
}

.enquiry-form-col {}

.enquiry-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(211, 159, 60, 0.18); /* Updated */
    border-radius: 4px;
    padding: 48px 44px;
    position: relative;
}

.enquiry-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 40px; right: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d39f3c, transparent); /* Updated */
}

.enquiry-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #f5f0e8;
    text-align: center;
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

.enquiry-form-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b4c5b9; /* Updated */
    text-align: center;
    margin: 0 0 32px;
}

.lux-field {
    position: relative;
    margin-bottom: 20px;
}

.lux-input,
.lux-textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: none;
    border-bottom: 1px solid rgba(211, 159, 60, 0.25); /* Updated */
    border-radius: 0;
    padding: 14px 4px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #f5f0e8;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.lux-input::placeholder,
.lux-textarea::placeholder {
    color: #8b9a8f; /* Tinted for green background */
    font-size: 0.82rem;
    letter-spacing: 1px;
}
.lux-input:focus,
.lux-textarea:focus {
    border-bottom-color: #d39f3c; /* Updated */
    background: rgba(211, 159, 60, 0.04); /* Updated */
}

.lux-textarea {
    height: 110px;
    resize: none;
}

.lux-field::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: #d39f3c; /* Updated */
    transition: width 0.4s ease;
}
.lux-field:focus-within::after {
    width: 100%;
}

.lux-submit {
    width: 100%;
    padding: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #0c2c17; /* Updated */
    background: linear-gradient(135deg, #d39f3c 0%, #e8c471 50%, #d39f3c 100%); /* Updated gradient based on new gold */
    border: none;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lux-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.lux-submit:hover::before { left: 100%; }
.lux-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(211, 159, 60, 0.35); /* Updated */
}
.lux-submit:active { transform: translateY(0); }

.lux-feedback {
    display: none;
    margin-top: 14px;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 10px;
    border-radius: 2px;
}
.lux-feedback.success {
    color: #7dbb8a;
    background: rgba(125,187,138,0.08);
    border: 1px solid rgba(125,187,138,0.2);
}
.lux-feedback.error {
    color: #d4856a;
    background: rgba(212,133,106,0.08);
    border: 1px solid rgba(212,133,106,0.2);
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .contact-hero { padding: 100px 0 70px; }
    .hero-inner { padding: 0 24px; }
    .hero-title { font-size: 2.5rem; }

    .contact-info-section,
    .enquiry-section { padding: 80px 0; }

    .contact-info-inner,
    .enquiry-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
    }

    .contact-details-col,
    .enquiry-text-col { padding-right: 0; }

    .section-title,
    .enquiry-title { font-size: 2.3rem; }

    .enquiry-form-card { padding: 36px 28px; }

    .contact-info-inner,
    .enquiry-inner { padding: 0 24px; }
}

@media (max-width: 640px) {
    .contact-hero { padding: 80px 0 50px; }
    .hero-title { font-size: 2rem; }
    .section-title,
    .enquiry-title { font-size: 1.9rem; }

    .enquiry-form-card { padding: 28px 20px; }

    .contact-info-inner,
    .enquiry-inner { padding: 0 20px; }
}