/* Common styles for all pages */
:root {
    --primary-blue: #6366f1;
    --primary-gray: #64748b;
    --border-color: #e2e8f0;
    --hover-color: #4f46e5;
    --text-dark: #1e293b;
    --text-light: #94a3b8;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* Navbar Styles */
.navbar {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.mobile-menu {
    display: none;
}

/* Footer Styles */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Add these new footer styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-group i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Update the responsive styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-section {
        text-align: left;
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .contact-info {
        align-items: flex-start;
    }

    .contact-group {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .contact-group span {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .social-links {
        justify-content: flex-start;
        margin-top: 1.2rem;
    }

    .footer-bottom {
        text-align: center;
        padding: 1.5rem 1rem 0;
        margin-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section ul li {
        margin-bottom: 0.7rem;
    }

    .footer-section ul li a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        gap: 1.8rem;
        padding: 0 1rem;
    }

    .contact-group {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-group i {
        margin-top: 0.3rem;
    }
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0.5rem 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 10px;
    }

    .mobile-menu span {
        width: 30px;
        height: 3px;
        background: var(--text-dark);
        transition: 0.3s;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Common utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-wrap {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}