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

:root {
    --primary-blue: #213962;
    --white: #FFFFFF;
    --light-grey: #D3D3D3;
    --accent-gold: #A38C61;
    --accent-gold-hover: #8a7450;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    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(--text-dark);
    background-color: var(--white);
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-family: 'Montserrat', Arial, sans-serif;
}

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

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 140, 97, 0.4);
}

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

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

.section {
    padding: 80px 0;
}

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

.section-title h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-blue);
    transition: all var(--transition-medium);
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.phone-link:hover {
    color: var(--accent-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width var(--transition-fast);
}

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

.nav-menu a:hover {
    color: var(--accent-gold);
}

.cta-btn {
    background-color: var(--accent-gold);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.cta-btn:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.cta-btn::after {
    display: none;
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-blue);
    padding: 80px 30px 30px;
    transition: right var(--transition-medium);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-menu a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-menu a:hover {
    color: var(--accent-gold);
}

.mobile-se-habla {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(163, 140, 97, 0.2);
    border-radius: 4px;
}

.mobile-cta {
    margin-top: 30px;
    text-align: center;
}

.mobile-cta .btn {
    width: 100%;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 57, 98, 0.85) 0%, rgba(33, 57, 98, 0.7) 100%);
}

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

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

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

.hero-interior {
    min-height: 40vh;
}

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

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

/* ============ ABOUT SECTION ============ */
.about-section {
    background-color: var(--white);
}

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

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

/* ============ PRACTICE AREAS ============ */
.practice-areas-section {
    background-color: #f9f9f9;
}

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

.practice-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.practice-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.practice-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.practice-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.practice-card a {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.practice-card a:hover {
    color: var(--accent-gold-hover);
}

/* ============ WHY CHOOSE US ============ */
.why-choose-section {
    background-color: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(163, 140, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-choose-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-gold);
}

.why-choose-item h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.why-choose-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    background-color: #f9f9f9;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card cite {
    color: var(--accent-gold);
    font-weight: 600;
    font-style: normal;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background-color: var(--primary-blue);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
    flex-shrink: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

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

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

.social-links a:hover {
    background-color: var(--accent-gold);
}

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

.se-habla {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: rgba(163, 140, 97, 0.15);
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* ============ PAGE SPECIFIC ============ */

/* Firm Overview */
.story-section {
    background-color: var(--white);
}

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

.story-content h2 {
    margin-bottom: 25px;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(163, 140, 97, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--accent-gold);
}

.value-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Practice Areas Page */
.all-practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-full-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.practice-full-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.practice-full-card-content {
    padding: 30px;
    text-align: center;
}

.practice-full-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.practice-full-card h3 {
    margin-bottom: 15px;
}

.practice-full-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Practice Area Detail */
.detail-overview {
    background-color: var(--white);
}

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

.detail-content h2 {
    margin-bottom: 25px;
}

.detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.detail-services {
    margin-top: 30px;
}

.detail-services h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.detail-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.detail-services li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: bold;
}

.detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* FAQ Accordion */
.faq-section {
    background-color: #f9f9f9;
}

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

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-gold);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-light);
}

/* Attorneys Page */
.attorneys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.attorney-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

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

.attorney-card-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background-color: #f0f0f0;
}

.attorney-card-content {
    padding: 25px;
    text-align: center;
}

.attorney-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.attorney-card .title {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.attorney-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.attorney-card a {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.attorney-card a:hover {
    color: var(--accent-gold);
}

.support-staff {
    background-color: #f9f9f9;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

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

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

.support-staff-card h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.support-staff-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

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

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    margin-bottom: 30px;
}

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

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

.form-group label span {
    color: #e74c3c;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(163, 140, 97, 0.1);
}

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

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

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(163, 140, 97, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-info-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info-content p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-info-content a {
    color: var(--accent-gold);
    font-weight: 500;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.se-habla-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: rgba(163, 140, 97, 0.15);
    border-radius: 4px;
}

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

.map-container {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .practice-grid,
    .why-choose-grid,
    .values-grid,
    .support-staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .all-practice-grid,
    .attorneys-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .phone-link span {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

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

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

    .about-grid,
    .story-grid,
    .detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .practice-grid,
    .why-choose-grid,
    .values-grid,
    .all-practice-grid,
    .attorneys-grid,
    .testimonials-grid,
    .support-staff-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .detail-services ul {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.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;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-content h1,
    .hero-content p,
    .hero-content .btn {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}
