/* Global Styles */
:root {
    --primary-color: #ffcc70;
    --text-color: #fff;
    --background-color: #000;
    --form-bg: rgba(17, 17, 17, 0.95);
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.contact-hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.98));
    margin-top: 100px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Assets/Contact/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: zoomOut 20s linear infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

/* Page Title Styles */
.page-title {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
    color: #fff;
}

.title-decoration {
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    margin: 1.5rem auto 1rem;
    position: relative;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    top: -5px;
}

.title-decoration::before {
    left: 15px;
}

.title-decoration::after {
    right: 15px;
}

.subtitle {
    color: #ffcc70;
    margin: 0.5rem 0 0;
    font-size: 1.1rem;
}

/* Contact Container */
.contact-container {
    min-height: calc(80vh - 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 2rem;
}

/* Contact Content */
.contact-content {
    max-width: 1600px;
    width: 90%;
    background: rgba(17, 17, 17, 0.95);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 112, 0.1);
}

/* Contact Info Section */
.contact-info {
    padding: 2.5rem;
}

.info-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ffcc70;
    margin: 0 0 1rem;
}

.info-section p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item i {
    color: #ffcc70;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.detail-item h3 {
    color: #fff;
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    color: #ddd;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffcc70;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .contact-hero {
        height: 30vh;
        margin-top: 80px;
    }

    .contact-container {
        padding: 1rem;
        min-height: calc(80vh - 60px);
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-section h2 {
        font-size: 1.8rem;
    }

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

    .subtitle {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-hero {
        height: 25vh;
        margin-top: 60px;
    }

    .contact-info {
        padding: 1rem;
    }

    .info-section h2 {
        font-size: 1.5rem;
    }

    .page-title h1 {
        font-size: 1.8rem;
    }
}
