body {
    background-color: #0b0c10;
    color: #fff;
}

header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.navbar-brand {
    font-size: 1.3rem;
    color: #f8f9fa !important;
}

/* Hero Section */
.contact-hero {
    background-color: #00695c;
    background: linear-gradient(315deg, #0a0a0a 60%, #00695c 100%);
    padding: 100px 0 80px;
    text-align: center;
}



.contact-hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
    color: #fff;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #bbb;
    margin-top: 10px;
}

/* Contact Info */
.contact-info {
    background: #121212;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.05);
}

.contact-info h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.contact-info img {
    width: 160px;
    border-radius: 12px;
}

/* Form */
.contact-form {
    background: #141414;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.05);
}

.contact-form label {
    font-weight: 500;
    color: #ddd;
}

.form-control {
    background-color: #1e1e1e;
    border: 1px solid #333;
    color: #fff;
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: grey;
    box-shadow: 0 0 0 0.2rem rgba(0,198,255,0.25);
}

.btn-modern {
    color: #fff;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

footer {
    background: #0a0a0a;
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Fade animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}