 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #040D12;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}
 
.contact-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.contact-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 15s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #5C8374;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgb(24, 61, 61, 0.4);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgb(24, 61, 61, 0.3);
    top: 40%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 50px); }
}

/* ===== HERO SECTION ===== */
.contact-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgb(4, 13, 18,0.05), transparent 60%),
                linear-gradient(180deg, #040D12 0%, #040D12 50%, #040D12 100%);
}

.contact-hero-content {
    max-width: 900px;
}

.contact-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #5C8374 100%);
    /* -webkit-background-clip : text; */
    -webkit-text-fill-color: #5C8374;
    /* text-shadow: 0 0 40px rgb(92, 131, 116, 0.3); */
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== CONTACT DETAILS ===== */
.contact-details {
    padding: 100px 20px;
    text-align: center;
}

.details-container {
    max-width: 900px;
    margin: auto;
}

.details-container h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.details-intro {
    color: #cbd5e1;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.icon-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.icon-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 25px;
    background: #040D12;
    border-radius: 12px;
    border: 1px solid #183D3D;
    transition: all 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgb(4, 13, 18, 0.25);
    border-color: #5C8374;
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(4, 13, 18, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
    border: 1px solid rgb(24, 61, 61, 0.3);
}
svg
{
    color: #5C8374;
}
.icon-text h4 {
    color: #5C8374;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.icon-text a,
.icon-text p {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.icon-text a:hover {
    color: #5C8374;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #183D3D;
    border-radius: 8px;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #5C8374;
    color: #040D12;
    box-shadow: 0 0 15px rgb(4, 13, 18, 0.5);
}

/* ===== CONTACT OPTIONS ===== */
.contact-options {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.option-card {
    background: #040D12;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #183D3D;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
    border-color: #5C8374;
}

.option-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.option-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #5C8374;
}

.option-card p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
    padding: 100px 20px;
}

.form-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: rgb(4, 13, 18, 0.6);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    border: 1px solid rgb(24, 61, 61, 0.25);
    padding: 60px;
    box-shadow: 0 0 60px rgba(20, 48, 48, 0.1);
}

.form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.form-info p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-info img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 0 30px rgb(4, 13, 18, 0.2);
    border: 1px solid #183D3D;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: #183D3D;
    border: 1px solid #183D3D;
    color: #ffffff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5C8374;
    box-shadow: 0 0 15px rgb(24, 61, 61, 0.3);
    background: #040D12;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: #5C8374;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 0 30px rgb(92, 131, 116, 0.7);
    transition: all 0.2s ease;
    align-self: flex-start;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgb(92, 131, 116, 1);
}

/* ===== MAP SECTION ===== */
.contact-map {
    padding: 80px 20px;
    text-align: center;
}

.contact-map h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-map p {
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 1.05rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    max-width: 900px;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #040D12;
    box-shadow: 0 0 40px rgb(24, 61, 61, 0.2);
    max-height: 450px;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: filter 0.3s ease;
}

.map-container img:hover {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

/* ===== CTA SECTION ===== */
.contact-cta {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle, rgb(24, 61, 61, 0.15), transparent 60%);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta button {
    padding: 16px 48px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #001219;
    background: linear-gradient(135deg, #5C8374, #5f8b7a);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 0 40px rgb(92, 131, 116, 0.8);
    transition: all 0.25s ease;
}

.contact-cta button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 60px rgb(92, 131, 116, 1);
}
 
/* footer {
    text-align: center;
    padding: 30px 20px;
    color: #9ca3af;
    font-size: 0.85rem;
    border-top: 1px solid #183D3D;
    background: #040D12;
} */
 
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 25px;
    }
    
    .form-info img {
        display: none;
    }
    
    .map-container {
        max-height: 350px;
    }
}

@media (max-width: 600px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-form button {
        width: 100%;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        max-height: 280px;
    }
    
    .icon-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}