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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    font-size: 16px;
}

/* Container Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-wide {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6ee7b7 0%, #0d9488 100%);
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #0d9488;
}

.btn-contact {
    padding: 0.5rem 1.25rem;
    background: #111827;
    color: white !important;
    border-radius: 0.375rem;
    transition: background 0.3s;
}

.btn-contact:hover {
    background: #1f2937;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #374151;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #374151;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1rem 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.nav-mobile a:hover {
    background: #f0fdfa;
    color: #0d9488;
}

.btn-contact-mobile {
    background: #111827;
    color: white !important;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background-color: #fbfaf7;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 1rem;
}

.divider {
    width: 64px;
    height: 2px;
    background: #0d9488;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.good-fit-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.good-fit-box h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.good-fit-box p {
    color: #374151;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Familiar Section - Final Clean Version */
.familiar {
    padding: 2rem 1rem 5rem 1rem;
    background-color: #f4efe8;
}

.section-title {
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 3rem;
    text-align: center;
}

.familiar-box {
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1152px;
    margin: 0 auto;
}

/* THE CONTAINER: Creates 2 columns and the divider line */
.questions-indent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0 !important; /* Removes the 12rem 'crush' */
    border-bottom: 1px solid #e5e7eb; 
    padding-bottom: 3rem; /* Space above line */
    margin-bottom: 4rem;  /* Space below line (pushes paragraph) */
}

/* THE ITEMS: Width for desktop columns */
.question-item {
    flex: 0 1 45%; 
    position: relative;
    padding: 0.25rem 0 0.25rem 2rem;
    margin-bottom: 1rem;
}

/* THE BUBBLES: Locked to the first line of text */
.question-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem; 
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6ee7b7 0%, #0d9488 100%);
}

.question-item p {
    color: #374151;
    font-style: italic;
}

/* MOBILE FIX: Handles iPhone 13 mini and smaller screens */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .question-item {
        flex: 1 1 100%; /* Stacks back to 1 column */
        margin-bottom: 1.25rem;
    }
    .questions-indent {
        padding-bottom: 2rem;
        margin-bottom: 2.5rem;
    }
    .familiar-box {
        padding: 2rem 1.25rem;
    }
}
/* Expertise */
.expertise {
    padding: 4rem 0;
    background-color: #fbfaf7;
}

.expertise-card {
    background: white;
    border: 1px solid #d6d3d1;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.expertise-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #374151;
}

.expertise-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* My Approach */
.approach {
    padding: 4rem 0;
    background-color: #f4efe8;
}

.approach-box {
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.approach-box p {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

.approach-box p:last-child {
    margin-bottom: 0;
}

/* Services */
.services {
    padding: 4rem 0;
    background-color: #fbfaf7;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: white;
    border: 1px solid #d6d3d1;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.service-card p {
    color: #374151;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Practical Info */
.practical-info {
    padding: 4rem 0;
    background-color: #f4efe8;
}

.info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    background: white;
    border: 1px solid #d6d3d1;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    color: #374151;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '•';
    color: #0d9488;
    position: absolute;
    left: 0;
    font-size: 1.25rem;
}

.disclaimer {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact */
.contact {
    padding: 5rem 0;
    background-color: #fbfaf7;
}

.contact-intro {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2.5rem;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.contact-box {
    max-width: 672px;
    margin: 0 auto 2rem;
    text-align: left;
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-partner,
.contact-instruction {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
}

.contact-instruction {
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-label {
    color: #6b7280;
    min-width: 80px;
}

.contact-link {
    color: #0d9488;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-all;
}

.contact-link:hover {
    color: #0f766e;
}

.contact-address {
    color: #374151;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-left p {
    color: #9ca3af;
}

.footer-right p {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-right p {
        text-align: right;
    }
}

@media (min-width: 640px) {
    .container,
    .container-narrow,
    .container-wide {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container,
    .container-narrow,
    .container-wide {
        padding: 0 2rem;
    }
}
@media (max-width: 640px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .question-item p {
        font-size: 0.9rem;
    }
    
    .familiar-box {
        padding: 1.5rem 1rem;
    }
}
/* This targets mobile phones more broadly */
@media screen and (max-width: 768px) {
    .familiar-box {
        padding: 1.5rem 1rem !important; /* Forces the box to have smaller side padding */
        width: auto !important;
        margin: 0 1rem !important;      /* Adds a small gap on the outside of the box */
    }

    .questions-indent {
        padding-left: 0 !important;      /* Completely removes the 12rem desktop gap */
    }

    .question-item {
        padding-left: 2rem !important;   /* Ensures the green bullet has space */
    }
}
