/* contact.css */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00FF66;
    --secondary: #000000;
    --dark-bg: #111111;
    --card-bg: #1A1A1A;
    --border-color: #333333;
    --light-text: #FFFFFF;
    --gray-text: #CCCCCC;
    --input-bg: #222222;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary);
    color: var(--light-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ========== NAVBAR ========== */
.navbar {
    font-family: 'Inter';
    background: rgba(0, 0, 0, 0.98);
    color: var(--light-text);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a.active:after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 0 0 auto;
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
}

.cart-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    /* New CSS to align it properly */
    order: 3;
    margin-left: 0;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    padding: 2rem;
    z-index: 999;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.mobile-links a:hover {
    color: var(--primary);
}

.mobile-links a.active {
    color: var(--primary);
}

.mobile-links a:last-child {
    border-bottom: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    /* 🔥 FIX FOR MOBILE LAYOUT */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    /* Logo left side */
    .logo-container {
        order: 1;
        flex: 0 0 auto;
    }
    
    /* Menu button right side - next to cart */
    .mobile-menu-btn {
        display: flex;
        order: 3;
        margin-left: 0;
    }
    
    /* Cart icon right side - before menu button */
    .nav-right {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }
    
    /* Hide cart text on mobile */
    .cart-text {
        display: none;
    }
    
    /* Make sure cart and menu are aligned properly */
    .nav-right, 
    .mobile-menu-btn {
        display: flex;
        align-items: center;
    }
    
    /* Space between cart and menu icon */
    .nav-container {
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 10px;
        gap: 10px;
    }
    
    .mobile-menu {
        padding: 1.5rem;
    }
    
    .mobile-links a {
        font-size: 1.1rem;
        padding: 0.7rem 0.9rem;
    }
    
    /* Adjust spacing for smaller screens */
    .nav-right {
        margin-right: 10px;
    }
    
    .mobile-menu-btn {
        margin-left: 0;
    }
}

/* 🔥 EXTRA FIX: Ensure icons are properly aligned */
@media (max-width: 900px) {
    .nav-container {
        display: flex;
        align-items: center;
    }
    
    .logo-container {
        margin-right: auto;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        margin-right: 10px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Contact Hero */
.contact-hero {
    /* background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80'); */
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 20px;
}

.hero-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Main */
.contact-main {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form-container h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.contact-info h2 span,
.contact-form-container h2 span {
    color: var(--primary);
}

.contact-desc,
.form-desc {
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.info-card p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-note {
    color: var(--primary);
    font-size: 0.85rem;
    font-style: italic;
}

/* Social Contact */
.social-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 3rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--gray-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 102, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300FF66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-btn:hover {
    background: #00cc55;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 102, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--secondary);
}

.section-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.section-title span {
    color: var(--primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--light-text);
    font-weight: 500;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 900px !important ;
}

.faq-answer p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
}

.map-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.map-info p {
    color: var(--gray-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.map-info p i {
    color: var(--primary);
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: var(--secondary);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.direction-btn:hover {
    background: #00cc55;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 102, 0.3);
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.footer-section p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer .social-icons a {
    width: 40px;
    height: 40px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--light-text);
}

.newsletter-form button {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    width: 45px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #00cc55;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.modal-content p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-close {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #00cc55;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-card,
    .faq-question,
    .map-info {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}






/* footer  */


/* ========== FOOTER ========== */
footer {
    background: var(--dark-bg);
    padding: 3rem 20px 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.slogan-text {
    font-family: 'Antonio', sans-serif;
    font-size: 1.5rem;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.footer-links a:hover:after {
    width: 100%;
}

.footer-right {
    flex: 0 0 auto;
}

.footer-right-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* ========== FOOTER RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
        order: 3;
        width: 100%;
    }

    .footer-left {
        order: 1;
        flex-direction: column;
        gap: 15px;
    }

    .footer-right {
        order: 2;
    }

    .footer-logo-img,
    .footer-right-img {
        height: 70px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    footer {
        padding: 2rem 20px 1.5rem;
    }

    .footer-logo-img,
    .footer-right-img {
        height: 60px;
    }
}







/* Logo Container with Two Images */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between two logos */
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.text-logo {
    height: 35px; /* Text logo slightly smaller */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes white logo visible on dark background */
}









/* ========== FOOTER SOCIAL LINKS ========== */
.footer-social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 1.5rem 0;
    order: 4; /* Mobile me neeche aane ke liye */
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--primary);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 102, 0.3);
    border-color: var(--primary);
}

/* Mobile Responsive ke liye adjustments */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social-links {
        order: 3; /* Links ke baad social links */
        margin: 0.5rem 0 1.5rem 0;
    }
    
    .footer-left {
        order: 1;
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        order: 2;
        width: 100%;
    }
    
    .footer-right {
        order: 5;
    }
}

@media (max-width: 480px) {
    .footer-social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}



