/* Contact page specific styles */

/* Hero Section */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(255, 107, 53, 0.4), rgba(26, 26, 26, 0.8)), 
                url('assets-adrenaland/tree_camp/27.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #ffffff;
}

.contact-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.contact-hero .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
    color: #ffffff;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.95));  
    min-height: 100vh;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.contact-method.whatsapp .method-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.contact-method.instagram .method-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.contact-method.email .method-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.method-content {
    flex: 1;
}

.method-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.method-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-info {
    display: block;
    color: #ff8c42;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    pointer-events: none;
}

.contact-method.whatsapp .contact-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.contact-method.instagram .contact-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.contact-method.email .contact-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.contact-method:hover .contact-btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact-form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.contact-form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-form-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c42;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff8c42, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card.emergency {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.1);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff8c42;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.info-item i {
    color: #ff8c42;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.info-item span {
    color: rgba(255, 255, 255, 0.8);
}

.location-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.location-btn,
.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 15px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.emergency-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    font-size: 1.1rem;
    padding: 12px 20px;
}

.location-btn:hover,
.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.emergency-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Social Links (Contact Page Only) */
.contact-info-sidebar .social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.contact-info-sidebar .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-info-sidebar .social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #833ab4);
}

.contact-info-sidebar .social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.contact-info-sidebar .social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.contact-info-sidebar .social-link.tripadvisor {
    background: linear-gradient(135deg, #00af87, #008577);
}

.contact-info-sidebar .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 107, 53, 0.3), rgba(26, 26, 26, 0.7)), 
                url('assets-adrenaland/canyoning/92.jpg') center/cover fixed;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff8c42;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-info-sidebar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-hero {
        background-attachment: scroll;
        height: 50vh;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.1rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-sidebar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-sidebar .social-links {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-section {
        background-attachment: scroll;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-methods h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .info-card {
        padding: 1rem;
    }
    .phone-input {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .phone-input input:first-child {
        flex: 0 0 auto;
        width: 80px;
    }
    
    .phone-input input:last-child {
        flex: 1;
    }
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.contact-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #2c3e50;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%;
    transition: transform 0.3s ease;
}

.contact-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.contact-modal .success-icon {
    font-size: 4rem;
    color: #4ade80;
    margin-bottom: 1rem;
}

.contact-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-modal p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-modal .modal-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-modal .modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Phone Input */
.phone-input {
    display: flex;
    gap: 0.6rem;
}

.phone-input input:first-child {
    flex: 0 0 auto;
    width: 80px;
    min-width: 80px;
}

.phone-input input:last-child {
    flex: 1;
    min-width: 0;
}