@import 'common.css';

/* Page Header */
.page-header {
    position: relative;
    height: 40vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/contact-header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    animation: fadeIn 1s ease-in;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xxl) 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
}

/* Contact Info */
.contact-info {
    background-color: var(--gray-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
}

.info-card {
    margin-bottom: var(--spacing-lg);
}

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

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-links a {
    color: var(--gray);
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--gray-light);
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background-color: #fff;
}

.faq-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.faq-item {
    background-color: var(--gray-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    transition: var(--transition-base);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        height: 30vh;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }

    .map-container {
        height: 300px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.hero-header {
    position: relative;
    height: 60vh;
    background: url('../images/hunza.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    overflow: hidden;
}
.hero-header .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}
.hero-header .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-social {
    padding: 5rem 0 3rem 0;
    background: #fff;
    text-align: center;
}
.contact-social-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.contact-social-card {
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 180px;
}
.contact-social-card a {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.contact-social-card i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    transition: color 0.3s, transform 0.3s;
}
.contact-social-card.whatsapp i {
    color: #25D366;
}
.contact-social-card.instagram i {
    color: #E1306C;
}
.contact-social-card.facebook i {
    color: #1877F3;
}
.contact-social-card span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}
.contact-social-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
}
.contact-social-card:hover i {
    transform: scale(1.15);
}
.contact-social-note {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    font-style: italic;
}
@media (max-width: 900px) {
    .contact-social-container {
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .hero-header {
        height: 35vh;
        margin-top: 60px;
    }
    .hero-header h1 {
        font-size: 2rem;
    }
    .contact-social-container {
        flex-direction: column;
        gap: 1.2rem;
    }
    .contact-social-card {
        min-width: 0;
        width: 100%;
    }
}

.nav-links a.active, .nav-links a.active:visited, .nav-links a.active:focus {
    color: var(--secondary-color) !important;
}

a:hover, .footer-section a:hover {
    color: var(--secondary-color) !important;
}


header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 0 1rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    margin: 0.5rem 0;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.contact-intro p {
    color: var(--secondary-color);
} 