/* Custom CSS for Female Massage Delhi Website */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    --soft-pink: #fce4ec;
    --light-beige: #f5f5dc;
    --gold-accent: #ffd700;
    --dark-pink: #e91e63;
    --light-gray: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --text-dark: #333;
    --text-light: #666;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--soft-pink) 100%);
    min-height: 100vh;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

.bg-beige { background-color: var(--light-beige); }
.bg-soft-pink { background-color: var(--soft-pink); }

.text-gold { color: var(--gold-accent); }

.btn-gold {
    background: linear-gradient(45deg, var(--gold-accent), #ffed4e);
    color: #000;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: inline-block;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #e6c200, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-section {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(255, 215, 0, 0.6)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
    color: white;
    padding: 60px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 15px 0;
}

/* Premium Touches */
.premium-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: var(--border-radius);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--gold-accent), var(--dark-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 50;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

header nav a {
    transition: color 0.3s ease;
}

header nav a:hover {
    color: var(--dark-pink);
}

/* Mobile Menu */
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: white;
    padding: 15px 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon { background: #25d366; }
.telegram-icon { background: #0088cc; }

/* Breadcrumbs */
.breadcrumb {
    background-color: var(--light-beige);
    padding: 10px 0;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li + li:before {
    content: ">";
    padding: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
        min-height: 350px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .floating-icons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon img {
        width: 25px;
        height: 25px;
    }
    
    header nav {
        padding: 12px 15px;
    }
    
    header nav ul {
        gap: 15px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .btn-gold,
    .btn-gold:first-of-type {
        padding: 10px 16px;
        font-size: 0.95rem;
        width: auto;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 30px 12px;
        min-height: 300px;
    }
    
    .hero-section h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .hero-section p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .service-grid {
        gap: 10px;
        margin: 20px 0;
    }
    
    .premium-card {
        padding: 15px;
    }
    
    .testimonial {
        padding: 15px;
        margin: 10px 0;
    }
    
    .floating-icons {
        bottom: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    header nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    
    header nav ul {
        gap: 10px;
    }
    
    .menu-toggle {
        align-self: flex-end;
    }
    
    .btn-gold {
        padding: 8px 12px;
        font-size: 0.85rem;
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .space-x-4 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    section {
        padding: 15px 0 !important;
    }
}
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .btn-gold {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* GSAP Animations */
.hero-title {
    opacity: 0;
    transform: translateY(50px);
}

.service-card {
    opacity: 0;
    transform: translateY(50px);
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    background: #25d366;
}

.telegram-icon {
    background: #0088cc;
}

/* Breadcrumbs */
.breadcrumb {
    background-color: var(--light-beige);
    padding: 10px 0;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li + li:before {
    content: ">";
    padding: 0 10px;
}