/* contact.css */
body {
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
    background: #fdfdfe;
}

/* Header Dark Overrides */
.hero-header-dark .hero-logo-text { color: white !important; }
.hero-header-dark .hero-nav-links a:not(.active) { color: rgba(255, 255, 255, 0.7) !important; }
.hero-header-dark .hero-nav-links a:not(.active):hover { color: white !important; }
.hero-header-dark .hero-btn-ghost { color: white !important; border: 1px solid rgba(255,255,255,0.2); }
.hero-header-dark .hero-btn-ghost:hover { background: rgba(255,255,255,0.1); }
.hero-header-dark .hero-nav-toggle { color: white !important; }

/* Premium Contact Section */
.contact-premium-section {
    padding: 8rem 0 5rem;
    background-color: transparent;
    background-image: radial-gradient(circle at 1px 1px, rgba(109, 40, 217, 0.35) 1px, transparent 0);
    background-size: 20px 20px;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.c-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.c-glow-1 {
    width: 500px;
    height: 500px;
    background: #6d28d9;
    top: -100px;
    left: -100px;
}

.c-glow-2 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    bottom: -50px;
    right: -100px;
}

.c-glow-3 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    top: 30%;
    left: 40%;
    opacity: 0.2;
}

.contact-wrapper {
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(109, 40, 217, 0.15);
}

/* Left Info Box */
.contact-info-box {
    padding: 4rem;
    color: #ffffff;
    position: relative;
    background: linear-gradient(135deg, #4c1d95 0%, #3b0764 100%);
    border-right: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ci-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.ci-accent {
    color: #c4b5fd;
}

.ci-sub {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.ci-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.ci-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
}

.ci-text h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.ci-text p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.ci-social-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.ci-social {
    margin-top: auto !important;
}

.ci-social-links {
    display: flex;
    gap: 1rem;
}

.ci-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.ci-social-links a:hover {
    background: #ffffff;
    color: #4c1d95;
    transform: translateY(-3px);
}

/* Decorative circles */
.ci-deco-circle-1 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 0;
}

.ci-deco-circle-2 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,181,253,0.15) 0%, transparent 70%);
    z-index: 0;
}

.contact-info-box > * {
    position: relative;
    z-index: 1;
}

/* Right Form Box */
.contact-form-box {
    padding: 4rem;
    background: white;
    position: relative;
}

.cf-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.cf-header p {
    color: #64748b;
    font-size: 1.05rem;
}

.cf-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.cf-input, .cf-select, .cf-textarea {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
    background: white;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1) !important;
}

.cf-input::placeholder, .cf-textarea::placeholder {
    color: #94a3b8;
}

.cf-submit-btn {
    background: #6d28d9;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf-submit-btn:hover {
    background: #5b21b6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.2);
    color: white;
}

@media (max-width: 991px) {
    .contact-info-box { padding: 3rem 2rem; }
    .contact-form-box { padding: 3rem 2rem; }
    .ci-title { font-size: 2.5rem; }
    .contact-premium-section { padding: 6rem 0 3rem; }
}

@media (max-width: 767px) {
    .cf-header h3 { font-size: 1.5rem; }
    .ci-title { font-size: 2rem; }
}
