/* styles.css */
/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #FF2E93;
    --hot-pink: #FF006E;
    --neon-pink: #FF00AA;
    --soft-pink: #FFC2E2;
    --cream: #FFF5F9;
    --white: #FFFFFF;
    --black: #222222;
    --gray: #555555;
    --light-gray: #F8F8F8;
    --shadow: 0 8px 20px rgba(255, 0, 110, 0.15);
    --rounded: 12px;
    --rounded-full: 50px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

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

section {
    padding: 60px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--rounded-full);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 8px;
    text-align: center;
}

.btn-primary {
    background-color: var(--hot-pink);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 0, 110, 0.25);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--hot-pink);
    border: 2px solid var(--hot-pink);
}

.btn-secondary:hover {
    background-color: var(--soft-pink);
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--hot-pink);
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.highlight {
    color: var(--hot-pink);
    font-weight: 700;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 0, 110, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--hot-pink);
    line-height: 1;
}

.logo .hindi {
    font-size: 1.2rem;
    color: var(--black);
    margin-top: 4px;
}

.rating-badge {
    background-color: var(--hot-pink);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.rating-badge i {
    color: #FFD700;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--hot-pink);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--hot-pink);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.9) 0%, rgba(255, 46, 147, 0.9) 100%), url('https://images.unsplash.com/photo-1567401893414-76b7b1e5a0a5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

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

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 180px;
}

/* About Section */
.about {
    background-color: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.about-text h3 span {
    color: var(--hot-pink);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    background-color: var(--soft-pink);
    color: var(--hot-pink);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--black);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-img {
    border-radius: var(--rounded);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img:nth-child(1) {
    grid-column: 1 / span 2;
}

.category-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--hot-pink);
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--rounded);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--soft-pink);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 110, 0.15);
}

.category-card.highlighted {
    border: 2px solid var(--hot-pink);
    position: relative;
}

.category-card.highlighted::before {
    content: "NEW";
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--hot-pink);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--black);
}

.category-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Trust Section */
.trust {
    background-color: var(--cream);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.trust-badge {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--rounded);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-icon {
    background-color: var(--soft-pink);
    color: var(--hot-pink);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.trust-badge h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
}

.trust-badge p {
    color: var(--gray);
    font-style: italic;
}

/* Location Section */
.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-container {
    border-radius: var(--rounded);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    padding: 20px 0;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    background-color: var(--soft-pink);
    color: var(--hot-pink);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--black);
}

.info-text p {
    color: var(--gray);
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.payment-method {
    background-color: var(--light-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Street View Section */
.street-view {
    background-color: var(--cream);
}

.street-view-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.street-view-container h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.street-view-container p {
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.street-view-embed {
    border-radius: var(--rounded);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    margin-bottom: 30px;
}

.street-view-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    color: var(--hot-pink);
    margin-bottom: 10px;
}

.footer-logo p {
    color: #CCCCCC;
    margin-bottom: 20px;
}

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

.social-icon {
    background-color: #333333;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--hot-pink);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--hot-pink);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #999999;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-content,
    .location-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 70px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}