/* =========================================
   1. GLOBAL RESET & BASE STYLES
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f4f9; color: #333333; }

/* =========================================
   2. NAVBAR
   ========================================= */
.navbar { display: flex; align-items: center; padding: 1rem 2rem; background-color: #1e1e2f; box-shadow: 0 4px 6px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 700; color: #ffffff; text-decoration: none; margin-right: auto; }
.nav-logo img { height: 40px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-link { color: #d1d1da; text-decoration: none; font-size: 1rem; font-weight: 500; transition: color 0.3s ease; }
.nav-link:hover { color: #ffffff; }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px 0; background-color: #ffffff; border-radius: 3px; transition: all 0.3s ease-in-out; }

/* =========================================
   3. PAGE HEADER
   ========================================= */
.page-header { background-color: #1e1e2f; color: #ffffff; padding: 4rem 2rem; text-align: center; }
.page-header h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.page-header p { color: #a0a0b8; font-size: 1.2rem; }

/* =========================================
   4. CONTACT METHODS SECTION
   ========================================= */
.contact-methods { padding: 5rem 2rem; background-color: #ffffff; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Contact Card */
.contact-card {
    background-color: #f4f4f9;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e4e8;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #4da6ff;
}

/* Icon Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.icon-wrapper svg { width: 35px; height: 35px; }

/* Specific Colors for each method */
.email-bg { background-color: #e3f2fd; color: #1976d2; }
.whatsapp-bg { background-color: #e8f5e9; color: #25d366; }
.phone-bg { background-color: #fff3e0; color: #f57c00; }

/* Card Text */
.contact-card h3 { font-size: 1.5rem; color: #1e1e2f; margin-bottom: 0.5rem; }
.contact-card p { color: #666666; margin-bottom: 1.5rem; font-size: 1rem; }
.contact-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4da6ff;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-link { color: #1e1e2f; }

/* =========================================
   5. FOOTER
   ========================================= */
.site-footer { background-color: #111118; color: #a0a0b8; padding: 4rem 2rem 0 2rem; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; padding-bottom: 3rem; }
.footer-col:first-child { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo { display: flex; justify-content: center; width: 100%; margin-bottom: 1rem; }
.footer-logo img { max-width: 200px; height: auto; display: block; margin: 0 auto; }
.footer-heading { color: #ffffff; font-size: 1.2rem; margin-bottom: 1.5rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: #a0a0b8; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: #4da6ff; }
.footer-contact { font-style: normal; line-height: 1.8; }
.footer-contact strong { color: #ffffff; font-weight: 600; }
.footer-bottom { background-color: #0a0a0f; padding: 1.5rem 2rem; text-align: center; border-top: 1px solid #2d2d44; }
.footer-bottom p { margin: 0; font-size: 0.9rem; }

/* =========================================
   6. RESPONSIVE
   ========================================= */
@media (max-width: 767px) {
    .hamburger { display: block; z-index: 100; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: #1e1e2f; width: 100%; text-align: center; transition: 0.3s; padding: 2rem 0; gap: 0; z-index: 99; }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 1.5rem 0; }
    .nav-link { color: #e0e0ff; font-size: 1.2rem; display: block; padding: 0.5rem; }
    .nav-logo { font-size: 1.1rem; }
    .page-header h1 { font-size: 2.2rem; }
}