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

:root {
    --primary-green: #2F5A37;
    --primary-green-dark: #254A2D;
    --white: #FFFFFF;
    --dark: #0A0A0A;
    --light-grey: #E0E0E0;
    --grey: #888888;
    --transition: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

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

section {
    padding: 80px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

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

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

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-desktop a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    color: var(--white);
}

.header.scrolled .nav-desktop a {
    color: var(--dark);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--primary-green-dark);
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(47, 90, 55, 0.3);
}

.cta-button-secondary {
    display: inline-block;
    padding: 12px 26px;
    background: transparent;
    color: var(--primary-green);
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid var(--primary-green);
    cursor: pointer;
    font-size: 1rem;
}

.cta-button-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.03);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

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

.header.scrolled .mobile-menu-toggle span {
    background: var(--dark);
}

.mobile-call-btn {
    display: none;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .mobile-call-btn {
    color: var(--dark);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.6)),
                url('assets/images/hero-image-statue-of-liberty.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-content .cta-button {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Banner (for inner pages) */
.hero-banner {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)),
                url('assets/images/hero-image-statue-of-liberty.png') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding-top: 100px;
}

.hero-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
}

/* About Section */
.about-intro {
    background: var(--light-grey);
}

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

.about-intro h2 {
    color: var(--primary-green);
}

.about-intro p {
    color: #555;
    font-size: 1.1rem;
}

/* Services Overview */
.services-overview {
    background: var(--white);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
}

.service-card .learn-more-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card .learn-more-link:hover {
    gap: 12px;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--dark);
    color: var(--white);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.process-step .step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.process-step .step-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.process-step p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-grey);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

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

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-block {
    font-size: 1.25rem;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-block::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-green);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-green);
}

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

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.carousel-dot.active {
    background: var(--primary-green);
}

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

/* CTA Section */
.cta-section {
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--primary-green);
}

.cta-section .cta-button:hover {
    background: var(--light-grey);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-overview p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-nav a {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-contact p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--white);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #888;
    margin: 0 15px;
}

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

/* Mobile Footer */
.footer-grid-mobile-toggle {
    display: none;
}

/* Page Specific Styles */

/* About Page */
.about-story {
    background: var(--white);
}

.about-story .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-story h2 {
    color: var(--primary-green);
    margin-bottom: 30px;
}

.about-story p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.about-values {
    background: var(--light-grey);
}

.about-values h2 {
    text-align: center;
    margin-bottom: 50px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card .value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card .value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.value-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.team-card .team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.team-card .team-title {
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-card .team-bio {
    color: #777;
    font-size: 0.9rem;
}

/* Services Page */
.service-category-block {
    padding: 60px 0;
}

.service-category-block:nth-child(even) {
    background: var(--light-grey);
}

.service-category-block .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-category-block h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.service-category-block p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-highlights {
    margin-top: 30px;
}

.service-highlights ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.service-highlights li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
}

/* Criminal Defense & Immigration Specific Pages */
.intro-section {
    background: var(--white);
}

.intro-section .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-section h2 {
    color: var(--primary-green);
    margin-bottom: 25px;
}

.intro-section p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.specific-areas {
    background: var(--light-grey);
}

.specific-areas h2 {
    text-align: center;
    margin-bottom: 50px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.area-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.area-card .area-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-card .area-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--white);
}

.area-card h4 {
    color: var(--dark);
    font-size: 1rem;
}

/* Process Timeline */
.process-timeline {
    background: var(--white);
}

.process-timeline h2 {
    text-align: center;
    margin-bottom: 50px;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.timeline-step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 30px;
    font-size: 2rem;
    color: var(--primary-green);
}

.timeline-step:last-child::after {
    display: none;
}

.timeline-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.timeline-step h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-step p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: var(--light-grey);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question .icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
}

/* Contact Page */
.contact-info-section {
    background: var(--white);
}

.contact-info-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.contact-info-card {
    padding: 30px;
    background: var(--light-grey);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-card .info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.contact-info-card h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #666;
    font-size: 0.95rem;
}

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

/* Contact Form */
.contact-form-section {
    background: var(--light-grey);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.contact-form-section .form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(47, 90, 55, 0.1);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

.contact-form .cta-button {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    background: var(--white);
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Privacy & Terms Pages */
.legal-content {
    background: var(--white);
    padding: 100px 0 60px;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h1 {
    color: var(--primary-green);
    margin-bottom: 40px;
}

.legal-content h2 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.legal-content ul {
    margin-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-nav-overlay .nav-links {
    text-align: center;
}

.mobile-nav-overlay a {
    display: block;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 500;
    margin: 20px 0;
    transition: var(--transition);
}

.mobile-nav-overlay a:hover {
    color: var(--primary-green);
}

.mobile-nav-overlay .mobile-cta {
    margin-top: 30px;
    padding: 15px 35px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
}

.mobile-nav-overlay .mobile-phone {
    margin-top: 20px;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-overlay .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
}

/* Animations */
.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);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    
    .hero-content h1 { font-size: 3rem; }
    .hero-content .tagline { font-size: 1.3rem; }
    
    .process-steps { grid-template-columns: 1fr; gap: 30px; }
    .process-step::after { display: none; }
    
    .value-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .timeline-steps { grid-template-columns: 1fr 1fr; }
    .timeline-step::after { display: none; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.4rem; }
    
    .nav-desktop { display: none; }
    .mobile-menu-toggle { display: block; }
    .mobile-call-btn { display: block; }
    
    .header .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content .tagline { font-size: 1.1rem; }
    
    .hero-banner {
        min-height: 35vh;
    }
    
    .hero-banner h1 { font-size: 2.5rem; }
    
    .about-intro .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .service-category-block .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-highlights ul {
        grid-template-columns: 1fr;
    }
    
    .timeline-steps { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    
    .contact-info-grid { grid-template-columns: 1fr; }
    
    .contact-form { padding: 25px; }
    
    .footer-bottom a {
        display: block;
        margin: 10px 0;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .fade-in-up {
        opacity: 1;
        transform: none;
    }
}
