/* Reach Out Page Styles */
.reach-hero {
    height: 70vh;
    background: linear-gradient(135deg, var(--theme-color) 0%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.reach-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/contact-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Cards Section */
.contact-cards-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(214, 34, 35, 0.15);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.5rem;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.card-btn {
    background: var(--theme-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.card-btn:hover {
    background: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 34, 35, 0.3);
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
    position: relative;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    background: white;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.location-title h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.location-type {
    background: var(--theme-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.address i {
    color: var(--theme-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.address div p {
    color: #666;
    margin-bottom: 3px;
    line-height: 1.4;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--theme-color);
    width: 18px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--theme-color);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 8px 10px;
    border-radius: 50%;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder span {
    font-size: 1rem;
    opacity: 0.8;
}

/* Movement Section */
.movement-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--theme-color) 0%, #8B4513 100%);
    color: white;
    text-align: center;
}

.movement-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.movement-content > p {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    opacity: 0.95;
}

.movement-description p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.form-container input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.95);
    color: #333;
}

.form-container input::placeholder {
    color: #999;
}

.subscribe-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #28a745;
    border-color: #28a745;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: white;
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    font-size: 3rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 90%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(214, 34, 35, 0.1);
}

.submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Horizontal Banner Section */
.horizontal-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--theme-color) 0%, #8B4513 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.horizontal-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/banner-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.banner-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.banner-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.banner-btn.primary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.banner-btn.primary:hover {
    background: white;
    color: var(--theme-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.banner-btn.secondary {
    background: white;
    color: var(--theme-color);
    border: 2px solid white;
}

.banner-btn.secondary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Enhanced Location Cards */
.location-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
    position: relative;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    background: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--theme-color);
    width: 18px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--theme-color);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 8px 10px;
    border-radius: 50%;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Subscribe Button Styling */
.subscribe-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #28a745;
    border-color: #28a745;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

/* Send Message Button Styling */
.submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

/* Map Hover Tooltip */
.map-tooltip {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid #e9ecef;
    z-index: 1000;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.map-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.map-tooltip h4 {
    color: var(--theme-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.map-tooltip .address {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.4;
}

.map-tooltip .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-tooltip .contact-item {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2,
    .movement-content h2,
    .form-header h2 {
        font-size: 2rem;
    }
    
    .movement-content h2 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .subscribe-btn {
        justify-content: center;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .contact-card {
        padding: 40px 30px;
    }
    
    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .location-card {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .banner-btn {
        justify-content: center;
    }
    
    .banner-text h3 {
        font-size: 1.8rem;
    }
    
    .form-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .subscribe-btn {
        justify-content: center;
    }
}


