/* Contact Page Specific Styles */
/* Color Palette: #4E1F00 (Dark Brown), #74512D (Medium Brown), #FEBA17 (Gold), #F8F4E1 (Cream) */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-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%); }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero .highlight {
    color: #FEBA17;
}

.contact-hero p {
    color: #F8F4E1;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 186, 23, 0.3);
}

.contact-hero-feature i {
    color: #FEBA17;
    font-size: 1.1rem;
}

.contact-hero-feature span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Emergency Contact Section */
.contact-emergency {
    padding: 3rem 0;
    background: #FEBA17;
    text-align: center;
}

.contact-emergency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-emergency-text {
    color: #4E1F00;
}

.contact-emergency-text h3 {
    color: #4E1F00;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-emergency-text p {
    margin: 0;
    font-weight: 600;
}

.contact-emergency-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #4E1F00;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 31, 0, 0.3);
}

.contact-emergency-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 31, 0, 0.4);
    color: white;
    text-decoration: none;
}

.contact-emergency-phone i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Main Contact Section */
.contact-main {
    padding: 6rem 0;
    background: white;
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Information */
.contact-info-section h2 {
    color: #4E1F00;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info-section p {
    color: #74512D;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #F8F4E1;
    border-radius: 12px;
    border-left: 4px solid #FEBA17;
    transition: all 0.3s ease;
}

.contact-method-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(78, 31, 0, 0.1);
}

.contact-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;
}

.contact-method-content h4 {
    color: #4E1F00;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method-details {
    color: #FEBA17;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    display: block;
}

.contact-method-description {
    color: #74512D;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Form Section */
.contact-form-section h3 {
    color: #4E1F00;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-form-section .form-subtitle {
    color: #74512D;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form-card {
    background: #F8F4E1;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #FEBA17;
    box-shadow: 0 10px 30px rgba(78, 31, 0, 0.1);
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4E1F00;
    font-size: 0.95rem;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #FEBA17;
    box-shadow: 0 0 0 3px rgba(254, 186, 23, 0.2);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-submit {
    background: #FEBA17;
    color: #4E1F00;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form-submit:hover {
    background: #74512D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 186, 23, 0.4);
}

/* Additional form styling fixes */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4E1F00;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FEBA17;
    box-shadow: 0 0 0 3px rgba(254, 186, 23, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #74512D;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-label a {
    color: #FEBA17;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Benefits */
.contact-form-benefits {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #FEBA17;
}

.contact-form-benefits h4 {
    color: #4E1F00;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #74512D;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-benefits-list li:last-child {
    margin-bottom: 0;
}

.contact-benefits-list li i {
    color: #FEBA17;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* Office Hours Section */
.contact-hours {
    padding: 4rem 0;
    background: #F8F4E1;
}

.contact-hours-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-hours-info h2 {
    color: #4E1F00;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-hours-info p {
    color: #74512D;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hours-schedule {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #FEBA17;
    box-shadow: 0 10px 30px rgba(78, 31, 0, 0.1);
}

.hours-schedule h4 {
    color: #4E1F00;
    margin-bottom: 1rem;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F8F4E1;
    color: #74512D;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: #4E1F00;
}

.hours-time {
    font-weight: 500;
}

.hours-emergency {
    background: #FEBA17;
    color: #4E1F00;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Location Section */
.contact-location {
    padding: 6rem 0;
    background: white;
}

.contact-location h2 {
    text-align: center;
    color: #4E1F00;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-address-card {
    background: #F8F4E1;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #FEBA17;
}

.contact-address-card h3 {
    color: #4E1F00;
    margin-bottom: 1rem;
}

.contact-address {
    color: #74512D;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-address-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-address-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #74512D;
}

.contact-address-features li i {
    color: #FEBA17;
    width: 16px;
    flex-shrink: 0;
}

.contact-map-placeholder {
    background: linear-gradient(135deg, #74512D, #4E1F00);
    color: white;
    height: 350px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FEBA17;
}

.contact-map-placeholder h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-map-placeholder p {
    color: #F8F4E1;
    margin: 0;
}

/* ========================================= */
/* CONTACT OPTIONS SECTION                  */
/* ========================================= */
.contact-options {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F4E1 0%, #ffffff 100%);
    position: relative;
}

.contact-options::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="1" fill="%23FEBA17" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

.contact-options .container {
    position: relative;
    z-index: 2;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(78, 31, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FEBA17 0%, #74512D 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-method:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 80px rgba(78, 31, 0, 0.15);
    border-color: rgba(254, 186, 23, 0.4);
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.method-icon {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(254, 186, 23, 0.3);
    transition: all 0.4s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(254, 186, 23, 0.4);
}

.contact-method h3 {
    color: #4E1F00;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.contact-method p {
    color: #74512D;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.method-link {
    display: inline-block;
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(254, 186, 23, 0.3);
    position: relative;
    overflow: hidden;
}

.method-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.method-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(254, 186, 23, 0.4);
    color: white;
    text-decoration: none;
}

.method-link:hover::before {
    left: 100%;
}

/* Chat button specific styling */
.chat-button {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    border: 2px solid #FEBA17;
}

.chat-button:hover {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    border-color: #4E1F00;
}

/* ========================================= */
/* MAIN CONTACT SECTION                     */
/* ========================================= */
.main-contact {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #F8F4E1 0%, #ffffff 100%);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(78, 31, 0, 0.1);
    border: 2px solid rgba(254, 186, 23, 0.2);
}

.contact-form-section h2 {
    color: #4E1F00;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-form-section > p {
    color: #74512D;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-disclaimer {
    background: rgba(254, 186, 23, 0.1);
    color: #4E1F00;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #FEBA17;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-disclaimer i {
    color: #FEBA17;
    font-size: 1.1rem;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(78, 31, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FEBA17 0%, #74512D 100%);
    border-radius: 2px 2px 0 0;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(78, 31, 0, 0.15);
    border-color: rgba(254, 186, 23, 0.3);
}

.info-card h3 {
    color: #4E1F00;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Benefit List */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F8F4E1;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    background: rgba(254, 186, 23, 0.1);
}

.benefit-item i {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: #4E1F00;
    font-weight: 500;
    font-size: 1rem;
}

/* Office Details */
.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #F8F4E1;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(8px);
    background: rgba(254, 186, 23, 0.1);
}

.detail-item i {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.detail-item div strong {
    color: #4E1F00;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.detail-item div p {
    color: #74512D;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Expectation List */
.expectation-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expectation-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #F8F4E1;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.expectation-item:hover {
    transform: translateX(10px);
    background: rgba(254, 186, 23, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(254, 186, 23, 0.3);
}

.step-content h4 {
    color: #4E1F00;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    color: #74512D;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================= */
/* EMERGENCY CONTACT SECTION                */
/* ========================================= */
.main-content .emergency-contact,
section.emergency-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    position: relative;
    overflow: hidden;
}

.main-content .emergency-contact::before,
section.emergency-contact::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: emergencyShine 4s ease-in-out infinite;
}

@keyframes emergencyShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.emergency-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.emergency-icon {
    background: rgba(254, 186, 23, 0.2);
    color: #FEBA17;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: emergencyPulse 2s infinite;
    border: 3px solid rgba(254, 186, 23, 0.5);
}

@keyframes emergencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.emergency-text h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.emergency-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.btn-emergency {
    background: #FEBA17;
    color: #4E1F00;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(254, 186, 23, 0.4);
}

.btn-emergency:hover {
    background: white;
    color: #4E1F00;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.btn-emergency i {
    animation: emergencyPhonePulse 1.5s infinite;
}

@keyframes emergencyPhonePulse {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* ========================================= */
/* MAP SECTION                              */
/* ========================================= */
.map-section {
    padding: 6rem 0;
    background: white;
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.map-section .section-header h2 {
    color: #4E1F00;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.map-section .section-header p {
    color: #74512D;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    height: 450px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(78, 31, 0, 0.2);
}

.map-placeholder::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: mapShine 6s ease-in-out infinite;
}

@keyframes mapShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.map-content {
    position: relative;
    z-index: 2;
}

.map-content i {
    color: #FEBA17;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: mapBounce 2s ease-in-out infinite;
}

@keyframes mapBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.map-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.map-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

/* ========================================= */
/* MODAL STYLES                             */
/* ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    padding: 2rem 2.5rem 1.5rem;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header i {
    font-size: 1.8rem;
    color: white;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem 2.5rem;
    color: #4E1F00;
}

.modal-body p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-body strong {
    color: #FEBA17;
    font-weight: 700;
}

.modal-footer {
    padding: 1.5rem 2.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(254, 186, 23, 0.2);
}

.modal-footer .btn {
    min-width: 120px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================= */
/* FORM VALIDATION STYLES                  */
/* ========================================= */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message i {
    font-size: 0.8rem;
}

.success-message {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-message i {
    font-size: 0.8rem;
}

/* Loading state for submit button */
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
}

@keyframes buttonSpin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========================================= */
/* RESPONSIVE MODAL                         */
/* ========================================= */
@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-width: 100%;
        margin: 0;
    }
    
    .modal-header {
        padding: 1.5rem 2rem 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem 2rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .modal-footer {
        padding: 1rem 2rem 1.5rem;
    }
    
    .modal-close {
        top: 0.75rem;
        right: 1rem;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 1.25rem 1.5rem 0.75rem;
    }
    
    .modal-body {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-footer {
        padding: 0.75rem 1.5rem 1.25rem;
    }
    
    .modal-footer .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}
