/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2e4250;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #2e4250;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #c13b2d;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 0.7;
}

.gala-btn {
    background: #54bddb;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s ease;
}

.gala-btn:hover {
    background: #4aa3c4;
}

/* Emergency Notice */
.emergency-notice {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.emergency-notice .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emergency-notice p {
    font-size: 14px;
    line-height: 1.4;
}

.emergency-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.donate-btn {
    background: #c13b2d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.donate-btn:hover {
    background: #a13023;
}

.espanol-btn {
    background: #8d9296;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    transition: background 0.3s ease;
}

.espanol-btn:hover {
    background: #7a7f84;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(46, 66, 80, 0.7), rgba(46, 66, 80, 0.7)),
                url('https://i.imgur.com/MQqAt6o.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Action Cards */
.action-cards {
    padding: 40px 0;
    background: #fff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px 40px;
    margin-bottom: 60px;
    padding-top: 10px;
}

.action-card {
    text-align: center;
    padding: 60px 30px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    position: relative;
    margin-top: 30px;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.card-icon i {
    font-size: 28px;
    color: #c13b2d;
}

.card-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.action-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2e4250;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-card p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.card-btn {
    background: #c13b2d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-btn:hover {
    background: #a13023;
}

.additional-info {
    text-align: center;
    margin-top: 40px;
}

.additional-info p {
    margin-bottom: 10px;
    color: #666;
}

.learn-more-btn {
    background: #54bddb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learn-more-btn:hover {
    background: #4aa3c4;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-logo {
    height: 80px;
    margin-bottom: 20px;
}

.stats-header h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #2e4250;
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    justify-items: center;
}

.stat-item {
    text-align: center;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stat-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8d9296 0%, #6c7377 100%);
    border: 5px solid #c13b2d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.stat-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: #a13023;
}

.stat-icon i {
    font-size: 45px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2e4250;
    margin-bottom: 12px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2e4250;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stats-date {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 30px;
    font-style: italic;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background: #f0f2f5;
}

.how-we-work h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    color: #2e4250;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.mission-section, .structure-section {
    margin-bottom: 40px;
}

.mission-section h3, .structure-section h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2e4250;
    text-align: center;
}

.mission-section p, .structure-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

/* Information Wanted Section */
.information-wanted {
    padding: 80px 0;
    background: #fff;
}

.information-wanted h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
    color: #2e4250;
}

.warning {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.warning strong {
    color: #c13b2d;
    font-weight: 600;
}

.submit-tip-btn {
    display: block;
    margin: 30px auto 60px;
    background: #c13b2d;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-tip-btn:hover {
    background: #a13023;
}

.wanted-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.case-item {
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
}

.case-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.case-item h4 {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e4250;
    background: #f8f9fa;
}

/* Empty State for Wanted Cases */
.wanted-cases.empty-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.empty-message {
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.empty-message i {
    font-size: 4rem;
    color: #c13b2d;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-message h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2e4250;
    margin-bottom: 15px;
}

.empty-message p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.empty-message .sub-message {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    margin-top: 20px;
}

/* Donation Section */
.donation {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.donation h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #c13b2d;
}

.video-section {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.video-section video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.donate-now-btn {
    background: #c13b2d;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin: 30px 0;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donate-now-btn:hover {
    background: #a13023;
}

.tax-info {
    color: #666;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sponsors Section */
.sponsors {
    padding: 80px 0;
    background: #fff;
}

.sponsors h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    color: #2e4250;
}

.sponsor-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #c13b2d;
    margin-bottom: 20px;
    font-weight: 500;
}

.sponsors p {
    text-align: center;
    margin-bottom: 10px;
    color: #666;
}

.sponsors a {
    color: #54bddb;
    text-decoration: none;
}

.sponsors a:hover {
    text-decoration: underline;
}

.disclaimer {
    font-size: 14px;
    margin-bottom: 60px !important;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.sponsors-grid img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsors-grid img:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #2e4250;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s ease;
}

.footer-social img:hover {
    opacity: 0.7;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    background: #54bddb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.app-btn:hover {
    background: #4aa3c4;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #c9ced0;
}

.footer-section a {
    color: #54bddb;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.spanish-contact {
    font-style: italic;
    font-size: 14px;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid #54bddb;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #c9ced0;
    font-size: 14px;
}

/* Roleplay Disclaimer */
.roleplay-disclaimer {
    background: #f5f5f5;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 20px 30px;
    margin-top: 30px;
    text-align: center;
}

.roleplay-disclaimer p {
    color: #666;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.roleplay-disclaimer strong {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 25px;
        max-width: 900px;
    }

    .stat-circle {
        width: 130px;
        height: 130px;
    }

    .stat-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .emergency-notice .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        min-height: 50vh;
        background-attachment: scroll; /* Fix for mobile parallax */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        max-width: 600px;
    }

    .stat-item {
        max-width: 250px;
    }

    .stat-circle {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .stat-icon i {
        font-size: 38px;
    }

    .stat-icon img {
        width: 38px;
        height: 38px;
    }

    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 0.6px;
    }

    .wanted-cases {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
    }

    /* Improve touch targets on mobile */
    button, .card-btn, .submit-tip-btn, .donate-now-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 300px;
    }

    .stat-item {
        max-width: 250px;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 18px;
        border-width: 4px;
    }

    .stat-icon i {
        font-size: 32px;
    }

    .stat-icon img {
        width: 32px;
        height: 32px;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        min-height: 3em;
    }

    .wanted-cases {
        grid-template-columns: 1fr;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
    }

    /* Stack emergency notice elements */
    .emergency-actions {
        flex-direction: column;
        gap: 10px;
    }

    /* Improve readability on small screens */
    .mission-section p, .structure-section p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Add smooth scrolling and focus styles for accessibility */
html {
    scroll-behavior: smooth;
}

button:focus, a:focus, .card-btn:focus {
    outline: 2px solid #54bddb;
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}

/* Print styles */
@media print {
    .header, .footer, .emergency-notice {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: #000 !important;
        padding: 20px 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Tip Form Styles */

/* Tip Form Header */
.tip-form-header {
    background: #fff;
    padding: 30px 0;
    border-bottom: 2px solid #e0e0e0;
}

.form-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.form-logo img {
    height: 80px;
    width: auto;
}

.form-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2e4250;
    margin-bottom: 10px;
}

.form-info p {
    margin: 5px 0;
    color: #6b7280;
    font-size: 1rem;
}

.emergency-warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 10px;
    margin-top: 15px;
}

.emergency-warning p {
    color: #dc2626;
    font-weight: 600;
    margin: 0;
}

/* Tip Form Container */
.tip-form-container {
    background: #f8fafc;
    padding: 40px 0;
    min-height: 100vh;
}

.tip-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Form Sections */
.form-section {
    padding: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.form-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e4250;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #54bddb;
    display: inline-block;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group label::after {
    content: "";
}

.form-group label[for="description"]::after,
.form-group label[for="offenseType"]::after,
.form-group label[for="cityState"]::after,
.form-group label[for="tipPassword"]::after {
    content: " *";
    color: #dc2626;
}

/* Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #54bddb;
    box-shadow: 0 0 0 3px rgba(84, 189, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
}

/* File Upload */
.form-group input[type="file"] {
    padding: 8px 12px;
    cursor: pointer;
}

.file-info {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
    margin-bottom: 0;
}

.password-info {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Submit Section */
.submit-section {
    background: #f9fafb;
}

.form-disclaimer {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.form-disclaimer p {
    color: #0369a1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.submit-btn {
    background: #c13b2d;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.submit-btn:hover {
    background: #a13023;
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .form-logo img {
        height: 60px;
    }
    
    .form-info h2 {
        font-size: 1.5rem;
    }
    
    .tip-form-container {
        padding: 20px 0;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .submit-btn {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .form-header-content {
        gap: 15px;
    }
    
    .form-info h2 {
        font-size: 1.3rem;
    }
    
    .form-info p {
        font-size: 0.9rem;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
    }
}
