:root {
    --bg-color: #0c0c0c;
    --card-bg: #141414;
    --input-bg: #111111;
    --border-color: #1f1f1f;
    --pink: #FF2E63;
    --text-main: #f0f0f0;
    --text-muted: #888888;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s;
}

a:hover {
    color: var(--pink);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #000;
}

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

.logo h2 {
    font-size: 20px;
    letter-spacing: 1px;
    margin: 0;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.navbar nav ul li a {
    font-size: 14px;
    color: var(--text-main);
    position: relative;
}

.navbar nav ul li a.active {
    color: var(--pink);
}

.navbar nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--pink);
    border-radius: 50%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-icons i {
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-icons i:hover {
    color: var(--pink);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--pink);
    color: #fff;
    font-size: 10px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}

.hero h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    color: #fff;
    letter-spacing: 1px;
}

/* Main Contact Section */
.contact-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Info Cards */
.contact-info {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background-color: var(--card-bg);
    padding: 24px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-wrap {
    width: 45px;
    height: 45px;
    background-color: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.info-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-main);
}

/* Right Form */
.contact-form {
    flex: 1.2;
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 8px;
}

.heading-underline {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.line-white {
    width: 10px;
    height: 2px;
    background-color: #fff;
}

.line-pink {
    width: 40px;
    height: 2px;
    background-color: var(--pink);
}

.dot-pink {
    width: 6px;
    height: 6px;
    background-color: var(--pink);
    border-radius: 50%;
    margin-left: 5px;
}

.form-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.form-group input, 
.form-group textarea {
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 2px rgba(255, 46, 99, 0.2);
}

.submit-btn {
    background-color: var(--pink);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 15px;
}

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

.form-message {
    margin-top: 15px;
    font-size: 14px;
    color: #4cd137;
}

/* Map Section */
.map-section {
    padding: 0 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
}
.map-section iframe {
    border-radius: 12px;
    filter: brightness(0.9) contrast(1.1); /* Match aesthetics */
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 70px 5% 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.brand-col p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 25px 0;
}

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

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform 0.3s;
}
.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-main);
    transition: color 0.3s;
}
.footer-col ul li a:hover,
.footer-col ul li a.active {
    color: var(--pink);
}

.hours-list li {
    display: flex;
    align-items: baseline;
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.hours-list li .dots {
    flex-grow: 1;
    border-bottom: 1px dotted var(--text-muted);
    margin: 0 10px;
    opacity: 0.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: var(--text-muted);
}
.footer-bottom .highlight {
    color: var(--pink);
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column-reverse;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .navbar nav {
        display: none;
    }
    .hero h1 {
        font-size: 36px;
    }
}
