/* Variables */
:root {
    --primary-color: #E91E63;
    --primary-hover: #D81B60;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #FDF2F5;
    --bg-white: #FFFFFF;
    --border-color: #EAEAEA;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(233, 30, 99, 0.15);
    --transition: all 0.3s ease;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 600;
}

span {
    color: var(--primary-color);
}

.section-padding {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
}

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

.btn-call {
    background: linear-gradient(135deg, #1A2A40 0%, #2A4365 100%);
    color: white;
    border: none;
}

.btn-call:hover {
    box-shadow: 0 5px 15px rgba(26, 42, 64, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.logo-text h2 {
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 3rem 5% 5rem;
    background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    z-index: 1;
    padding-right: 2rem;
}

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

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.services-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.s-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.s-icon i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.s-icon:hover i {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(233,30,99,0.2);
}

.s-icon span {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Packages Section */
.packages {
    background-color: var(--bg-light);
}

.package-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 320px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.features {
    flex: 1;
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.card .btn {
    width: 100%;
}

/* Why Choose Us */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.f-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.feature-item:hover .f-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(233,30,99,0.15);
}

.feature-item p {
    font-weight: 600;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.hidden-gallery-item {
    display: none !important;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stars {
    color: #FFC107;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #C2185B 100%);
    color: white;
    padding: 4rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2, .cta-content p {
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #E0E0E0;
    padding: 5rem 5% 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.brand-col .logo {
    margin-bottom: 1rem;
}

.brand-col .logo i, .brand-col .logo-text h2 {
    color: white;
}

.brand-desc {
    font-size: 0.9rem;
    color: #AAAAAA;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: #AAAAAA;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-col ul li {
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #AAAAAA;
    align-items: flex-start;
}

.contact-col i {
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    font-size: 0.85rem;
    color: #AAAAAA;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Budget Planner */
.budget-planner {
    background-color: var(--bg-light);
}

.planner-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.planner-header {
    text-align: center;
    margin-bottom: 3rem;
}

.planner-badge {
    color: #F5B041;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.planner-header h2 {
    font-size: 2.2rem;
    color: #1a2a40;
    margin-bottom: 0.8rem;
}

.planner-header p {
    color: #7a869a;
    max-width: 700px;
    margin: 0 auto;
}

.planner-step {
    margin-bottom: 2.5rem;
}

.planner-step h3 {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.occasion-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.opt-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.opt-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.opt-card span {
    color: #4a5568;
    font-weight: 600;
    font-size: 0.9rem;
}

.opt-card:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.opt-card.active {
    border-color: var(--primary-color);
    background-color: #fdf2f5;
}

.package-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.pkg-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pkg-card h4 {
    color: #1a2a40;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.pkg-card p {
    color: #7a869a;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pkg-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.pkg-card:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.pkg-card.active {
    border-color: var(--primary-color);
    background-color: #fdf2f5;
}

.addon-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.addon-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.addon-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.addon-info {
    flex: 1;
}

.addon-info h4 {
    color: #1a2a40;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.addon-info p {
    color: #7a869a;
    font-size: 0.85rem;
}

.addon-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

.addon-card:has(.addon-checkbox:checked) {
    border-color: var(--primary-color);
    background-color: #fdf2f5;
}

.planner-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group h3 {
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.planner-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #4a5568;
    outline: none;
    transition: border-color 0.3s;
}

.planner-input:focus {
    border-color: var(--primary-color);
}

.planner-summary {
    background-color: #fdf2f5;
    border: 1px solid #fad1dc;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    color: #7a869a;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.summary-price {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.summary-note {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-whatsapp {
    background-color: #128C7E;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-whatsapp:hover {
    background-color: #075E54;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

/* Responsive updates */
@media (max-width: 1024px) {
    .planner-details {
        grid-template-columns: 1fr;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 5rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .services-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Global Spacing Reductions */
    .section-padding {
        padding: 3rem 5%;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }

    /* Navbar & Hero */
    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* Compact Layout for Pricing Cards */
    .package-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card {
        width: 100%;
        padding: 1.5rem;
    }
    
    .card-header h3 { font-size: 1.2rem; }
    .price { font-size: 2rem; }
    .features li { font-size: 0.85rem; margin-bottom: 0.5rem; }
    .features { margin-bottom: 1rem; }

    .card.popular {
        transform: scale(1);
    }
    
    .card.popular:hover {
        transform: scale(1);
    }

    /* Features 3-then-2 Layout for Mobile */
    .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 0.5rem;
    }
    
    .feature-item {
        flex: 0 0 calc(33.333% - 0.5rem);
    }
    
    .f-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .feature-item p {
        font-size: 0.75rem;
    }

    /* Gallery 2-column Grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Compact Layout for Reviews */
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .review-card {
        width: 100%;
        padding: 1.2rem;
    }
    
    .review-card p { 
        font-size: 0.85rem; 
        margin-bottom: 1rem; 
    }

    /* CTA Section */
    .cta-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 3rem 5%;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Budget Planner Optimizations */
    .planner-container {
        padding: 1.5rem;
    }
    
    .planner-header h2 {
        font-size: 1.8rem;
    }

    .occasion-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .opt-card {
        padding: 1rem 0.5rem;
    }
    
    /* Compact Layout for Planner Base Packages */
    .package-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .pkg-card {
        width: 100%;
        padding: 1rem;
    }
    
    .pkg-card h4 { font-size: 1rem; }
    .pkg-card p { font-size: 0.8rem; margin-bottom: 0.5rem; }
    .pkg-price { font-size: 1.1rem; }
    
    .addon-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .addon-card {
        padding: 0.8rem;
    }
    
    .planner-summary {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .summary-price {
        font-size: 2rem;
    }

    /* Footer Services 3-then-2 Grid */
    .text-center-mobile {
        text-align: center;
    }
    
    .footer-services-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 0.5rem;
        padding: 0;
    }
    
    .footer-services-grid li {
        flex: 0 0 calc(33.333% - 0.5rem);
        margin-bottom: 0 !important;
    }
    
    .footer-services-grid li a {
        font-size: 0.85rem;
    }
}

