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

:root {
    --primary-blue: #093269;
    --secondary-blue: #004B87;
    --accent-gold: #D4AF37;
    --slate-50: #f8fafc;
    --slate-300: #cbd5e1;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-900: #0f172a;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--slate-900);
    background-color: var(--slate-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Selection */
::selection {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background-color: rgba(9, 50, 105, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 2.75rem;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.nav-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    animation: heroZoom 20s linear infinite alternate;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(9, 50, 105, 0.8), 
        rgba(9, 50, 105, 0.6), 
        rgba(9, 50, 105, 0.9));
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjMwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMzAwIiBoZWlnaHQ9IjMwMCIgZmlsdGVyPSJ1cmwoI25vaXNlKSIgb3BhY2l0eT0iMC41Ii8+PC9zdmc+');
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-subtitle {
    color: var(--accent-gold);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    font-family: serif;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-title-italic {
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    color: var(--slate-300);
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    min-width: 200px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

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

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

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 20;
    animation: scrollBounce 2s infinite;
}

.scroll-indicator:hover {
    color: var(--accent-gold);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-icon {
    width: 2rem;
    height: 2rem;
}

/* About Section */
.about-section {
    padding: 6rem 3rem;
    background-color: var(--white);
    position: relative;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-decorations {
    position: relative;
}

.decoration-border {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 0;
}

.decoration-bg {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 50, 105, 0.05);
    z-index: 0;
}

.profile-image {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.profile-image:hover {
    filter: grayscale(0%);
}

.about-content {
    /* Styles already defined in sections */
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-line {
    height: 1px;
    width: 3rem;
    background-color: var(--accent-gold);
}

.label-text {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    font-family: serif;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-italic {
    color: var(--secondary-blue);
    font-style: italic;
}

.section-text {
    color: var(--slate-600);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-number {
    color: var(--accent-gold);
    font-size: 2.5rem;
    font-family: serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bio-link {
    color: var(--primary-blue);
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 0.25rem;
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: color 0.3s;
}

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

.link-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.bio-link:hover .link-icon {
    transform: translateX(4px);
}

/* Practice Areas Section */
.practices-section {
    padding: 8rem 3rem;
    background-color: var(--primary-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.practices-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.practices-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(100px);
}

.practices-circle-1 {
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background-color: var(--secondary-blue);
    transform: translate(50%, -50%);
}

.practices-circle-2 {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: var(--accent-gold);
    opacity: 0.1;
    transform: translate(-50%, 50%);
}

.practices-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.practices-header {
    margin-bottom: 5rem;
}

.practices-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.practices-intro {
    max-width: 48rem;
}

.practices-label {
    color: var(--accent-gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.practices-title {
    font-size: 3rem;
    font-family: serif;
    color: var(--white);
    line-height: 1.2;
}

.practices-title-italic {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.practices-desc {
    max-width: 28rem;
    text-align: right;
}

.practices-desc p {
    color: rgba(255, 255, 255, 0.6);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.practice-card {
    position: relative;
    background-color: rgba(11, 61, 126, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    height: 100%;
    transition: all 0.5s;
}

.practice-card:hover {
    background-color: var(--white);
    border-color: var(--white);
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--accent-gold);
    transition: width 0.5s;
}

.practice-card:hover::before {
    width: 100%;
}

.practice-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: color 0.5s;
}

.practice-card:hover .practice-icon {
    color: var(--primary-blue);
}

.practice-title {
    font-size: 1.25rem;
    font-family: serif;
    color: var(--white);
    margin-bottom: 1rem;
    transition: color 0.5s;
}

.practice-card:hover .practice-title {
    color: var(--primary-blue);
}

.practice-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    transition: all 0.5s;
}

.practice-card:hover .practice-desc {
    color: var(--slate-600);
    border-color: #e2e8f0;
}

.practice-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.5s;
}

.practice-card:hover .practice-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Quote Section */
.quote-section {
    padding: 5rem 1.5rem;
    background-color: var(--accent-gold);
    color: var(--primary-blue);
}

.quote-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 2rem;
    opacity: 0.5;
}

.quote-text {
    font-size: 2rem;
    font-family: serif;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.quote-author {
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Affiliations Section */
.affiliations-section {
    padding: 6rem 3rem;
    background-color: var(--slate-50);
}

.affiliations-container {
    max-width: 1280px;
    margin: 0 auto;
}

.affiliations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.affiliations-title {
    font-size: 2rem;
    font-family: serif;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.title-line {
    width: 4rem;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 0 auto;
}

.affiliations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 2rem;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.affiliations-list:hover {
    filter: grayscale(0%);
}

.affiliation-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: default;
}

.affiliation-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--accent-gold);
    transition: transform 0.3s;
}

.affiliation-item:hover .affiliation-dot {
    transform: scale(1.5);
}

.affiliation-name {
    font-size: 1.125rem;
    color: var(--slate-600);
    font-family: serif;
    font-style: italic;
    transition: color 0.3s;
}

.affiliation-item:hover .affiliation-name {
    color: var(--primary-blue);
}

/* Contact Section */
.contact-section {
    padding: 6rem 3rem;
    background-color: var(--white);
    position: relative;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 6rem;
}

.contact-title {
    font-size: 3rem;
    font-family: serif;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-description {
    color: var(--slate-600);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-bg {
    background-color: rgba(9, 50, 105, 0.05);
    padding: 0.75rem;
    border-radius: 50%;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-blue);
}

.contact-item-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-size: 1.25rem;
    color: var(--slate-900);
    font-family: serif;
}

/* Business Hours */
.business-hours {
    position: relative;
}

.hours-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.75rem;
    border: 1px solid rgba(9, 50, 105, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background-color: white;
}

.hours-toggle:hover {
    border-color: rgba(9, 50, 105, 0.2);
    background-color: rgba(9, 50, 105, 0.02);
}

.hours-current {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hours-status {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.hours-time {
    font-size: 1rem;
    color: var(--slate-900);
    font-family: serif;
}

.hours-arrow {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.hours-toggle.active .hours-arrow {
    transform: rotate(180deg);
}

.hours-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0.75rem;
    border: 1px solid rgba(9, 50, 105, 0.1);
    border-radius: 0.5rem;
    background-color: white;
}

.hours-dropdown.active {
    max-height: 400px;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(9, 50, 105, 0.05);
}

.hours-day:last-child {
    border-bottom: none;
}

.hours-day.today {
    background-color: rgba(9, 50, 105, 0.05);
    font-weight: 600;
}

.day-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-900);
    min-width: 3rem;
}

.day-hours {
    font-size: 0.95rem;
    color: var(--slate-600);
    font-family: serif;
}

.contact-form-wrapper {
    /* Container for form */
}

.contact-form {
    background-color: var(--slate-50);
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-gold);
    transition: width 0.5s;
}

.contact-form:hover .form-accent {
    width: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background-color: var(--white);
    border: none;
    border-bottom: 2px solid #e2e8f0;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--accent-gold);
}

.form-textarea {
    resize: none;
}

.form-submit {
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
}

.form-submit:hover {
    background-color: var(--secondary-blue);
}

.form-submit .btn-icon {
    transition: transform 0.3s;
}

.form-submit:hover .btn-icon {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 2rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-divider {
    height: 2rem;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(9, 50, 105, 0.9);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.close-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--slate-500);
}

.modal-close:hover .close-icon {
    color: var(--primary-blue);
}

.modal-image {
    width: 33.333%;
    position: relative;
    height: auto;
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(9, 50, 105, 0.1);
    mix-blend-mode: multiply;
    z-index: 10;
}

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

.modal-text {
    width: 66.667%;
    padding: 3rem;
    overflow-y: auto;
}

.modal-title {
    font-size: 2rem;
    font-family: serif;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.modal-bio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-bio p {
    color: var(--slate-600);
    line-height: 1.8;
    font-size: 1.125rem;
}

/* Reveal Animations */
.reveal-up,
.reveal-down,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-left {
    transform: translateX(40px);
}

.reveal-right {
    transform: translateX(-40px);
}

.reveal-up.revealed,
.reveal-down.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .practices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .practices-grid {
        grid-template-columns: 1fr;
    }
    
    .practices-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .practices-desc {
        text-align: left;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        flex-direction: column;
    }
    
    .modal-image,
    .modal-text {
        width: 100%;
    }
    
    .modal-image {
        height: 16rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
}