/*
Theme Name: Micro Family Office Landing Page
Theme URI: https://www.saylerfamilyoffice.com
Author: Adam Sayler / Advantage Advisors LLC
Author URI: https://www.saylerfamilyoffice.com
Description: A custom landing page theme for The Entrepreneur's Guide to Micro Family Offices lead generation
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: micro-family-office
Tags: landing-page, one-page, business, marketing, custom

This theme is designed as a standalone landing page theme for capturing leads.
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow: hidden;
    background-image: url('https://www.saylerfamilyoffice.com/wp-content/uploads/2025/11/homepage-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta-button {
    display: inline-block;
    background: #48bb78;
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    background: #38a169;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(72, 187, 120, 0.6);
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 4rem 2rem;
}

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

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-section .story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.story-section .highlight {
    background: rgba(72, 187, 120, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.story-section .reveal {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #48bb78;
    border-radius: 4px;
}

/* Pain Points Section */
.pain-points {
    background: #fff5f5;
    padding: 3rem 2rem;
    border-left: 6px solid #f56565;
}

.pain-points h3 {
    color: #c53030;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.pain-points ul {
    list-style: none;
    padding: 0;
}

.pain-points li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
    border-bottom: 1px solid #fed7d7;
}

.pain-points li:last-child {
    border-bottom: none;
}

.pain-points li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #f56565;
    font-weight: bold;
    font-size: 1.3rem;
}

.program-highlight {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid #e2e8f0;
}

.program-highlight strong {
    color: #2c5282;
    font-size: 1.1rem;
}

/* Results Section */
.results-section {
    background: white;
    padding: 4rem 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #48bb78;
    text-align: center;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
}

.result-context {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

/* Testimonial Quote */
.testimonial-quote {
    background: white;
    padding: 2rem;
    border-left: 4px solid #2c5282;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #2d3748;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: #2c5282;
    margin-top: 1rem;
    font-size: 1rem;
}

/* Executive Summary Section */
.executive-summary {
    background: #f7fafc;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.25rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.summary-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.summary-card h3 {
    color: #2c5282;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.summary-card p, 
.summary-card ul {
    color: #4a5568;
    line-height: 1.7;
}

.summary-card ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.summary-card li {
    margin-bottom: 0.75rem;
}

.checkmark-list {
    list-style: none;
    padding-left: 0;
}

.checkmark-list li {
    padding-left: 2rem;
    position: relative;
}

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background: #2c5282;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.highlight-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Resources Section */
.resources-section {
    background: white;
    padding: 4rem 2rem;
}

.resource-tag {
    display: inline-block;
    background: #e6f4ea;
    color: #2c5282;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Benefits Grid */
.benefits {
    margin-top: 3rem;
}

.benefits h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 600;
}

.benefit-card p {
    display: none;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 3rem 2rem 2rem;
}

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

.about-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #48bb78;
    flex-shrink: 0;
}

.bio-text {
    flex: 1;
}

.bio-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.bio-text p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #48bb78;
}

.footer-address {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.close-button {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #718096;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #2d3748;
}

.modal h2 {
    color: #1a1a1a;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.modal p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Override Kit.com form styles to match our design */
.modal .formkit-form {
    margin-top: 0;
}

.modal .formkit-field {
    margin-bottom: 1rem;
}

.modal .formkit-input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal .formkit-input:focus {
    outline: none;
    border-color: #2c5282;
}

.modal .formkit-submit {
    width: 100%;
    background: #48bb78;
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal .formkit-submit:hover {
    background: #38a169;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .description {
        font-size: 1rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        background-attachment: scroll;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .footer-links {
        gap: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .resources-section > div > div > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

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

    .story-section .story-text {
        font-size: 1.1rem;
    }

    .story-section .reveal {
        font-size: 1.15rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-number {
        font-size: 2.5rem;
    }

    .pain-points li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .modal-content {
        padding: 1.5rem 1rem;
    }
}/**
 * Interior Page Styles
 * Additional styles for generic interior pages with navigation
 */

/* ========================================
   INTERIOR PAGE HEADER & NAVIGATION
   ======================================== */

.interior-page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.interior-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo/Branding */
.site-branding {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: block;
	margin: 0 1.25rem
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.logo-link:hover .site-title {
    color: #48bb78;
}

.site-tagline {
    font-size: 0.85rem;
    color: #718096;
    margin: 0.25rem 0 0 0;
    font-weight: 400;
}

/* Main Navigation */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #2c5282;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #48bb78;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    transform: scaleX(1);
}

.nav-menu .current-menu-item a {
    color: #2c5282;
    font-weight: 600;
}

/* CTA Button in Navigation */
.nav-menu .menu-item-cta a {
    background: #48bb78;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.nav-menu .menu-item-cta a::after {
    display: none;
}

.nav-menu .menu-item-cta a:hover {
    background: #38a169;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #2c5282;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   PAGE HERO SECTION
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.page-excerpt {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ========================================
   PAGE CONTENT
   ======================================== */

.page-content-section {
    flex-grow: 1;
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.interior-content {
    background: white;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
}

.entry-content h2 {
    font-size: 2rem;
    color: #2c5282;
    margin: 2.5rem 0 1rem 0;
    font-weight: 700;
}

.entry-content h3 {
    font-size: 1.5rem;
    color: #2c5282;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.entry-content h4 {
    font-size: 1.25rem;
    color: #4a5568;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.entry-content p {
    margin: 0 0 1.5rem 0;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.5rem 0;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.75rem;
}

.entry-content a {
    color: #2c5282;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: #48bb78;
}

.entry-content blockquote {
    border-left: 4px solid #48bb78;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4a5568;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.entry-content th {
    background: #f7fafc;
    font-weight: 600;
    color: #2c5282;
}

/* ========================================
   INTERIOR FOOTER
   ======================================== */

.interior-footer {
    background: #1a365d;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: auto;
}

.footer-content {
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3,
.footer-navigation h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-about p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-contact a {
    color: #48bb78;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #48bb78;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #48bb78;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop navigation */
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 54, 93, 0.98);
        padding: 6rem 2rem 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        justify-content: center;
        align-items: flex-start;
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    /* Stack menu items vertically */
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        color: white;
        font-size: 1.25rem;
        padding: 1rem 0;
    }

    .nav-menu a:hover {
        color: #48bb78;
    }

    .nav-menu .menu-item-cta a {
        background: transparent;
        border: 2px solid #48bb78;
        text-align: center;
        margin-top: 1rem;
    }

    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }

    /* Page Hero */
    .page-hero {
        padding: 3rem 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-excerpt {
        font-size: 1.1rem;
    }

    /* Content */
    .page-content-section {
        padding: 2rem 1.5rem;
    }

    .entry-content {
        font-size: 1rem;
    }

    .entry-content h2 {
        font-size: 1.75rem;
    }

    .entry-content h3 {
        font-size: 1.35rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.25rem;
    }

    .site-tagline {
        font-size: 0.75rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-excerpt {
        font-size: 1rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.button {
    display: inline-block;
    background: #48bb78;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
}

.button-secondary {
    background: #2c5282;
}

.button-secondary:hover {
    background: #1a365d;
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.4);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr !important;
    }
    
    .section-header h2 {
        font-size: 32px !important;
    }
    
    .section-header p {
        font-size: 18px !important;
    }
}

/* Ninja Forms Styling to Match Landing Page - Form Pages Only */

/* Only style pages that contain Ninja Forms */
.nf-form-cont {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Ninja Forms Form Content */
.nf-form-content {
    background: transparent !important;
}

/* Ninja Forms Labels */
.nf-field-label label,
.ninja-forms-field-label,
.nf-field-container label {
    color: #a0aec0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    display: block !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Required Asterisk */
.ninja-forms-req-symbol,
.nf-field-label .ninja-forms-req-symbol {
    color: #667eea !important;
}

/* Ninja Forms Inputs and Textareas - WHITE BACKGROUND WITH DARK TEXT */
.nf-field-element input[type="text"],
.nf-field-element input[type="email"],
.nf-field-element input[type="tel"],
.nf-field-element input[type="url"],
.nf-field-element input[type="number"],
.nf-field-element input[type="date"],
.nf-field-element input[type="password"],
.nf-field-element textarea,
.nf-field-element select,
input.ninja-forms-field,
textarea.ninja-forms-field,
select.ninja-forms-field {
    width: 100% !important;
    padding: 15px 20px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 3px solid #667eea !important;
    border-radius: 8px !important;
    color: #1a1a2e !important;
    font-size: 16px !important;
    margin-bottom: 5px !important;
    transition: all 0.3s ease !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    box-sizing: border-box !important;
}

.nf-field-element input[type="text"]:focus,
.nf-field-element input[type="email"]:focus,
.nf-field-element input[type="tel"]:focus,
.nf-field-element input[type="url"]:focus,
.nf-field-element input[type="number"]:focus,
.nf-field-element input[type="password"]:focus,
.nf-field-element textarea:focus,
.nf-field-element select:focus,
input.ninja-forms-field:focus,
textarea.ninja-forms-field:focus,
select.ninja-forms-field:focus {
    outline: none !important;
    border-color: #764ba2 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.3) !important;
}

/* Placeholder Text - Dark for visibility on white background */
.nf-field-element input::placeholder,
.nf-field-element textarea::placeholder,
input.ninja-forms-field::placeholder,
textarea.ninja-forms-field::placeholder {
    color: #6b7280 !important;
    opacity: 0.7 !important;
}

/* Ninja Forms Field Container */
.nf-field-container,
.nf-field {
    margin-bottom: 20px !important;
}

/* Ninja Forms Submit Button */
.nf-form-content input[type="button"],
.nf-form-content button,
.submit-container input[type="button"],
.submit-container button,
input.ninja-forms-field[type="submit"],
button.ninja-forms-field {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    padding: 18px 40px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.nf-form-content input[type="button"]:hover,
.nf-form-content button:hover,
.submit-container input[type="button"]:hover,
.submit-container button:hover,
input.ninja-forms-field[type="submit"]:hover,
button.ninja-forms-field:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

/* Ninja Forms Submit Container */
.submit-container,
.nf-field-container.submit-container {
    text-align: center !important;
    margin-top: 30px !important;
}

/* Contact Info Box */
.contact-info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px auto;
    max-width: 700px;
    text-align: center;
}

/* HIDE ERROR AND SUCCESS CONTAINERS BY DEFAULT */
.nf-error-msg,
.ninja-forms-field-error,
.nf-form-errors,
.nf-form-error,
.nf-after-field-errors,
div.nf-form-errors-required,
.nf-response-msg,
.ninja-forms-response-msg,
.nf-form-response,
.ninja-forms-success-msg {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Hide empty success messages */
.nf-response-msg:empty,
.ninja-forms-response-msg:empty,
.nf-form-response:empty {
    display: none !important;
}

/* Only show errors when field has actual error class AND content */
.nf-error.nf-has-errors .nf-error-msg,
.nf-pass.nf-has-errors .nf-error-msg {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    color: #fc8181 !important;
    font-size: 14px !important;
    margin-top: 5px !important;
}

.nf-error .nf-field-element input,
.nf-error .nf-field-element textarea,
.nf-error .nf-field-element select,
.ninja-forms-field.ninja-forms-error {
    border-color: #fc8181 !important;
    border-width: 3px !important;
}

/* SUCCESS MESSAGE - SUBTLE LIGHT GREEN WITH HIGH TRANSPARENCY */
/* Only show when it contains actual text content */
.nf-response-msg:not(:empty),
.ninja-forms-response-msg:not(:empty),
.nf-form-response:not(:empty) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    background: rgba(16, 185, 129, 0.15) !important;
    border: 2px solid rgba(5, 150, 105, 0.4) !important;
    border-radius: 10px !important;
    padding: 20px 25px !important;
    margin: 25px auto !important;
    max-width: 700px !important;
    color: #d1fae5 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1) !important;
}

.nf-response-msg p,
.ninja-forms-response-msg p {
    color: #333 !important;
    margin: 0 !important;
}

/* Ninja Forms Description Text */
.nf-field-description,
.ninja-forms-field-description {
    color: #a0aec0 !important;
    font-size: 14px !important;
}

/* Ninja Forms Checkbox and Radio */
.nf-field-element .nf-field-label label,
.list-checkbox-wrap label,
.list-radio-wrap label {
    color: #cbd5e0 !important;
    text-transform: none !important;
    font-size: 16px !important;
}

.nf-field-element input[type="radio"],
.nf-field-element input[type="checkbox"] {
    margin-right: 8px !important;
    width: auto !important;
    border: 2px solid #667eea !important;
}

/* Ninja Forms Select Dropdown */
.nf-field-element select,
select.ninja-forms-field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a2e' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    padding-right: 40px !important;
}

/* Ninja Forms File Upload */
.nf-field-element .nf-file-upload-button,
.ninja-forms-field[type="file"] {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 3px dashed #667eea !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    color: #1a1a2e !important;
}

/* Ninja Forms Progress Bar (for multi-part forms) */
.nf-progress-container {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    margin-bottom: 30px !important;
}

.nf-progress {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 8px !important;
}

/* Ninja Forms List (repeater fields) */
.nf-field-element .nf-list-add-btn {
    background: #667eea !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
}

/* Ninja Forms Date Picker */
.ui-datepicker {
    background: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
}

.ui-datepicker-header {
    background: #667eea !important;
    color: #ffffff !important;
}

.ui-state-default {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #cbd5e0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ui-state-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nf-form-cont {
        padding: 25px !important;
    }
    
    .nf-form-content input[type="button"],
    .nf-form-content button,
    input.ninja-forms-field[type="submit"] {
        font-size: 16px !important;
        padding: 15px 30px !important;
    }
    
    .nf-response-msg:not(:empty),
    .ninja-forms-response-msg:not(:empty) {
        font-size: 15px !important;
        padding: 18px 20px !important;
    }
}

/* Ninja Forms Loading Spinner */
.nf-loading-spinner {
    border-top-color: #667eea !important;
}

/* Ninja Forms Star Rating */
.nf-field-element .starrating label {
    color: #667eea !important;
}

/* Ninja Forms Hidden Labels (for accessibility) */
.nf-field-label.nf-hidden {
    display: none !important;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: white;
}

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

.testimonials-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  font-weight: 400;
}

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

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 35px 30px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.quote-icon {
  font-size: 60px;
  line-height: 1;
  color: #003366;
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 25px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-footer {
  border-top: 2px solid #e5e5e5;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 51, 102, 0.3);
}

.avatar-initials {
  color: white;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.author-details {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
  line-height: 1.4;
}

.author-model {
  font-size: 13px;
  color: #003366;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonials-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonial-card {
    padding: 30px 25px 25px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .avatar-initials {
    font-size: 18px;
  }

  .author-name {
    font-size: 16px;
  }

  .author-details {
    font-size: 13px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
</style>

<!-- ALTERNATIVE LIGHT BACKGROUND VERSION -->
<!-- If you prefer a light background instead of dark blue -->

<style>
/* Light Background Alternative */
.testimonials-section.light-version {
  background: #f8f9fa;
  color: #1a1a1a;
}

.testimonials-section.light-version .testimonials-title {
  color: #1a1a1a;
}

.testimonials-section.light-version .testimonials-subtitle {
  color: #666;
}