/* SNS Consulting - Main Stylesheet */
/* Colors from Brand Guide:
   Primary: Sage #99a594, Navy #2f337b, Charcoal #3b3838
   Secondary: Light Gray #e7e7e7, White #ffffff
   Typography: MADE Mirage for headings (using Georgia as web fallback), Lato for body
*/

:root {
    --sage: #99a594;
    --navy: #2f337b;
    --charcoal: #3b3838;
    --light-gray: #e7e7e7;
    --white: #ffffff;
}

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

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 400;
    color: var(--navy);
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sage);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==================== HEADER ==================== */
header {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--navy);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--sage);
    color: var(--white);
    border: 2px solid var(--sage);
}

.btn-primary:hover {
    background: transparent;
    color: var(--sage);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.btn-navy:hover {
    background: transparent;
    color: var(--navy);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(rgba(47, 51, 123, 0.85), rgba(47, 51, 123, 0.85)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600') center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 90px;
}

.hero-content {
    max-width: 900px;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-taglines h3 {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--light-gray);
    margin-bottom: 10px;
}

.hero-taglines h3:first-child {
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 400;
}

.hero .btn {
    margin-top: 30px;
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(rgba(47, 51, 123, 0.9), rgba(47, 51, 123, 0.9)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600') center/cover;
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== SECTION STYLES ==================== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== MISSION & VISION ==================== */
.mission-vision {
    background: var(--light-gray);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-box, .vision-box {
    background: var(--white);
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mission-box h2, .vision-box h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* ==================== SERVICES ==================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 50px;
    color: var(--navy);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Service Detail Page */
.service-detail {
    padding: 60px 0;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.service-detail h2:first-child {
    border-top: none;
    padding-top: 0;
}

.service-detail p {
    margin-bottom: 20px;
}

.service-detail ul {
    margin: 20px 0 30px 20px;
}

.service-detail li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* ==================== VALUE SECTION ==================== */
.value-section {
    background: var(--navy);
    color: var(--white);
}

.value-section h2 {
    color: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.value-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.value-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.value-list {
    list-style: none;
}

.value-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
}

.value-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
    font-size: 18px;
}

.value-list strong {
    color: var(--sage);
}

.value-image img {
    width: 100%;
    border-radius: 0;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(rgba(153, 165, 148, 0.9), rgba(153, 165, 148, 0.9)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600') center/cover;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== ABOUT PAGE ==================== */
.about-intro {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

.founder-section {
    background: var(--light-gray);
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.founder-image img {
    width: 100%;
    border-radius: 0;
}

.founder-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.founder-content p {
    margin-bottom: 20px;
    color: #555;
}

/* ==================== WHY WORK WITH US ==================== */
.why-us-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.why-us-table th {
    background: var(--navy);
    color: var(--white);
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.why-us-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--light-gray);
}

.why-us-table tr:hover {
    background: #f9f9f9;
}

.why-us-table td:first-child {
    font-weight: 700;
    color: var(--navy);
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--sage);
}

.contact-info-box {
    background: var(--light-gray);
    padding: 40px;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--sage);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: #666;
}

/* ==================== CAPABILITY STATEMENT PAGE ==================== */
.capability-section {
    background: var(--white);
}

.capability-download {
    text-align: center;
    padding: 40px;
    background: var(--light-gray);
    margin-bottom: 40px;
}

.capability-download h3 {
    margin-bottom: 15px;
}

.capability-preview {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--light-gray);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section h4 {
    color: var(--sage);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--sage);
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.contact-info i {
    margin-right: 10px;
    color: var(--sage);
}

.certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.certifications img {
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .mission-vision-grid,
    .value-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    nav.active ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-taglines h3 {
        font-size: 1rem;
    }
    
    .hero-taglines h3:first-child {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero .btn {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }
    
    .hero .btn + .btn {
        margin-left: auto !important;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* ==================== SERVICES PAGE ==================== */
.hero-small {
    min-height: 300px;
    padding-top: 120px;
}

.hero-small .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-small .hero-content p {
    font-size: 1.1rem;
}

/* Services Navigation Pills */
.services-nav {
    background: var(--light-gray);
    padding: 20px 0;
    position: sticky;
    top: 90px;
    z-index: 100;
}

.services-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-pill:hover {
    background: var(--navy);
    color: var(--white);
}

.nav-pill i {
    font-size: 1rem;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background: var(--light-gray);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-content {
    padding-right: 20px;
}

.service-detail-grid.reverse .service-detail-content {
    padding-right: 0;
    padding-left: 20px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-large i {
    font-size: 2rem;
    color: var(--white);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-tagline {
    color: var(--sage);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: var(--navy);
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--sage);
    font-size: 1.1rem;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-weight: 400;
    margin-bottom: 0;
}

.btn-full {
    width: 100%;
    padding: 16px 30px;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}

.contact-info-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-details a,
.contact-details p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--sage);
}

.schedule-card {
    background: var(--navy);
}

.schedule-card h3,
.schedule-card p {
    color: var(--white);
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link i {
    color: var(--white);
    font-size: 1.3rem;
}

.social-link:hover {
    background: var(--sage);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.faq-item h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== RESPONSIVE - SERVICES & CONTACT ==================== */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
    
    .service-detail-content {
        padding-right: 0;
        padding-left: 0;
    }
    
    .service-detail-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-small {
        min-height: 250px;
        padding-top: 100px;
    }
    
    .hero-small .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-nav {
        top: 80px;
        padding: 15px 0;
    }
    
    .nav-pill {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .service-detail {
        padding: 50px 0;
    }
    
    .service-detail-content h2 {
        font-size: 1.6rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-nav-grid {
        gap: 8px;
    }
    
    .nav-pill {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .nav-pill i {
        display: none;
    }
}
