/* ============================================
   INTERNATIONAL RIGHTS LEGAL — Main Stylesheet
   Design clone of DiCello Levitt layout
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-dark: #042042;
    --navy: #072140;
    --teal: #009b94;
    --orange: #fd9239;
    --light-bg: #f7f9fb;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --border: #dde3ea;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

/* --- Scroll Animations --- */
.anim-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.anim-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.news-grid .anim-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.news-grid .anim-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.cases-grid .anim-on-scroll:nth-child(2) { transition-delay: 0.15s; }

/* Hero animations */
.hero-title-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.accent-animate {
    width: 0;
    animation: accentGrow 0.6s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s 0.1s ease forwards;
}

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

@keyframes accentGrow {
    to { width: 60px; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy);
    height: 64px;
    transition: box-shadow 0.3s ease, height 0.3s ease;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    color: var(--white);
    font-size: 0.875rem;
}

.skip-link:focus {
    left: 24px;
    top: 24px;
    z-index: 10000;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    margin-right: auto;
    flex-shrink: 0;
}

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

.logo-icon {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 32px;
}

.logo-icon span {
    display: block;
    width: 5px;
    background: var(--teal);
    border-radius: 1px;
    transition: height 0.3s ease;
}

.logo-icon span:nth-child(1) { height: 32px; }
.logo-icon span:nth-child(2) { height: 20px; }
.logo-icon span:nth-child(3) { height: 26px; }

.logo-icon.light span {
    background: var(--teal);
}

.logo-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* Nav */
.main-nav { display: none; }
@media (min-width: 992px) { .main-nav { display: flex; } }

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
    display: block;
    padding: 20px 14px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list > li > a:hover::after { transform: scaleX(1); }
.nav-list > li > a:hover { color: var(--teal); }

/* Dropdown */
.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy-dark);
    min-width: 200px;
    list-style: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 100;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.has-dropdown:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown li a:hover {
    color: var(--white);
    background: rgba(0, 155, 148, 0.15);
    padding-left: 24px;
}

/* Search & Mobile Toggle */
.search-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
    display: none;
    transition: transform 0.3s ease;
}

@media (min-width: 992px) { .search-toggle { display: flex; } }
.search-toggle:hover { color: var(--teal); transform: scale(1.1); }

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 16px;
}

@media (min-width: 992px) { .mobile-toggle { display: none; } }

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Search Overlay */
.search-overlay {
    display: none;
    background: var(--navy-dark);
    padding: 16px 24px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-overlay.active { display: block; }

.search-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.search-form label { flex: 1; }

.search-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--teal);
}

.search-form input::placeholder { color: rgba(255,255,255,0.5); }

.search-form button {
    background: var(--teal);
    border: none;
    color: var(--white);
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.search-form button:hover { background: #00b3ab; }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--teal);
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav-overlay.active { display: block; animation: fadeIn 0.3s ease; }

.mobile-nav ul { list-style: none; padding: 24px; }

.mobile-nav ul li a {
    display: block;
    padding: 16px 0;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: padding-left 0.3s ease;
}

.mobile-nav ul li a:hover { padding-left: 8px; }

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        url('https://dicellolevitt.com/wp-content/uploads/2020/10/Civil-and-Human-Rights-Litigation-1024x683.jpg');
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7,33,64,0.92) 0%, rgba(0,155,148,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 32px;
    width: 100%;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-link:hover { opacity: 0.8; color: var(--white); transform: translateX(-4px); }

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1.8px;
    line-height: 1.15;
    max-width: 600px;
}

.hero-accent {
    height: 4px;
    background: var(--orange);
    margin-top: 16px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hero { height: 220px; }
    .hero h1 { font-size: 1.85rem; }
}

/* --- Main Content Area --- */
.content-area {
    padding: 36px 0 24px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr 280px;
        gap: 56px;
    }
}

/* Main Column */
.main-column { max-width: 100%; }

.intro-rule {
    width: 60px;
    height: 4px;
    background: var(--navy);
    margin-bottom: 24px;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

.main-column p {
    margin-bottom: 20px;
    line-height: 1.75;
}

.main-column strong { font-weight: 700; }

/* Pullquote */
.pullquote {
    border: none;
    margin: 32px 0;
    padding: 24px 0;
    position: relative;
}

.pullquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange);
    transition: width 0.6s ease;
}

.pullquote.is-visible::before {
    width: 80px;
}

.pullquote p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 10px !important;
}

.pullquote cite {
    display: block;
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.3px;
}

/* Representative Investigations */
.representative-matters {
    margin-top: 36px;
    padding-top: 24px;
}

.representative-matters h2 {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.67px;
    color: var(--navy);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.representative-matters h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange);
}

.matter {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.matter:last-child { border-bottom: none; }

.matter:hover { border-color: var(--teal); }

.matter h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.matter h3 a {
    color: var(--navy);
    transition: color 0.3s ease;
    position: relative;
}

.matter h3 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.matter h3 a:hover { color: var(--teal); }
.matter h3 a:hover::after { width: 100%; }

.matter p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* --- Sidebar --- */
.sidebar { position: relative; }

@media (min-width: 992px) {
    .sidebar {
        padding-top: 4px;
        position: sticky;
        top: 88px;
        align-self: start;
    }
}

.sidebar-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin-bottom: 10px;
}

.sidebar-rule {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin-bottom: 20px;
}

.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 0; }

.sidebar-links li a {
    display: block;
    padding: 12px 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
    transition: color 0.3s ease, padding-left 0.3s ease, border-color 0.3s ease;
}

.sidebar-links li a:hover {
    color: var(--teal);
    padding-left: 6px;
    border-color: var(--teal);
}

.sidebar-links li:first-child a { border-top: 1px solid var(--border); }

/* --- Key Contacts / Senior Investigators --- */
.key-contacts {
    padding: 48px 0;
    background: var(--light-bg);
}

.key-contacts h2 {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.67px;
    color: var(--navy);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.key-contacts h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange);
}

.contacts-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.1);
}

.contacts-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 8px 0;
}

.contacts-track::-webkit-scrollbar { display: none; }

.contact-card {
    flex: 0 0 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover { transform: translateY(-6px); }

.contact-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 14px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.contact-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,33,64,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .contact-photo::after { opacity: 1; }

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.contact-card:hover .contact-photo img { transform: scale(1.05); }

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: #d8dfe8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.contact-name:hover { color: var(--teal); }

.contact-title {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-email {
    display: inline-flex;
    color: var(--teal);
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-email:hover { color: var(--navy); transform: scale(1.15); }

/* --- News / Dispatches Section --- */
.news-section {
    padding: 48px 0;
    background: var(--white);
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h2 {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.67px;
    color: var(--navy);
    position: relative;
    padding-bottom: 14px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange);
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.3s ease, gap 0.3s ease;
}

.view-all:hover { color: var(--teal); gap: 12px; }

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover { transform: translateY(-6px); }

.news-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 2px;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img { transform: scale(1.06); }

.news-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a2d4f 0%, #0d4a6b 50%, #094a47 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.news-card:hover h3 { color: var(--teal); }

.news-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* --- Cases / Active Investigations --- */
.cases-section {
    padding: 48px 0;
    background: var(--light-bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
}

.case-card {
    display: block;
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.case-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.case-card:hover .case-image img { transform: scale(1.06); }

.case-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #072140 0%, #0a3a5e 50%, #07403d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-status {
    display: inline-block;
    margin: 16px 20px 10px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 2px;
}

.case-status.active { background: var(--teal); color: var(--white); }
.case-status.resolved { background: var(--navy); color: var(--white); }

.case-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    padding: 0 20px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.case-card:hover h3 { color: var(--teal); }

.case-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 20px;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-link {
    display: block;
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--border);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.case-card:hover .case-link { color: var(--teal); padding-left: 24px; }

/* --- Footer --- */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding-top: 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 992px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-mission {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
}

.footer-mission strong { color: var(--white); font-weight: 500; }

.footer-nav ul {
    list-style: none;
    columns: 2;
    gap: 0;
}

.footer-nav > ul > li { break-inside: avoid; margin-bottom: 4px; }

.footer-nav > ul > li > a {
    display: block;
    padding: 5px 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav > ul > li > a:hover { color: var(--teal); padding-left: 4px; }

.footer-nav ul ul { list-style: none; margin-left: 12px; }

.footer-nav ul ul li a {
    display: block;
    padding: 3px 0;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
}

.footer-nav ul ul li a:hover { color: var(--teal); }

/* Footer Connect */
.footer-connect {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.connect-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
}

.newsletter-btn {
    display: inline-block;
    padding: 8px 24px;
    background: var(--teal);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter-btn:hover { background: #00b3ab; color: var(--white); transform: translateY(-2px); }

.social-links { display: flex; gap: 16px; margin-left: auto; }

.social-links a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
}

.social-links a:hover { color: var(--white); transform: translateY(-2px); }

/* Footer Offices */
.footer-offices {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-offices h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.9);
}

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

@media (min-width: 768px) {
    .offices-grid { grid-template-columns: repeat(4, 1fr); }
}

.office { display: flex; flex-direction: column; gap: 3px; }
.office strong { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; color: rgba(255,255,255,0.9); }
.office span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* Footer Bottom */
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--teal); }

/* --- Responsive Adjustments --- */
@media (max-width: 576px) {
    .hero h1 { font-size: 1.65rem; }
    .representative-matters h2, .key-contacts h2, .section-header h2 { font-size: 1.4rem; }
    .contacts-carousel { flex-direction: column; }
    .contacts-track { gap: 16px; }
    .carousel-arrow { display: none; }
    .footer-connect { flex-direction: column; align-items: flex-start; }
    .social-links { margin-left: 0; }
}

@media (max-width: 768px) {
    .logo-text { font-size: 0.85rem; letter-spacing: 1px; }
}
