/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0891B2;
    --primary-dark: #0E7490;
    --secondary-color: #06B6D4;
    --accent-color: #22D3EE;
    --text-dark: #0F172A;
    --text-medium: #475569;
    --text-light: #64748B;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --border-color: #E2E8F0;
    --success-color: #10B981;
    --error-color: #EF4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY - MOBILE FIRST ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-medium);
}

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

a:hover {
    color: var(--primary-dark);
}

/* ===== BUTTONS - MOBILE FIRST ===== */
.btn-primary, .btn-secondary, .btn-primary-nav {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 44px; /* Touch-friendly size */
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

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

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

.btn-primary-nav {
    background-color: var(--primary-color);
    color: white;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-primary-nav:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* ===== NAVIGATION - MOBILE FIRST ===== */
.navbar {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h2 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin: 0;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    list-style: none;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
}

.nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu li a:not(.btn-primary-nav):hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: var(--primary-color);
}

/* ===== HERO SECTION - MOBILE FIRST ===== */
.hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.9) 0%, rgba(14, 116, 144, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
}

.hero-buttons .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.hero-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.hero-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ===== INFO CARDS - MOBILE FIRST ===== */
.info-cards {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-medium);
    margin: 0;
}

/* ===== SECTION HEADER - MOBILE FIRST ===== */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
}

/* ===== SERVICES PREVIEW - MOBILE FIRST ===== */
.services-preview {
    padding: 3rem 0;
    background-color: white;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-gray);
}

.service-content {
    padding: 1.25rem;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.service-content p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* ===== WHY US SECTION - MOBILE FIRST ===== */
.why-us {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.why-us-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-us-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.why-us-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== CTA SECTION - MOBILE FIRST ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
}

/* ===== PAGE HEADER - MOBILE FIRST ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* ===== SERVICES DETAIL - MOBILE FIRST ===== */
.services-detail {
    padding: 3rem 0;
    background-color: white;
}

.service-detail-card {
    margin-bottom: 3rem;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: var(--bg-light);
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-content h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.service-detail-content ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.service-note {
    background-color: rgba(8, 145, 178, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.additional-service {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.additional-service h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.additional-service p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== PRICING INFO - MOBILE FIRST ===== */
.pricing-info {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.pricing-box {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.pricing-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.pricing-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== TEAM SECTION - MOBILE FIRST ===== */
.about-intro,
.team-section {
    padding: 3rem 0;
    background-color: white;
}

.about-grid,
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-image {
    height: 250px;
    background-color: var(--bg-gray);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-qualifications {
    margin-top: 1rem;
}

.team-qualifications h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.team-qualifications ul {
    list-style: none;
    padding-left: 0;
}

.team-qualifications li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.team-qualifications li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ===== FEATURES - MOBILE FIRST ===== */
.praxis-features {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== CERTIFICATES - MOBILE FIRST ===== */
.certificates {
    padding: 3rem 0;
    background-color: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.certificate-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.certificate-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.certificate-card p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ===== PHILOSOPHY - MOBILE FIRST ===== */
.philosophy {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

blockquote {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
    font-size: 1rem;
    color: var(--text-medium);
}

cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-light);
}

/* ===== CONTACT SECTION - MOBILE FIRST ===== */
.contact-section {
    padding: 3rem 0;
    background-color: white;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-note {
    background-color: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* ===== CONTACT FORM - MOBILE FIRST ===== */
.contact-form-wrapper h2 {
    margin-bottom: 0.75rem;
}

.contact-form-wrapper > p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    min-height: 44px; /* Touch-friendly */
}

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

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

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    min-width: 20px;
    min-height: 20px;
    margin-top: 0.15rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.form-message {
    margin-top: 1rem;
    padding: 0.875rem;
    border-radius: 8px;
    display: none;
    font-size: 0.9rem;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    display: block;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    display: block;
}

/* ===== MAP SECTION - MOBILE FIRST ===== */
.map-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.direction-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.direction-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.direction-card p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.direction-card strong {
    color: var(--text-dark);
}

/* ===== FAQ SECTION - MOBILE FIRST ===== */
.faq-section {
    padding: 3rem 0;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===== FOOTER - MOBILE FIRST ===== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2.5rem 0 1.5rem;
}

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

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.75rem 0;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: white;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

/* ===== TABLET STYLES ===== */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .logo h2 {
        font-size: 1.5rem;
    }

    /* Buttons */
    .btn-primary, .btn-secondary {
        width: auto;
        padding: 0.875rem 2rem;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: auto;
    }

    /* Info Cards - TABLET: 2 Columns */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Services Grid - TABLET: 2 Columns */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Features Grid - TABLET: 2 Columns */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Certificates Grid - TABLET: 2 Columns */
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Additional Services - TABLET: 2 Columns */
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing Grid - TABLET: 2 Columns */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FAQ Grid - TABLET: 2 Columns */
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer Grid - TABLET: 2 Columns */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: row;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: auto;
    }

    /* Map */
    .map-wrapper iframe {
        height: 400px;
    }
}

/* ===== DESKTOP STYLES ===== */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.25rem;
    }

    /* Navigation Desktop */
    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: auto;
        padding: 0;
    }

    .nav-menu li a.active::after {
        left: 0;
        width: 100%;
    }

    .btn-primary-nav {
        padding: 0.625rem 1.5rem;
    }

    /* Hero Desktop */
    .hero {
        height: 600px;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .hero-buttons {
        gap: 1.5rem;
    }

    /* Info Cards - DESKTOP: 3 Columns */
    .info-cards {
        margin-top: -3rem;
        position: relative;
        z-index: 2;
        padding: 4rem 0;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-card {
        padding: 2.5rem 2rem;
    }

    .card-icon {
        font-size: 3rem;
    }

    /* Services Grid - DESKTOP: 4 Columns */
    .services-preview {
        padding: 5rem 0;
    }

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

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    /* Why Us Grid - DESKTOP: 2 Columns Side by Side */
    .why-us {
        padding: 5rem 0;
    }

    .why-us-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .why-us-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .check-list {
        margin: 2rem 0;
    }

    .check-list li {
        padding: 0.75rem 0;
        padding-left: 2rem;
        font-size: 1rem;
    }

    .check-list li::before {
        font-size: 1.25rem;
    }

    /* Contact Grid - DESKTOP: 2 Columns */
    .contact-section {
        padding: 4rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }

    /* Service Detail Grid - DESKTOP: 2 Columns */
    .services-detail {
        padding: 4rem 0;
    }

    .service-detail-card {
        padding: 3rem;
        margin-bottom: 4rem;
    }

    .service-detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

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

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

    /* About/Team Grid - DESKTOP */
    .about-intro,
    .team-section {
        padding: 4rem 0;
    }

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

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2.5rem;
    }

    .team-image {
        height: 300px;
    }

    .team-info {
        padding: 2rem;
    }

    /* Features Grid - DESKTOP: 3 Columns */
    .praxis-features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Certificates Grid - DESKTOP: 4 Columns */
    .certificates {
        padding: 4rem 0;
    }

    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Philosophy */
    .philosophy {
        padding: 4rem 0;
    }

    blockquote {
        padding: 2rem 2.5rem;
        font-size: 1.15rem;
    }

    cite {
        font-size: 0.95rem;
    }

    /* Additional Services - DESKTOP: 4 Columns */
    .additional-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Contact Form */
    .contact-form {
        padding: 2rem;
    }

    /* Map */
    .map-section {
        padding: 4rem 0;
    }

    .map-wrapper iframe {
        height: 450px;
    }

    .directions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* FAQ - DESKTOP: 2 or 3 Columns */
    .faq-section {
        padding: 4rem 0;
    }

    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    /* Footer - DESKTOP: 4 Columns */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom p {
        margin: 0;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        gap: 1.5rem;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.25rem;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .page-header p {
        font-size: 1.25rem;
    }
}

/* ===== LARGE DESKTOP (Optional weitere Optimierung) ===== */
@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }
}