/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --deep-blue: #1E3A8A;
    --green: #10B981;
    --bright-teal: #06B6D4;
    --charcoal: #111827;
    --white: #FFFFFF;

    /* Functional Colors */
    --primary-color: #06B6D4; /* Bright Teal for CTAs */
    --primary-dark: #0891B2; /* Darker teal for hover */
    --accent-color: #10B981; /* Green for accents */
    --heading-color: #1E3A8A; /* Deep Blue for headings */
    --text-dark: #111827; /* Charcoal for body text */
    --text-light: #64748b; /* Lighter text */
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-brand a:hover {
    color: var(--green);
    filter: brightness(1.1);
}

.nav-brand img {
    height: 120px;
    width: 120px;
    transition: var(--transition);
}

.nav-brand img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bright-teal);
    background-color: var(--bg-light);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* ===========================
   Page Sections
   =========================== */
.page-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-section.compact {
    padding: 2rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header.compact {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--bright-teal);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.center-text {
    text-align: center;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--deep-blue);
    color: var(--white);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
}

/* ===========================
   About Section
   =========================== */
.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   Profile Section (About Page)
   =========================== */
.profile-section {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    outline: 3px solid var(--bright-teal);
}

.profile-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--heading-color) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.profile-content {
    padding-top: 0.5rem;
}

.about-text-large {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bright-teal);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-item p {
    margin: 0;
}

.bg-light-section {
    background-color: var(--bg-light);
}

/* ===========================
   Approach Grid (About Page)
   =========================== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-item {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.approach-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Values Grid (About Page)
   =========================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===========================
   Beliefs Section (About Page)
   =========================== */
.beliefs-content {
    max-width: 800px;
    margin: 0 auto;
}

.belief-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.belief-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.belief-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.belief-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Services Section
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bright-teal);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===========================
   Service Tags & Notes
   =========================== */
.tag {
    display: inline-block;
    background-color: var(--bright-teal);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    vertical-align: middle;
}

.tag.secondary {
    background-color: var(--text-light);
}

.note {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-left: 3px solid var(--bright-teal);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.note strong {
    color: var(--text-dark);
}

/* ===========================
   Principles List
   =========================== */
.principles-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.principle-item {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.principle-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--bright-teal);
    font-weight: 700;
    font-size: 1.25rem;
}

.principle-item strong {
    color: var(--heading-color);
    font-weight: 600;
}

.principle-item:last-child {
    margin-bottom: 0;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--bright-teal);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===========================
   Expect Grid (Contact Page)
   =========================== */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.expect-item {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.expect-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.expect-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.expect-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.expect-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Contact Section
   =========================== */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-teal);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group select {
    background-color: var(--white);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-light);
}

.required {
    color: var(--bright-teal);
}

.form-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.form-note a {
    color: var(--bright-teal);
    text-decoration: none;
}

.form-note a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===========================
   Calendly Section
   =========================== */
.calendly-container {
    max-width: 1000px;
    margin: 2rem auto;
    text-align: center;
}

.calendly-placeholder {
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 1rem;
    border: 2px dashed var(--border-color);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.calendly-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.calendly-inline-widget {
    margin: 2rem auto;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===========================
   Contact Info Grid
   =========================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-info-item {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-info-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--bright-teal);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-text a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* ===========================
   Accessibility Utilities
   =========================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: var(--bright-teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===========================
   Page Header Section
   =========================== */
.page-header {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.page-header.compact {
    padding: 2rem 2rem;
}

.page-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.page-header-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* ===========================
   Service Blocks (Detailed)
   =========================== */
.services-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-block {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-block:hover {
    border-color: var(--bright-teal);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-block-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-block-content {
    flex: 1;
}

.service-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.service-block-description {
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===========================
   Services CTA Section
   =========================== */
.services-cta-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--heading-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.services-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.services-cta-text {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* ===========================
   Process / How It Works Section
   =========================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--bright-teal);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.process-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--bright-teal);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        display: none;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem;
    }

    .hero {
        padding: 3rem 1.5rem;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-section {
        padding: 2rem 1.5rem;
    }

    .page-section.compact {
        padding: 1.5rem;
    }

    .services-grid,
    .testimonials-grid,
    .values-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .profile-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .profile-image-container {
        margin: 0 auto;
        max-width: 220px;
    }

    .profile-image {
        max-width: 220px;
    }

    .profile-content {
        text-align: left;
    }

    .page-header {
        padding: 2rem 1.5rem;
    }

    .page-header.compact {
        padding: 1.5rem;
    }

    .page-header-title {
        font-size: 1.75rem;
    }

    .page-header-subtitle {
        font-size: 1rem;
    }

    .service-block {
        padding: 1.5rem;
    }

    .service-block-title {
        font-size: 1.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-cta-title {
        font-size: 1.5rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .about-text-large {
        font-size: 1.125rem;
    }

    .belief-title {
        font-size: 1.125rem;
    }

    .expect-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .page-section {
        padding: 1.5rem 1rem;
    }

    .page-section.compact {
        padding: 1.25rem 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 1.5rem 1rem;
    }

    .page-header.compact {
        padding: 1.25rem 1rem;
    }

    .page-header-title {
        font-size: 1.5rem;
    }

    .page-header-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-block {
        padding: 1.25rem;
    }

    .service-block-title {
        font-size: 1.25rem;
    }

    .service-block-icon {
        font-size: 2.25rem;
    }

    .services-cta-title {
        font-size: 1.25rem;
    }

    .services-cta-section {
        padding: 1.5rem 1rem;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .about-text-large {
        font-size: 1rem;
    }

    .approach-item,
    .value-item {
        padding: 1.25rem;
    }

    .approach-icon,
    .value-icon {
        font-size: 2rem;
    }

    .belief-title {
        font-size: 1rem;
    }

    .belief-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .expect-item {
        padding: 1.25rem;
    }

    .expect-icon,
    .contact-info-icon {
        font-size: 2rem;
    }

    .btn-large {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .calendly-placeholder {
        padding: 1.5rem 1rem;
    }
}

/* ===========================
   Portfolio Section
   =========================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.portfolio-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-category {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(135deg, var(--bright-teal) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
    margin: 0;
}

.portfolio-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.portfolio-tags li {
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0.875rem;
    border-radius: 0.25rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-tags li {
    border-color: var(--bright-teal);
    color: var(--bright-teal);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-image-wrapper {
        height: 240px;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .portfolio-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .portfolio-image-wrapper {
        height: 220px;
    }

    .portfolio-content {
        padding: 1.25rem;
    }

    .portfolio-title {
        font-size: 1.125rem;
    }

    .portfolio-description {
        font-size: 0.9375rem;
    }
}

/* ===========================
   Blog Section
   =========================== */

/* Featured Post */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    background-color: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-post-image {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    padding: 2.5rem 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 1rem 0;
    color: var(--heading-color);
}

.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.featured-post-meta .author-name {
    font-weight: 600;
    color: var(--heading-color);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card.upcoming {
    border-top-color: var(--text-light);
    opacity: 0.8;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.blog-meta time {
    color: var(--text-light);
}

.blog-category {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--bright-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--bright-teal);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--bright-teal);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
}

.blog-read-more:hover {
    color: var(--deep-blue);
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
}

.newsletter-input-group input[type="email"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--bg-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-input-group input[type="email"]:focus {
    outline: none;
    border-color: var(--bright-teal);
}

.newsletter-input-group .btn {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post-image {
        min-height: 250px;
    }

    .featured-post-content {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group .btn {
        width: 100%;
    }

    .featured-post-title {
        font-size: 1.35rem;
    }
}

