/* PINK ACCOUNTANTS - FULL SITE STYLES */

/* --- Global Variables --- */
:root {
    --pink-primary: #d81b60;
    --pink-light: #fce4ec;
    --pink-hover: #ad1457;
    --bg-white: #ffffff;
    --bg-soft: #f9f9fb;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --transition: all 0.3s ease;
}

/* --- Resets --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg-white); 
    color: var(--text-main);
    line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- Navigation --- */
.navbar { 
    background: var(--bg-white); 
    padding: 1.5rem 0; 
    border-bottom: 1px solid var(--pink-light);
    position: sticky; top: 0; z-index: 1000;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; }
.logo-pink { color: var(--pink-primary); }

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--pink-primary); }

/* Hamburger Button Styling (Hidden on Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--pink-primary);
    border-radius: 10px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1600');
    background-size: cover; background-position: center; height: 500px; position: relative;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.6); width: 100%; height: 100%; display: flex; align-items: center; text-align: center; color: white;
}
.hero-overlay h1 { font-size: 3.5rem; margin-bottom: 15px; }
.text-pink-light { color: #ff80ab; }

#about-header { margin-bottom: 20px; }

/* --- About Section --- */
.about-intro { padding: 100px 0; background-color: var(--bg-white); }
.grid-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-image img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* --- Redesigned Reviews Section --- */
.reviews-visual {
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&q=80&w=1600');
    background-size: cover; background-position: center; background-attachment: fixed;
}
.reviews-overlay { background-color: rgba(0, 0, 0, 0.75); padding: 100px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; justify-content: center; }

.review-card { 
    background: var(--bg-white); 
    padding: 50px 40px; 
    border-radius: 4px; 
    border-left: 5px solid var(--pink-primary); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: var(--transition);
}
.review-card:hover { transform: translateY(-5px); }

.stars { color: #FFD700; font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px; }
.quote { font-style: normal; font-size: 1.1rem; color: var(--text-main); margin-bottom: 25px; line-height: 1.7; }
.client-info strong { display: block; color: var(--text-main); font-size: 1.1rem; }
.client-info span { font-size: 0.85rem; color: var(--pink-primary); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

#review-header { color: white; margin-bottom: 60px; text-align: center; }

/* --- Services Section --- */
.services { padding: 100px 0; background-color: var(--bg-white); }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.2rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.service-card {
    background: var(--bg-white); padding: 35px 25px; border-radius: 12px; 
    text-decoration: none; color: var(--text-main); transition: var(--transition); border: 1px solid #eee;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink-primary);
    box-shadow: 0 12px 24px rgba(216, 27, 96, 0.1);
}

/* --- CTA Banner (Dark Footer Style) --- */
.cta-banner { 
    padding: 80px 0; 
    text-align: center; 
    background-color: #222; 
    color: #ffffff; 
}
.cta-banner h2 { margin-bottom: 10px; font-size: 2.2rem; }
.cta-banner p { color: #bbb; margin-top: 25px; font-size: 0.9rem; }

/* --- Buttons --- */
.btn-primary {
    display: inline-block; 
    background-color: var(--pink-primary); 
    color: white; 
    padding: 14px 35px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    margin-top: 20px; 
    transition: var(--transition);
    border: 2px solid var(--pink-primary);
}
.btn-primary:hover { 
    background-color: transparent; 
    color: white; 
    transform: scale(1.05); 
}

/* --- Responsive & Mobile Menu Logic --- */
@media (max-width: 768px) {
    .grid-two-col { grid-template-columns: 1fr; }
    .hero-overlay h1 { font-size: 2.2rem; }
    .reviews-visual { background-attachment: scroll; }

    /* Show hamburger button */
    .menu-toggle { display: flex; }

    /* Transform nav-links into the mobile menu */
    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 20px 0;
        border-bottom: 2px solid var(--pink-primary);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        gap: 20px;
        text-align: center;
    }

    /* Class added by JavaScript to show menu */
    .nav-links.show {
        display: flex;
    }
}