.form-card-glass {
    background: rgba(255, 255, 255, 0.85); /* High opacity for readability */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 
        0 20px 40px -5px rgba(0, 0, 0, 0.05), 
        0 0 0 1px rgba(0,0,0,0.02); /* Crisp edge */
    border-radius: 24px;
}

/* Modern Labels: Small, Uppercase, Tracking Wide */
.form-label-modern {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    margin-left: 4px; /* Align with input text */
}

/* Modern Inputs: "Filled" Style */
.form-control-modern {
    background-color: #f1f5f9; /* Light gray/slate background */
    border: 2px solid transparent; /* Reserve space for border */
    border-radius: 12px;
    padding: 14px 16px; /* Taller touch targets */
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Input Focus State: White with Green Ring */
.form-control-modern:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15); /* Soft Green Shadow */
    outline: none;
    transform: translateY(-1px);
}

/* Placeholder styling */
.form-control-modern::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Character Count */
.char-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
}

/* Submit Button: Gradient & Shadow */
.btn-submit-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(34, 197, 94, 0.4);
    color: white;
}
.hero-large {
    padding-top: 80px;
    padding-bottom: 160px; /* Extra space at bottom for the card to overlap */
    background: radial-gradient(circle at 10% 20%, var(--hero-bg-1), transparent 40%),
                radial-gradient(circle at 90% 80%, var(--primary-subtle), transparent 40%);
    background-color: var(--hero-bg-2);
    position: relative;
    z-index: 0;
}

/* 2. The Unified Floating Card */
.unified-contact-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1); /* Deep, heavy shadow */
    overflow: hidden; /* Clips the green side panel */
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    margin-top: 20px;
}

/* 3. Right Side: Green Info Panel */
.info-panel-green {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    height: 100%;
    padding: 3rem;
    position: relative;
}

/* Decorative circles in the green panel */
.info-panel-green::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.info-panel-green::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

/* 4. Info Items inside Green Panel */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.info-item-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-link {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}
.info-link:hover { opacity: 1; color: white; }

/* 5. Social Icons Row */
.social-icons-row {
    display: flex;
    gap: 15px;
    margin-top: auto; /* Push to bottom */
}
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}
.social-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}
.hero-heading {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--text-dark) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-primary-custom {
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color);
}
.custom-accordion .accordion-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button {
    background-color: #fff;
    color: var(--text-dark);
    font-size: 1.05rem;
    box-shadow: none !important; 
    padding-right: 2rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-subtle); 
    color: var(--primary-dark); 
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2316a34a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.custom-accordion .accordion-body {
    line-height: 1.7;
    font-size: 0.95rem;
}

.blur-3xl { filter: blur(64px); }
.opacity-5 { opacity: 0.25; }