/* ================================
   GLOBAL STYLES & RESET
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-navy: #1a2238;
    --secondary-burgundy: #8b1e3f;
    --accent-gold: #d4af37;
    --dark-gray: #2c3e50;
    --medium-gray: #5a6c7d;
    --light-gray: #ecf0f1;
    --white: #ffffff;
    --off-white: #f8f9fa;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--medium-gray);
}

/* Section Styles */
.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--off-white);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--secondary-burgundy);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.align-center {
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary-burgundy);
    color: var(--white);
    border-color: var(--secondary-burgundy);
}

.btn-primary:hover {
    background-color: #6d1830;
    border-color: #6d1830;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 30, 63, 0.3);
}

.btn-secondary {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.btn-secondary:hover {
    background-color: #0f1424;
    border-color: #0f1424;
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary-burgundy);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--secondary-burgundy);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 25px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--accent-gold);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1rem;
}

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

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-burgundy);
}

.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-menu a:hover {
    background-color: var(--off-white);
    color: var(--secondary-burgundy);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-btn {
    color: var(--secondary-burgundy);
    font-weight: 700;
    font-size: 1.125rem;
}

.phone-btn i {
    margin-right: 8px;
}

.phone-btn:hover {
    color: var(--primary-navy);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-navy);
    margin: 3px 0;
    transition: var(--transition);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-gray) 100%);
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600'), 
                      linear-gradient(135deg, rgba(26, 34, 56, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 34, 56, 0.95), rgba(26, 34, 56, 0.7));
}

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

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: var(--white);
    font-weight: 600;
}

.feature-item i {
    color: var(--accent-gold);
    margin-right: 10px;
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

/* ================================
   TRUST BAR
   ================================ */
.trust-bar {
    background-color: var(--white);
    padding: 40px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-burgundy), #a12447);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.trust-content p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary-burgundy);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 30, 63, 0.3);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--heading-font);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.875rem;
    line-height: 1.3;
    margin-top: 5px;
}

.about-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding: 20px;
    background-color: var(--off-white);
    border-radius: 8px;
    transition: var(--transition);
}

.highlight-item:hover {
    background-color: var(--light-gray);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--secondary-burgundy);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.highlight-item p {
    margin: 0;
    color: var(--medium-gray);
}

/* ================================
   PRACTICE AREAS
   ================================ */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-burgundy);
}

.practice-card.highlight {
    background: linear-gradient(135deg, var(--secondary-burgundy), #a12447);
    color: var(--white);
}

.practice-card.highlight h3,
.practice-card.highlight p {
    color: var(--white);
}

.practice-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-burgundy), #a12447);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.75rem;
}

.practice-card.highlight .practice-icon {
    background: var(--white);
    color: var(--secondary-burgundy);
}

.practice-card h3 {
    margin-bottom: 1rem;
}

.practice-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--secondary-burgundy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.practice-card.highlight .card-link {
    color: var(--white);
}

/* ================================
   WHY CHOOSE US
   ================================ */
.why-list {
    margin-top: 2rem;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.why-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--heading-font);
    color: var(--accent-gold);
    opacity: 0.3;
    flex-shrink: 0;
    line-height: 1;
}

.why-content h4 {
    margin-bottom: 0.75rem;
}

.why-content p {
    color: var(--medium-gray);
    margin: 0;
}

.stats-box {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-gray));
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stats-box h3 {
    color: var(--white);
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--heading-font);
    color: var(--accent-gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    display: block;
    margin-top: 10px;
}

.cta-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    margin-top: 2rem;
}

.cta-box h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.testimonial-rating {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    color: var(--primary-navy);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-gray));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background-color: var(--primary-navy);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 40px;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

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

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

.footer-social a:hover {
    background-color: var(--secondary-burgundy);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list i {
    color: var(--accent-gold);
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-list a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}

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

.disclaimer-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ================================
   PAGE HERO (Internal Pages)
   ================================ */
.page-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-gray) 100%);
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600'), 
                      linear-gradient(135deg, rgba(26, 34, 56, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 34, 56, 0.8);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

/* ================================
   SERVICE PAGES
   ================================ */
.service-intro {
    padding: 60px 0;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-burgundy);
}

.service-content ul,
.service-content ol {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1.5rem;
}

.service-content ul li,
.service-content ol li {
    margin-bottom: 10px;
    color: var(--medium-gray);
}

.check-list {
    list-style: none !important;
    margin-left: 0 !important;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.check-list i {
    color: var(--secondary-burgundy);
    margin-top: 3px;
    flex-shrink: 0;
}

.info-box {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-burgundy);
    margin: 2rem 0;
}

.info-box h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.warning-box {
    background-color: #fff3cd;
    border-left-color: var(--accent-gold);
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 3rem;
}

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

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

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-burgundy), #a12447);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.75rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--secondary-burgundy);
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    color: var(--primary-navy);
}

.availability {
    color: var(--medium-gray);
    font-size: 0.875rem;
    font-style: italic;
}

address {
    font-style: normal;
}

/* Form Styles */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-burgundy);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.form-note {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: 15px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.sidebar-box h3 {
    margin-bottom: 1.5rem;
}

.emergency-box {
    background: linear-gradient(135deg, var(--secondary-burgundy), #a12447);
    color: var(--white);
    text-align: center;
}

.emergency-box i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.emergency-box h3,
.emergency-box p {
    color: var(--white);
}

.emergency-note {
    font-size: 0.875rem;
    margin-top: 15px;
}

.numbered-list {
    list-style: none;
    counter-reset: item;
}

.numbered-list li {
    counter-increment: item;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: var(--secondary-burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

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

.map-container {
    width: 100%;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background-color: var(--off-white);
    border-radius: 8px;
}

.map-info-item i {
    color: var(--secondary-burgundy);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.map-info-item h4 {
    margin-bottom: 0.5rem;
}

.map-info-item p {
    margin: 0;
    color: var(--medium-gray);
}

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

.area-column h4 {
    color: var(--secondary-burgundy);
    margin-bottom: 1rem;
}

.area-column ul {
    list-style: none;
}

.area-column ul li {
    padding: 8px 0;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--light-gray);
}

.area-column ul li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--off-white);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--secondary-burgundy);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ================================
   ABOUT PAGE SPECIFIC STYLES
   ================================ */
.about-image-stack {
    position: relative;
}

.img-main {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-overlay .stat-item {
    background-color: var(--secondary-burgundy);
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 30, 63, 0.3);
}

.stat-overlay .stat-number {
    font-size: 2rem;
}

.stat-overlay .stat-label {
    font-size: 0.75rem;
}

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

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

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-burgundy), #a12447);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.75rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--medium-gray);
    margin: 0;
}

.feature-box {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
}

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

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--heading-font);
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-box h3 {
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--medium-gray);
    margin: 0;
}

.approach-steps {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 25px;
    background-color: var(--off-white);
    border-radius: 8px;
    transition: var(--transition);
}

.step-item:hover {
    background-color: var(--light-gray);
    transform: translateX(5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-burgundy), #a12447);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--medium-gray);
    margin: 0;
}

.commitment-box {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-gray));
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
}

.commitment-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.commitment-box .lead {
    color: rgba(255, 255, 255, 0.9);
}

.commitment-box .check-list {
    margin: 2rem 0;
}

.commitment-box .check-list i {
    color: var(--accent-gold);
}

.commitment-box .check-list li {
    color: rgba(255, 255, 255, 0.9);
}

.quote-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 2rem;
}

.quote-box i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.quote-box p {
    font-style: italic;
    margin-bottom: 1rem;
}

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

.community-content h3 {
    color: var(--secondary-burgundy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.community-content h3:first-child {
    margin-top: 0;
}

.community-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.community-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-area-box {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 10px;
}

.service-area-box h3 {
    margin-bottom: 1rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 1.5rem 0;
}

.location-grid span {
    padding: 8px 12px;
    background-color: var(--white);
    border-radius: 5px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.service-note {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-style: italic;
    margin: 0;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 140px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 140px);
        background-color: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .header-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    
    .header-cta .btn {
        width: 100%;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-items,
    .practice-grid,
    .testimonials-grid,
    .contact-cards,
    .values-grid,
    .service-areas,
    .map-info {
        grid-template-columns: 1fr;
    }
    
    .col-4,
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .stats-box {
        margin-top: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .experience-badge,
    .stat-overlay {
        position: static;
        margin-top: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }