/* contact.css - Clean, organized styles for Contact page */
:root {
    --primary-color: #fea70a;
    --secondary-color: #d18c00;
    --dark-color: #000000;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --font-main: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

body.menu-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

.accent-text {
    color: var(--primary-color);
    font-family: var(--font-accent);
    font-style: italic;
}

/* Navigation - Consistent with other pages */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: var(--dark-color);
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 17px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--light-color);
    transition: all 0.3s ease;
    transform-origin: left center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(-3px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(3px);
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('assets/contactback.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.4)
    );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light-color);
    max-width: 800px;
    padding: 0 20px;
}

.contact-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards Section */
.contact-cards {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(254, 167, 10, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 40px;
    height: 40px;
}

.card-content {
    text-align: center;
}

.card-title {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: var(--font-main);
}

.card-text {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-description {
    font-size: 1rem;
    color: var(--dark-color);
    opacity: 0.9;
    line-height: 1.6;
}

/* Social Media Section */
.social-section {
    padding: 100px 0;
    background-color: var(--light-color);
    text-align: center;
}

.social-title {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.social-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-link img {
    width: 35px;
    height: 35px;
}

/* Footer - Consistent with other pages */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #999;
    max-width: 300px;
}

.footer-heading {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: var(--font-main);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
    font-size: 1.05rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #999;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-links img {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .contact-title {
        font-size: 3.5rem;
    }
    
    .social-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-card {
        padding: 35px 25px;
    }
    
    .social-icons {
        gap: 25px;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
    }
    
    .social-link img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--dark-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 120px 40px 40px;
        gap: 25px;
        transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1001;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 10px 0;
        width: 100%;
        display: block;
    }
    
    .contact-hero {
        height: 70vh;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        padding: 80px 0;
    }
    
    .social-section {
        padding: 80px 0;
    }
    
    .social-title {
        font-size: 2.5rem;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .contact-hero {
        height: 60vh;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .card-icon img {
        width: 35px;
        height: 35px;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .card-text {
        font-size: 1.1rem;
    }
    
    .social-title {
        font-size: 2.2rem;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
    }
    
    .social-link img {
        width: 25px;
        height: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
       .footer-links {
        display: inline-block;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
}