/* =============================================
   LAW FIRM WEBSITE - MAIN STYLESHEET
   =============================================
   This file contains all styling for the law firm website including:
   - Reset and base styles
   - Navigation and layout
   - Hero slider styling
   - Content sections (services, about, contact, etc.)
   - Responsive design for mobile devices
   - Accessibility features

   Color Scheme:
   - Primary Blue: #0056b3 (navigation, headers, main elements)
   - Secondary Blue: #003d7a (hover states, accents)
   - Accent Gold: #ffd700 (headings, buttons, highlights)
   - Text: #333 (body text)
   - Background: Light blue gradient for modern look
*/

/* =============================================
   RESET AND BASE STYLES
   =============================================
   Establishes consistent styling across all browsers
   and sets up the foundation for the entire website
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #003d7a;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }

/* =============================================
   NAVIGATION SYSTEM
   =============================================
   Styles for the main site navigation including logo, menu, and mobile hamburger
*/
header {
    background: linear-gradient(135deg, #0056b3 0%, #003d7a 100%);
    color: #fff;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    background-color: #fff;
    height: 3px;
    width: 25px;
    transition: 0.3s;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
}

.nav-menu a:hover, .nav-menu a.active {
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    color: #003d7a;
    transform: translateY(-2px);
    font-weight: bold;
}

.nav-menu a.active {
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

/* =============================================
   HERO SLIDER SYSTEM
   =============================================
   Full-screen image slider for the main hero section with auto-play,
   manual navigation controls, and responsive design
*/
#hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    margin-bottom: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 2rem;
    background: rgba(0, 61, 122, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 0 auto;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.slide-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    color: #003d7a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-nav:hover {
    background: #ffd700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #ffd700;
    transform: scale(1.2);
}

/* Main content */
/* Main content sections uniform spacing */
main section {
    padding: 4rem 1rem;
    margin-bottom: 2rem;
}

main section:last-child {
    margin-bottom: 0;
}

/* Main content centering - consistent layout across all pages */
main h1, main h2, main h3 {
    text-align: center;
}

main section p, main section ul {
    text-align: left;
}

main section .section-subtitle {
    text-align: center !important;
}

/* Ensure all introductory section text is centered for consistency */
main section > p:first-of-type {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

main section > p:only-child {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Service page specific centering */
#family-law-hero p, #estate-planning-hero p, #personal-injury-hero p, #corporate-law-hero p,
#mergers-acquisitions-hero p, #intellectual-property-hero p, #esg-law-hero p,
#web3-crypto-law-hero p, #international-law-hero p {
    text-align: center;
}

/* Card content consistency */
.law-service-card p,
.process-step p,
.value-card p,
.why-choose-card p {
    text-align: center;
}

/* Specific overrides for elements that should remain left-aligned */
.law-service-card ul li,
.attorney-specialty,
.patient-title,
.client-title {
    text-align: left;
}

/* Hero section */
#hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d7a 100%);
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #003d7a;
    padding: 1rem 2rem;
    border: 2px solid #003d7a;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 1s ease-out 1s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    border-color: #0056b3;
}

/* =============================================
   CONTENT SECTIONS
   =============================================
   Main content areas including services, about, testimonials, and contact sections
*/

/* About Section - Homepage Summary */
#home-about {
    text-align: center;
    padding: 4rem 1rem;
}

.about-preview {
    max-width: 800px;
    margin: 2rem auto 0;
}

.about-highlight {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
    display: inline-block;
    max-width: 100%;
}

.about-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.about-highlight h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-highlight p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section - Practice Areas Grid */
#services {
    text-align: center;
    padding: 4rem 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin: 3rem auto;
}

.service-card {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.service-icon {
    display: none;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.service-card p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.service-link {
    display: inline-block;
    color: #003d7a;
    background: #ffd700;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.service-item h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: bold;
}

.learn-more {
    display: inline-block;
    color: #003d7a;
    background: #ffd700;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

/* =============================================
   WHY CHOOSE US SECTION
   =============================================
   Features section highlighting firm strengths with animated icons and cards
*/
#why-choose-us {
    text-align: center;
    padding: 4rem 1rem;
    background: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 3rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Newsletter Signup Section */
#newsletter {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    animation: newsletter-float 4s ease-in-out infinite;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

@keyframes newsletter-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 1rem auto 0;
}

#newsletter-email {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #003d7a;
    font-weight: 600;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s;
}

#newsletter-email:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 5px rgba(255,215,0,0.3);
}

.newsletter-submit {
    padding: 1rem 2rem;
    background: #ffd700;
    color: #003d7a;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.icon {
    display: none;
}

.why-choose-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.why-choose-card p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   TESTIMONIALS SECTION
   =============================================
   Client testimonials display with star ratings and customer photos
*/
#testimonials {
    text-align: center;
    padding: 4rem 1rem;
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,215,0,0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.testimonial-image {
    margin-bottom: 1rem;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd700;
}

.rating {
    display: flex;
    margin-bottom: 1rem;
    gap: 0.2rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.testimonial-content cite {
    font-weight: bold;
    color: #ffd700;
    font-size: 1.1rem;
}

.client-title {
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* =============================================
   ATTORNEY SPOTLIGHT SECTION
   =============================================
   Featured attorneys display with glassmorphism effects and profile cards
*/
#attorney-spotlight {
    text-align: center;
    padding: 4rem 1rem;
    background: transparent;
    color: #fff;
}

/* Attorneys page specific */
#attorneys-hero {
    text-align: center;
    padding: 4rem 1rem;
}

.attorney-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

.attorney-item {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,215,0,0.3);
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
}

.attorney-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 86, 179, 0.3);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
}

.attorney-image {
    margin-bottom: 1.5rem;
}

.attorney-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.attorney-item:hover .attorney-img {
    transform: scale(1.1);
    border-color: #fff;
}

.attorney-item h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.attorney-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.attorney-specialty {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.attorney-link {
    display: inline-block;
    color: #003d7a;
    background: #ffd700;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.attorney-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: rgba(0, 86, 179, 0.1);
    padding: 1.2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.breadcrumb a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.breadcrumb span {
    color: #b0b0b0;
    margin: 0 0.25rem;
}

.breadcrumb span:last-child {
    color: #e0e0e0;
    font-weight: 600;
}

/* Attorney Profile Page Styles */
#attorney-hero {
    text-align: center;
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #003d7a 0%, #0056b3 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

#attorney-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 86, 179, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.attorney-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

#attorney-hero h1, #attorney-hero p {
    margin: 0;
}

#attorney-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
    font-weight: 700;
    letter-spacing: -1px;
}

.attorney-title-large {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.attorney-specialty-hero {
    font-size: 1.2rem;
    color: #ffed4e;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

#attorney-profile {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.attorney-profile-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.attorney-profile-image {
    text-align: center;
}

.attorney-profile-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    border: 4px solid #ffd700;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.5);
    object-fit: cover;
}

.attorney-profile-info h2 {
    color: #ffd700;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.attorney-profile-info h3 {
    color: #ffd700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.attorney-specialty-main {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.attorney-title-sub {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.attorney-profile-info p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.attorney-profile-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.attorney-profile-info li {
    color: #ffffff;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    line-height: 1.6;
}

.attorney-profile-info li:last-child {
    border-bottom: none;
}

.attorney-profile-info li strong {
    color: #ffd700;
}

#attorney-schedule {
    background: rgba(0, 86, 179, 0.2);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding: 3rem 1rem;
    text-align: center;
    margin-top: 3rem;
}

#attorney-schedule h2 {
    color: #ffd700;
    margin-bottom: 1rem;
}

#attorney-schedule p {
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Attorney Listing Updates */
.attorney-bio-excerpt {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.spotlight-cta {
    margin-top: 2rem;
}

.spotlight-cta .cta-button {
    background: #ffd700;
    color: #003d7a;
    box-shadow: none;
    animation: none;
}

.spotlight-cta .cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.leadership-cta {
    background: #ffd700;
    color: #003d7a;
    box-shadow: none;
    animation: none;
}

.leadership-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

/* About page section uniformity */
#firm-history, #values, #leadership {
    text-align: center;
    padding: 4rem 1rem;
}

/* Service Page Styles - Common for all detailed service pages */
#family-law-hero, #family-law-overview, #family-law-process, #family-law-cta,
#estate-planning-hero, #estate-planning-overview, #estate-planning-process, #estate-planning-cta,
#personal-injury-hero, #personal-injury-overview, #personal-injury-process, #personal-injury-cta,
#corporate-law-hero, #corporate-law-overview, #corporate-law-process, #corporate-law-cta,
#mergers-acquisitions-hero, #mergers-acquisitions-overview, #mergers-acquisitions-process, #mergers-acquisitions-cta {
    text-align: center;
}

.family-law-services, .estate-planning-services, .personal-injury-services, .corporate-law-services, .mergers-acquisitions-services, .intellectual-property-services, .esg-law-services, .web3-crypto-law-services, .international-law-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.law-service-card {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.law-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.law-service-card:hover::before {
    transform: scaleX(1);
}

.law-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.law-service-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.law-service-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.law-service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.law-service-card li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    text-align: left;
}

.law-service-card li::before {
    content: '⚖️';
    position: absolute;
    left: -0.5rem;
    top: 0;
    font-size: 0.8rem;
}

.law-service-card ul li {
    text-align: left;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.process-step {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    color: #003d7a;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.process-step p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

#family-law-cta, #estate-planning-cta, #personal-injury-cta, #corporate-law-cta, #mergers-acquisitions-cta, #intellectual-property-cta, #esg-law-cta, #web3-crypto-law-cta, #international-law-cta {
    background: linear-gradient(135deg, #0056b3 0%, #003d7a 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

#family-law-cta h2, #estate-planning-cta h2, #personal-injury-cta h2, #corporate-law-cta h2, #mergers-acquisitions-cta h2, #intellectual-property-cta h2, #esg-law-cta h2, #web3-crypto-law-cta h2, #international-law-cta h2 {
    color: #ffd700;
    margin-bottom: 1rem;
}

#family-law-cta p, #estate-planning-cta p, #personal-injury-cta p, #corporate-law-cta p, #mergers-acquisitions-cta p, #intellectual-property-cta p, #esg-law-cta p, #web3-crypto-law-cta p, #international-law-cta p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

#family-law-cta .cta-button {
    background: #ffd700;
    color: #003d7a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

#family-law-cta .cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

#estate-planning-cta .cta-button, #personal-injury-cta .cta-button, #corporate-law-cta .cta-button, #mergers-acquisitions-cta .cta-button, #intellectual-property-cta .cta-button, #esg-law-cta .cta-button, #web3-crypto-law-cta .cta-button, #international-law-cta .cta-button {
    background: #ffd700;
    color: #003d7a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

#estate-planning-cta .cta-button:hover, #personal-injury-cta .cta-button:hover, #corporate-law-cta .cta-button:hover, #mergers-acquisitions-cta .cta-button:hover, #intellectual-property-cta .cta-button:hover, #esg-law-cta .cta-button:hover, #web3-crypto-law-cta .cta-button:hover, #international-law-cta .cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

/* Page hero sections - consistent styling */
#about-hero {
    background-image: url('../images/about-hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

#about-hero h1, #about-hero p {
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    max-width: 800px;
}

#services-hero {
    background-image: url('../images/services-hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

#services-hero h1, #services-hero p {
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    max-width: 800px;
}

#services-hero, #attorneys-hero, #contact-hero {
    padding: 2rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

#individual-services, #business-services, #specialized-services {
    text-align: center;
    padding: 4rem 1rem;
}

/* About us styles */
#about-hero, #services-hero, #attorneys-hero, #contact-hero {
    text-align: center;
    margin-bottom: 2rem;
}

#attorneys-hero {
    background-image: url('../images/attorney-hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#attorneys-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

#attorneys-hero h1, #attorneys-hero p {
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    max-width: 800px;
}

#contact-hero {
    background-image: url('../images/contact-hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

#contact-hero h1, #contact-hero p {
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    max-width: 800px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.value-card {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #ffd700;
}

.value-card p {
    text-align: center;
    color: #ffffff;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 3rem auto;
    max-width: 800px;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffd700 0%, rgba(255,215,0,0.3) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    animation: slideInRight 0.8s ease-out both;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056b3 0%, #003d7a 100%);
    border: 3px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255,215,0,0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.timeline-number {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 1;
}

.timeline-content {
    margin-left: 2rem;
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    padding: 2rem;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, rgba(255,215,0,0.2) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-content:hover::before {
    transform: scaleX(1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.timeline-content h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.timeline-content p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-item:hover::before {
    transform: scaleX(1);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.timeline-item h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.timeline-item p {
    color: #ffffff;
    line-height: 1.6;
}

/* Attorneys - page specific */

.bio-toggle {
    background: #ffd700;
    color: #003d7a;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.bio-toggle:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.bio {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.hidden {
    display: none;
}

/* =============================================
   CONTACT FORM & INFO SECTION
   =============================================
   Contact form styling with validation states and responsive layout
*/
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ffd700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
    color: #003d7a;
    font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 5px rgba(255,215,0,0.3);
}

/* Loading spinner for forms */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

/* Newsletter spinner */
.newsletter-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 216, 0, 0.3);
    border-top: 2px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form message styling */
.form-success {
    color: #28a745;
    font-weight: bold;
    text-align: center;
}

.form-error {
    color: #dc3545;
    font-weight: bold;
    text-align: center;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-layout {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.firm-address {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.firm-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ffd700 0%, #e6c200 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.firm-address:hover::before {
    transform: scaleX(1);
}

.firm-address:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.7);
    background: rgba(0, 86, 179, 0.3);
}

.firm-address h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.firm-address .info-item h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.firm-address .info-item p {
    color: #ffffff;
    line-height: 1.6;
}

#contact-form {
    background: rgba(0, 86, 179, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,86,179,0.5);
    transition: all 0.3s ease;
}

#contact-form h2 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-submit {
    background: #ffd700;
    color: #003d7a;
    box-shadow: none;
    animation: none;
}

.contact-submit:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    text-align: center;
}

#map {
    height: 300px;
    background: #f8f9fa;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-section h4 {
    color: #ffed4e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255,215,0,0.4);
    padding-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-contact {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.3rem 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* =============================================
   FOOTER SECTION
   =============================================
   Site footer with contact info, links, and SSL badge
*/

/* =============================================
   MOBILE RESPONSIVE DESIGN
   =============================================
   Media queries and mobile-specific styling for all device sizes
*/
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2;
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #003d7a 0%, #0056b3 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.3s;
        z-index: 1000;
    }

    .nav-menu.active {
        top: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    nav {
        position: relative;
    }

    #hero h1 {
        font-size: 2rem;
    }

    /* Hero Slider Mobile Styles */
    #hero-slider {
        height: 50vh;
        min-height: 400px;
        max-height: 500px;
    }

    .slide-content {
        padding: 2rem 1rem;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }

    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .services-grid, #team-grid, .why-choose-grid, .testimonials-grid, .attorney-preview, .family-law-services, .process-timeline {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .why-choose-card, .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .attorney-item {
        padding: 1.5rem;
    }

    .attorney-img {
        width: 120px;
        height: 120px;
    }

    .testimonial-img {
        width: 60px;
        height: 60px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Attorney Profile Mobile Styles */
    #attorney-hero {
        padding: 2rem 1rem;
        min-height: 20vh;
    }

    #attorney-hero h1 {
        font-size: 2rem;
    }

    #attorney-hero p {
        font-size: 1rem;
    }

    .attorney-profile-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .attorney-profile-img {
        max-width: 100%;
        margin: 0 auto;
    }

    .attorney-profile-info h2,
    .attorney-profile-info h3 {
        font-size: 1.3rem;
    }

    .attorney-profile-info p {
        font-size: 0.95rem;
    }

    #attorney-schedule {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    #attorney-schedule h2 {
        font-size: 1.5rem;
    }

    #attorney-schedule .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Breadcrumb Mobile Styles */
    .breadcrumb {
        padding: 1rem 1rem;
        gap: 0.25rem;
        font-size: 0.9rem;
    }

    .breadcrumb a, .breadcrumb span {
        font-size: 0.85rem;
    }

    /* Attorney Hero Mobile Styles */
    #attorney-hero {
        padding: 3rem 1rem;
        min-height: 280px;
    }

    #attorney-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .attorney-title-large {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .attorney-specialty-hero {
        font-size: 1rem;
    }
}
