/* --- Core Luxury Motion & Easing --- */
:root {
    --luxury-easing: cubic-bezier(0.165, 0.84, 0.44, 1);
    --gold-accent: #C9973A;
    --card-radius: 30px;
    --unified-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 2px 10px rgba(0,0,0,0.05);
}

/* --- Hero Section --- */
.contact-hero {
    position: relative;
    min-height: 50vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 40px;
    text-align: center;
}

.hero-overlay-refined {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&q=80&w=2000') center/cover;
    z-index: 0;
}

.hero-main-title {
    font-size: 58px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.9);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.hero-desc {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 700px;
}

/* --- Info Section Grid --- */
.info-section-refined {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.contact-grid-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 24px;
    text-decoration: none;
    text-align: center;
    box-shadow: var(--unified-shadow);
    transition: all 0.4s var(--luxury-easing);
}

.info-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(201, 151, 58, 0.1);
    color: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.info-card-premium h3 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card-premium p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.card-link-gold {
    color: var(--gold-accent);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 15px;
    display: inline-block;
}

/* --- Unified Interaction Section --- */
.form-section-premium {
    padding: 100px 0;
    background: #fcfcfc;
}

.main-contact-container {
    display: flex;
    background: linear-gradient(135deg, #111111, #1a1a1a);
    padding: 20px;
    border-radius: var(--card-radius);
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

/* --- Form Wrapper (Primary Section) --- */
.form-wrapper {
    flex: 1.6;
    z-index: 5;
}

.form-card-glass {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 60px;
    border-radius: var(--card-radius);
    height: 100%;
}

.form-title-refined {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.form-subtitle-refined {
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
}

/* Form Interactivity */
.premium-form-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-row-flex {
    display: flex;
    gap: 25px;
}

.floating-group {
    flex: 1;
}

.floating-group label {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.glass-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.4s var(--luxury-easing);
}

.glass-input:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(201, 151, 58, 0.15);
}

.textarea-large {
    resize: none;
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: 5px;
}

.btn-premium {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--luxury-easing);
}

.primary-glow {
    background: var(--gold-accent);
    color: #000000;
}

.primary-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(201, 151, 58, 0.3);
}

/* --- Support Card (Layered Section) --- */
.options-wrapper {
    flex: 1;
    margin-left: -20px; /* Precise Overlap */
    position: relative;
    z-index: 10;
}

.quick-contact-box-refined {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: var(--card-radius);
    height: 100%;
    box-shadow: -2px 0 0 var(--gold-accent), 0 20px 50px rgba(0,0,0,0.1); /* Gold blade accent */
    transition: all 0.4s var(--luxury-easing);
}

.quick-contact-box-refined:hover {
    transform: translateY(-6px);
}

.quick-options-heading {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.quick-links-rows {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.quick-option-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    background: #f8f8f8;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s var(--luxury-easing);
}

.quick-option-row:hover {
    background: #ffffff;
    border-color: var(--gold-accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.q-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.03);
    color: #1a1a1a;
    font-size: 1.2rem;
    transition: all 0.4s var(--luxury-easing);
}

.quick-option-row:hover .q-icon-circle {
    background: var(--gold-accent);
    color: #fff;
    transform: scale(1.15);
}

.q-option-text strong {
    display: block;
    color: #111;
    font-size: 1.05rem;
}

.q-option-text span {
    color: #888;
    font-size: 0.85rem;
}

.q-arrow-icon {
    margin-left: auto;
    color: var(--gold-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--luxury-easing);
}

.quick-option-row:hover .q-arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Social Grid */
.social-connect-box-refined h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.social-grid-minimal {
    display: flex;
    gap: 12px;
}

.social-min-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    color: #1a1a1a;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-min-link:hover {
    background: #000;
    color: #fff;
    transform: translateY(-4px);
}

/* --- Find Us Map --- */
.find-us-section {
    padding: 100px 0;
}

.find-us-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

.map-wrapper-refined {
    width: 100%;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--unified-shadow);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
}

.google-map-iframe.map-vivid {
    filter: none; /* Removed grayscale for a vivid, green, natural look */
}

/* --- Green Highlight System --- */
.card-highlight-green {
    border-top: 4px solid #2D5A27 !important;
    background: linear-gradient(to bottom, #ffffff, #fafffa) !important;
}

.card-highlight-green .card-icon-box {
    background: rgba(45, 90, 39, 0.1) !important;
    color: #2D5A27 !important;
}

.text-highlight-green {
    color: #274e23;
    font-weight: 800;
    background: rgba(45, 90, 39, 0.05);
    padding: 2px 4px;
    border-radius: 4px;
}

.address-text {
    font-weight: 600;
    color: #1a1a1a !important;
}

.green-wa {
    color: #25D366 !important;
}

.green-wa:hover {
    color: #128C7E !important;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .main-contact-container {
        flex-direction: column;
    }
    .options-wrapper {
        margin-left: 0;
        margin-top: -30px;
        padding-top: 30px; /* Create overlap visual on stack */
    }
    .quick-contact-box-refined {
        box-shadow: 0 -2px 0 var(--gold-accent), 0 20px 50px rgba(0,0,0,0.1);
    }
}

@media (max-width: 768px) {
    .hero-main-title { font-size: 42px; }
    .input-row-flex { flex-direction: column; }
    .form-card-glass { padding: 40px 25px; }
    .quick-contact-box-refined { padding: 40px 25px; }
}
