/* Contact Page Styles */

html {
    scroll-behavior: smooth;
}

/* Theme Hero Section - Black Background */
.theme-hero {
    background: #000000;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
    padding-top: 80px;
    position: relative;
}

.hero-content-wrapper {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 900px;
    margin: 0 auto;
}

.theme-hero .hero-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.theme-hero .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    background: transparent;
    border: none;
    color: #EFB11D;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
}

.btn-hero-primary::after,
.btn-hero-secondary::after {
    content: "→";
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
    color: white;
}

.btn-hero-primary:hover::after,
.btn-hero-secondary:hover::after {
    transform: translateX(5px);
}

/* Breadcrumb Navigation */
.breadcrumb-wrapper {
    background-color: #f9f9f9;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item::after {
    content: "→";
    margin: 0 0.75rem;
    color: #999;
}

.breadcrumb-item:last-child::after {
    display: none;
}

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

.breadcrumb-item a:hover {
    color: #EFB11D;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Contact Information */
.contact-info-content {
    padding-right: 2rem;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #EFB11D;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: #000;
}

.contact-details h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #EFB11D;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #d49d0a;
}

.contact-hours {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* Info Card */
.info-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.info-card h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EFB11D;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
}

.services-list i {
    color: #4CAF50;
}

/* Transport Options */
.transport-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.transport-item:last-child {
    border-bottom: none;
}

.transport-item i {
    font-size: 1.2rem;
    color: #EFB11D;
    min-width: 25px;
    text-align: center;
}

.transport-item span {
    color: #555;
    font-size: 0.95rem;
}

/* Right Column - Contact Form */
.right-column {
    position: sticky;
    top: 100px;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.form-subtitle {
    color: #777;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Form Styles */
.contact-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EFB11D;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #EFB11D;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d49d0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 177, 29, 0.3);
}

/* Urgent Notice */
.urgent-notice {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.urgent-text {
    color: #777;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.urgent-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #EFB11D;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.urgent-phone:hover {
    color: #d49d0a;
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h3 i {
    color: #EFB11D;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-content {
        padding-right: 0;
    }
    
    .right-column {
        position: static;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .theme-hero {
        height: auto;
        min-height: 500px;
        padding: 100px 20px 60px;
    }

    .theme-hero .hero-title {
        font-size: 2rem;
    }

    .theme-hero .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-cards {
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .theme-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}