:root {
    --gold: #D4A853;
    --gold-dark: #B8860B;
    --gold-light: #F5E6C8;
    --maroon: #6B1D3A;
    --cream: #FFF8F0;
    --dark: #1A1A1A;
    --white: #FFFFFF;
    --green-wa: #25D366;
    --font-bn: 'Noto Sans Bengali', sans-serif;
    --font-en: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-bn);
    background-color: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maroon);
}

.contact-info a {
    font-weight: 700;
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1560750588-73207b1ef5b8?auto=format&fit=crop&q=80&w=1600') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: var(--gold);
    color: var(--maroon);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary { background: var(--gold); color: var(--maroon); }
.btn-whatsapp { background: var(--green-wa); color: var(--white); }
.btn-large { width: 100%; text-align: center; margin-top: 15px; }

/* Services */
.services { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 30px; }
.section-title h2 { font-size: 1.8rem; color: var(--maroon); }
.divider { width: 50px; height: 3px; background: var(--gold); margin: 5px auto; }

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card .icon { font-size: 2.5rem; margin-bottom: 15px; }

/* Offer Section - Mobile First */
.offer-section { padding: 40px 0; background: var(--gold-light); }

.offer-wrapper {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.offer-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.offer-content { text-align: center; }
.offer-badge { color: var(--gold-dark); font-weight: 700; font-size: 0.8rem; margin-bottom: 5px; display: block; }
.offer-content h2 { font-size: 1.5rem; color: var(--maroon); margin-bottom: 5px; }
.subtitle { font-style: italic; color: #666; font-size: 0.9rem; margin-bottom: 15px; }

.offer-details { background: #fdfaf3; padding: 15px; border-radius: 10px; text-align: left; margin-bottom: 15px; }
.main-service { font-size: 1rem; margin-bottom: 10px; display: block; }
.bonuses { list-style: none; font-size: 0.9rem; }
.bonuses li { margin-bottom: 8px; }

.guarantee { background: #e7f3ef; padding: 12px; border-radius: 5px; font-size: 0.85rem; margin-bottom: 15px; }
.scarcity { color: #d9534f; font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; }

/* Bridal Variations */
.bridal-bg {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/bridal.jpg') center/cover;
    border: 2px solid var(--gold);
}
.text-white { color: var(--white) !important; }
.gold-text { color: var(--gold) !important; }
.gold-border { border: 1px solid var(--gold); }
.dark-card { background: rgba(255, 255, 255, 0.05) !important; border: 1px solid rgba(212, 168, 83, 0.2); }
.gold-btn { background: linear-gradient(45deg, var(--gold-dark), var(--gold)); border: none; }

.dark-guarantee {
    background: rgba(212, 168, 83, 0.1) !important;
    color: var(--gold-light);
    border: 1px solid var(--gold-dark);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--green-wa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: pulse 2s infinite;
}
.floating-wa img { width: 30px; height: 30px; }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    h1 { font-size: 2.5rem; }
}

@media (min-width: 992px) {
    .logo { font-size: 1.8rem; }
    .contact-info a { font-size: 1.1rem; }
    .offer-wrapper { flex-direction: row; padding: 40px; gap: 50px; align-items: center; }
    .offer-wrapper.reverse { flex-direction: row-reverse; }
    .offer-content { text-align: left; flex: 1; }
    .offer-image { flex: 1; }
    .offer-content h2 { font-size: 2rem; }
    .btn-large { width: auto; }
}

footer { background: var(--dark); color: var(--white); padding: 30px 0; text-align: center; font-size: 0.9rem; }
