/* Global Styles */
:root {
    --primary-blue: #4A7B8C;
    --primary-pink: #F5A7A7;
    --accent-gold: #E6B17E;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --background-light: #F9F5F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 250px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.nav-logo img {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-pink);
}
.nav-links a.cta-button.active {
    color: var(--text-light);
}

.nav-contact {
    margin-top: auto;
    text-align: center;
}

.nav-contact p {
    font-size: 0.9rem;
    color: #666;
}

.nav-contact a {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

/* Main Wrapper */
.main-wrapper {
    margin-left: 250px;
    width: calc(100% - 250px);
}

/* Footer Styles */
footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-pink);
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-section.about-section {
    padding-right: 2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-links a:hover {
    background-color: var(--text-light);
    color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-links i {
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-section.about-section {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1rem;
       
    }

    .main-wrapper {
        margin-left: 0;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    .hero-content,
    .about-hero,
    .services-hero,
    .why-choose-hero,
    .staff-hero,
    .careers-hero,
    .faq-hero,
    .contact-hero {
        padding: 1rem !important;
    }
}

/* Update the navigation CTA button */
.nav-links .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    background-color: var(--primary-pink);
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links .cta-button:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, 
        rgba(74, 123, 140, 0.97), 
        rgba(245, 167, 167, 0.97)),
        url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&q=80') center/cover;
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: white;
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background-color: var(--primary-pink);
    color: white;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-section .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    position: absolute;
    top: 25px;
    right: 20px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--background-light);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-contact {
        display: none;
    }

    .nav-contact.active {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--background-light);
        padding: 1rem;
        text-align: center;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0.3rem 0;
    }

    .nav-links li a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }

    /* Footer Responsive */
    .footer-content {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* General Responsive */
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    /* Hero Sections */
    .hero-content {
        padding: 3rem 1rem;
    }

    /* Grid Layouts */
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Forms */
    .form-wrapper {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    /* CTA Sections */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        max-width: 120px;
    }

    .nav-links li a {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
