/* ============================================
   CONTACT PAGE - contact.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --primary-red: #E53E3E;
    --dark-bg: #0a0a0a;
    --light-bg: #f5f5f5;
    --dark-text: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #666666;
    --border-color: #e0e0e0;
    --secondary-bg: #f9f9f9;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
}

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

/* Navbar */




.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cart-btn {
    position: relative;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.cart-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--dark-bg);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Contact Page */


/* Hero Section */
.contact-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--dark-bg);
    color: white;
   
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.hero-glow-1 {
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(229, 62, 62, 0.1);
}

.hero-glow-2 {
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: rgba(229, 62, 62, 0.05);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 14px;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb .separator {
    color: #555;
}

.breadcrumb span {
    color: white;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
}

.contact-badge i {
    color: var(--primary-red);
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-red), #f56565);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.method-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 24px;
    transition: var(--transition);
}

.method-card:hover {
    border-color: var(--primary-red);
    background: white;
    transform: translateY(-4px);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-red);
    transition: var(--transition);
}

.method-card:hover .method-icon {
    background: rgba(229, 62, 62, 0.2);
}

.method-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.method-desc {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.method-detail {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.method-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.method-action:hover {
    gap: 12px;
}

/* Contact Main Section */
.contact-main {
    background: white;
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-header {
    margin-bottom: 40px;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
}

.form-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-top: 12px;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.submit-btn {
    background: var(--primary-red);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(229, 62, 62, 0.25);
}

.submit-btn:hover {
    background: #c53030;
    box-shadow: 0 12px 32px rgba(229, 62, 62, 0.4);
}

.submit-btn:active {
    transform: translateY(2px);
}

/* Success Message */
.success-message {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 40px;
    color: var(--primary-red);
}

.success-message h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--gray-text);
    font-size: 16px;
    margin-bottom: 24px;
}

.reset-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.reset-form-btn:hover {
    gap: 12px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.live-chat-card {
    background: var(--dark-bg);
    color: white;
    padding: 32px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.live-chat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(229, 62, 62, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.chat-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.live-chat-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.live-chat-card p {
    color: #ccc;
    margin-bottom: 24px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.chat-btn {
    width: 100%;
    background: white;
    color: var(--dark-bg);
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.chat-btn:hover {
    background: var(--primary-red);
    color: white;
}

.faq-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 24px;
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-q {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.faq-a {
    font-size: 13px;
    color: var(--gray-text);
}

.view-all-faq {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
    transition: var(--transition);
}

.view-all-faq:hover {
    gap: 12px;
}

.social-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 24px;
}

.social-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.social-card p {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 20px;
}

.social-link:hover {
    color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, white, var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-red);
}

.newsletter-signup {
    display: flex;
    gap: 8px;
}

.newsletter-signup input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.newsletter-signup input::placeholder {
    color: #999;
}

.newsletter-signup button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-signup button:hover {
    background: #c53030;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.footer-socials a:hover {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-content {
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .methods-grid {
        gap: 16px;
    }

    .method-card {
        padding: 20px;
    }

    .contact-main {
        padding: 40px 0;
    }

    .form-header h2 {
        font-size: 24px;
    }
}

/* ===== NAVBAR SCROLL STATE — matches home.css ===== */
/* contact.css loads after home.css so we need to re-declare
   the scrolled styles to prevent them being overridden */

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-shop {
    color: #1a1a1a;
}

.navbar.scrolled .nav-link {
    color: #1a1a1a;
}

.navbar.scrolled .nav-link.active {
    color: #E53E3E;
}

.navbar.scrolled .nav-icon {
    color: #1a1a1a;
}

.navbar.scrolled .nav-cart {
    color: #1a1a1a;
}

/* Mobile hamburger in scrolled state */
.navbar.scrolled .nav-hamburger {
    color: #1a1a1a;
}