@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --color-primary: #2F4F4F;
    --color-accent: #ADD8E6;
    --color-secondary: #F5F5DC;
    --color-highlight: #DAA520;
    --color-white: #FFFFFF;
    --color-text-dark: #2F4F4F;
    --color-text-light: #F5F5DC;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Roboto', Arial, sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 4px 15px rgba(218, 165, 32, 0.4);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

ul {
    list-style: none;
}

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

/* ============ HEADER STYLES ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: var(--transition-normal);
}

.header.scrolled .header-inner {
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

.header-nav {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-highlight);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

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

.header-contact {
    display: none;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-weight: 500;
}

.phone-link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    margin: 3px 0;
    transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(47, 79, 79, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
}

.mobile-nav .phone-link {
    font-size: 1.2rem;
    margin-top: 20px;
}

.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    z-index: 998;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.mobile-cta-bar a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.mobile-cta-bar .call-btn {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.mobile-cta-bar .contact-btn {
    background-color: var(--color-highlight);
    color: var(--color-primary);
}

/* ============ HERO STYLES ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-home.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(47, 79, 79, 0.85),
        rgba(47, 79, 79, 0.7)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 span {
    color: var(--color-highlight);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* ============ BUTTON STYLES ============ */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-primary {
    background-color: var(--color-highlight);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #c99a1d;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: transparent;
    border-color: var(--color-highlight);
    color: var(--color-highlight);
}

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

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

/* ============ PAGE HERO STYLES ============ */
.page-hero {
    background-color: var(--color-accent);
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    animation: fadeIn 0.6s ease forwards;
}

/* ============ ABOUT SHEILA SECTION ============ */
.about-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

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

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

.about-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-content .highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* ============ SERVICES SECTION ============ */
.services-section {
    padding: 80px 0;
    background-color: var(--color-secondary);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%232f4f4f' fill-opacity='0.03' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 50px;
}

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

.service-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

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

.service-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

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

.service-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-highlight);
    font-weight: 600;
}

.service-card a:hover {
    text-decoration: underline;
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ADD8E6' fill-opacity='0.05' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonials-section .section-title {
    color: var(--color-white);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 20px;
    text-align: center;
}

.testimonial-item blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-item cite {
    color: var(--color-highlight);
    font-style: normal;
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-nav button {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

/* ============ CTA SECTION ============ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-primary);
    overflow: hidden;
}

.cta-section .lion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/roaring-lion.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    animation: zoomIn 10s ease infinite alternate;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn {
    animation: pulse 2s ease infinite;
}

/* ============ ABOUT PAGE STYLES ============ */
.bio-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

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

.bio-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bio-image img {
    width: 100%;
    height: auto;
}

.bio-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.bio-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.credentials-section {
    padding: 60px 0;
    background-color: var(--color-secondary);
}

.credentials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.credential-item svg {
    width: 30px;
    height: 30px;
    fill: var(--color-highlight);
    flex-shrink: 0;
}

.credential-item span {
    font-weight: 500;
    color: var(--color-primary);
}

.philosophy-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

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

.philosophy-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-align: center;
}

.philosophy-content > p {
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.8;
}

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

.principle-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--color-secondary);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.principle-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.principle-card img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.principle-card h4 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.principle-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ SERVICES PAGE STYLES ============ */
.services-detail-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card:nth-child(even) .service-detail-image {
    order: -1;
}

.service-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.service-detail-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.process-section {
    padding: 80px 0;
    background-color: var(--color-secondary);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--color-accent);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* ============ CONTACT PAGE STYLES ============ */
.contact-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

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

.contact-form-wrapper {
    background-color: var(--color-secondary);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-bottom: 2px solid var(--color-accent);
    background-color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
    border-radius: 5px 5px 0 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-highlight);
    border-bottom-width: 3px;
}

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

.contact-form-wrapper button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

.contact-info {
    padding: 20px 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
}

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

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--color-highlight);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.contact-item a {
    color: var(--color-primary);
    font-weight: 500;
}

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

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ============ FOOTER STYLES ============ */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-mission {
    color: var(--color-accent);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-highlight);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-white);
    opacity: 0.8;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--color-highlight);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(173, 216, 230, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    margin: 0 10px;
    color: var(--color-accent);
}

.footer-bottom a:hover {
    color: var(--color-highlight);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(218, 165, 32, 0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

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

/* Tablet */
@media (min-width: 640px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .header-nav {
        display: block;
    }
    
    .header-contact {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .mobile-cta-bar {
        display: none;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-section {
        padding: 100px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .bio-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .credentials-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-card {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .service-detail-card:nth-child(even) .service-detail-image {
        order: 0;
    }
    
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-content {
        margin-top: 30px;
        width: 80%;
    }
    
    .process-step:nth-child(odd) .step-content {
        margin-left: auto;
    }
    
    .process-step:nth-child(even) .step-content {
        margin-right: auto;
    }
}
