/* MotoInjure.com - Complete CSS */
/* Color Palette: #4E1F00 (Dark Brown), #74512D (Medium Brown), #FEBA17 (Gold), #F8F4E1 (Cream) */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4E1F00;
    background-color: #F8F4E1;
    padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4E1F00;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.emergency-notice {
    font-weight: 600;
    color: #FEBA17;
}

.navbar {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #4E1F00;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo-accent {
    color: #FEBA17;
}

.tagline {
    font-size: 0.9rem;
    color: #74512D;
    margin: 0;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: #4E1F00;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #FEBA17;
    background: rgba(254, 186, 23, 0.1);
}

/* Remove underlines from logo links across all pages */
.logo a,
.footer-logo a {
    text-decoration: none !important;
    color: inherit;
}

.logo a:hover,
.footer-logo a:hover {
    text-decoration: none !important;
}

.logo a h1,
.footer-logo a h1,
.logo a .tagline,
.footer-logo a .tagline {
    text-decoration: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #FEBA17;
    color: #4E1F00;
}

.btn-primary:hover {
    background: #74512D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 186, 23, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4E1F00;
}

.btn-emergency {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(254, 186, 23, 0.3);
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #74512D 0%, #4E1F00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 186, 23, 0.4);
}

.btn-large {
    padding: 0.7rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.header-cta .btn {
    background: #FEBA17;
    color: #4E1F00;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
}

.header-cta .btn:hover {
    background: #74512D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 186, 23, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(78, 31, 0, 0.9), rgba(116, 81, 45, 0.9)), 
                linear-gradient(45deg, #4E1F00, #74512D);
    color: white;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(254, 186, 23, 0.1) 50%, transparent 70%);
    animation: heroShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(254, 186, 23, 0.2);
    color: #FEBA17;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.05;
}

.highlight {
    color: #FEBA17;
    display: block;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.stat {
    text-align: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 186, 23, 0.2);
    transition: transform 0.3s ease;
    min-width: 120px;
    flex: 1;
}

.stat:hover {
    transform: translateY(-3px);
    background: rgba(254, 186, 23, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FEBA17;
    transition: transform 0.1s ease;
    will-change: transform;
    min-width: 4rem;
    text-align: center;
}

/* Animation states for counters */
.stat-number.counting {
    text-shadow: 0 0 10px rgba(254, 186, 23, 0.5);
    animation: counterGlow 0.1s ease;
}

@keyframes counterGlow {
    0% { text-shadow: 0 0 5px rgba(254, 186, 23, 0.3); }
    50% { text-shadow: 0 0 15px rgba(254, 186, 23, 0.7); }
    100% { text-shadow: 0 0 5px rgba(254, 186, 23, 0.3); }
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}


.results-disclaimer{
margin-top: 26px;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Form */
.hero-form {
    background: white;
    padding: 0;
    margin: 36px 10px 6px 0;
}

.form-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 0;
}

.form-card h3 {
    color: #4E1F00;
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.form-card p {
    color: #74512D;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group textarea{
    height: 70px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FEBA17;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4E1F00;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #74512D;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #74512D;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #F8F4E1;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 1rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: #F8F4E1;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #FEBA17;
}

.breadcrumb span {
    color: #F8F4E1;
    margin: 0 0.5rem;
}

/* Page Content */
.page-content {
    padding: 6rem 0;
    background: white;
    min-height: 60vh;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.about-highlights {
    display: grid;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    color: #4E1F00;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #74512D;
    margin: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #74512D, #4E1F00);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #F8F4E1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(78, 31, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #FEBA17;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(78, 31, 0, 0.15);
}

.service-icon {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #4E1F00;
    margin-bottom: 1rem;
}

.service-card p {
    color: #74512D;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #74512D;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li:before {
    content: '✓';
    color: #FEBA17;
    font-weight: bold;
}

/* Results Section */
.results {
    padding: 6rem 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(78, 31, 0, 0.1);
    text-align: center;
    border-bottom: 4px solid #FEBA17;
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FEBA17;
    margin-bottom: 0.5rem;
}

.result-case {
    font-weight: 600;
    color: #4E1F00;
    margin-bottom: 1rem;
}

.result-card p {
    color: #74512D;
    margin: 0;
}

/* Overview Stats */
.testimonials-overview,
.results-overview {
    padding: 4rem 0;
    background: #F8F4E1;
}

.overview-stats,
.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(78, 31, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FEBA17;
}

.stat-label {
    color: #F8F4E1;
    font-weight: 500;
}

.stars {
    color: #FEBA17;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #4E1F00;
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: #F8F4E1;
}

.featured-testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(78, 31, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #FEBA17;
    color: #4E1F00;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #F8F4E1 0%, white 100%);
    border-left: 4px solid #74512D;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.client-avatar {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.client-details h4 {
    color: #4E1F00;
    margin-bottom: 0.2rem;
}

.client-details p {
    color: #74512D;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: #FEBA17;
}

.settlement-amount {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.testimonial-card p {
    color: #4E1F00;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #F8F4E1;
    font-size: 0.9rem;
    color: #74512D;
}

.testimonial-stars {
    color: #FEBA17;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #F8F4E1;
}

.testimonial-author strong {
    color: #4E1F00;
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: #74512D;
    font-size: 0.9rem;
}

/* Video Testimonials */
.video-testimonials {
    padding: 6rem 0;
    background: #F8F4E1;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(78, 31, 0, 0.15);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-placeholder {
    background: linear-gradient(135deg, #4E1F00, #74512D);
    color: white;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.play-button {
    background: rgba(254, 186, 23, 0.9);
    color: #4E1F00;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: #FEBA17;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: #4E1F00;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #74512D;
    margin: 0;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
}

.carousel-btn {
    background: #ddd;
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn.active,
.carousel-btn:hover {
    background: #FEBA17;
    transform: scale(1.2);
}

/* Written Testimonials */
.written-testimonials {
    padding: 6rem 0;
    background: white;
}

/* Contact Section */
.contact {
    padding: 4rem 0 2rem 0;
    background: #F8F4E1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}


.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(248, 244, 225, 0.3);
    border-radius: 8px;
    border-left: 4px solid #FEBA17;
}

.method-icon {
    background: linear-gradient(135deg, #FEBA17, #74512D);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content h4 {
    margin-bottom: 0.5rem;
    color: #4E1F00;
}

.contact-highlight {
    color: #FEBA17;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.urgency-notice {
    background: #FEBA17;
    color: #4E1F00;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    margin-top: 14px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(254, 186, 23, 0.3);
    border: 2px solid #74512D;
}

.urgency-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #4E1F00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgency-content h4 {
    color: #4E1F00;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    color: #4E1F00;
}

/* Contact Info Styling */
.contact-info h2 {
    color: #4E1F00;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-info p {
    color: #74512D;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Form Benefits Styling */
.form-benefits {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #F8F4E1;
    border-radius: 10px;
    border-left: 4px solid #FEBA17;
}

.form-benefits h4 {
    color: #4E1F00;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-benefits ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #74512D;
    line-height: 1.5;
}

.form-benefits ul li:last-child {
    margin-bottom: 0;
}

.form-benefits ul li i {
    color: #FEBA17;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #4E1F00;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo .logo-accent {
    color: #FEBA17;
}

.footer-logo p {
    color: #F8F4E1;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    color: #F8F4E1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4 {
    color: #FEBA17;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #F8F4E1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FEBA17;
}

.emergency-contact {
    background: rgba(254, 186, 23, 0.2);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.emergency-number {
    color: #FEBA17;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FEBA17;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #74512D;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content p {
    color: #F8F4E1;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4E1F00;
    cursor: pointer;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #FEBA17;
    color: #4E1F00;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #74512D;
    color: white;
    transform: translateY(-2px);
}

/* Moving Service Tags */
.hero-services-ticker {
    bottom: 2rem;
    left: 0;
    right: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-top: 1px solid rgba(254, 186, 23, 0.3);
    border-bottom: 1px solid rgba(254, 186, 23, 0.3);
}

.services-ticker-content {
    display: flex;
    animation: tickerMove 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(254, 186, 23, 0.9);
    color: #4E1F00;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.service-tag i {
    font-size: 1rem;
}

@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }
    
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .navbar-content {
        flex-wrap: wrap;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-radius: 5px;
        padding: 1rem;
        margin-top: 1rem;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-cta {
        order: 2;
    }
    
    .hero {
        padding: 0.5rem 0;
        text-align: center;
        height: 100vh;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 0.6rem;
    }
    
    .hero-services-ticker {
        bottom: 1rem;
        padding: 0.8rem 0;
    }
    
    .service-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid,
    .results-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .video-card {
        margin-bottom: 1.5rem;
    }
    
    .btn + .btn {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.05;
        margin-bottom: 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-services-ticker {
        bottom: 0.5rem;
    }
    
    .service-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-info span {
        flex-direction: row;
        gap: 0.3rem;
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        margin-bottom: 1rem;
        padding: 0.8rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .urgency-notice {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Success Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 20px;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px 20px 0 20px;
    text-align: right;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #4E1F00;
}

.modal-body {
    padding: 20px 40px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-body h3 {
    color: #4E1F00;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-body p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.next-steps {
    text-align: left;
    margin: 1rem 0;
    padding-left: 1rem;
}

.next-steps li {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modal-footer {
    padding: 20px 40px 40px 40px;
    text-align: center;
}

.modal-footer .btn {
    min-width: 120px;
}

body.modal-open {
    overflow: hidden;
}

/* Form Error Styles */
.form-group {
    position: relative;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-body {
        padding: 20px 30px;
    }
    
    .modal-footer {
        padding: 20px 30px 30px 30px;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .modal-body h3 {
        font-size: 1.5rem;
    }
}
