@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Caveat:wght@400..700&display=swap');

:root {
    --primary-color: #FFFFFF;
    --secondary-color: #E6007E; /* Logo Pink */
    --accent-color: #5A2D81; /* Logo Purple */
    --pastel-accent: #F3E9FF; /* Pastel Purple */
    --text-color: #333333; /* Logo Dark Gray */
    --highlight-color: #FFB7C5; /* Soft Pink */
    --logo-gradient: linear-gradient(135deg, #5A2D81 0%, #E6007E 50%, #FFB7C5 100%);
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

.emoji-icon {
    font-size: 1.2em;
    vertical-align: middle;
    margin: 0 5px;
}

.no-wrap {
    white-space: nowrap;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.header-social {
    margin-left: 20px;
}

.instagram-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fdf2f8;
    color: #E6007E;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid #fce4ec;
}

.instagram-nav:hover {
    background: #E6007E;
    color: white;
    transform: translateY(-2px);
}

.instagram-nav ion-icon {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .ig-handle-nav {
        display: none;
    }
    .instagram-nav {
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .header-social {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 15px;
    }
    .instagram-nav {
        padding: 5px;
        background: transparent;
        border: none;
        color: var(--accent-color);
    }
    .instagram-nav:hover {
        background: transparent;
        color: var(--secondary-color);
        transform: none;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8FAFC;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(226, 232, 240, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: pulse-glow 10s infinite alternate ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #A855F7; /* Violet */
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #EC4899; /* Fuchsia */
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.15; }
    100% { transform: scale(1.2); opacity: 0.25; }
}

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

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #22C55E;
    border-radius: 50%;
    animation: dot-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes dot-ping {
    75%, 100% { transform: scale(3); opacity: 0; }
}

.hero-content h1 {
    font-size: 4.6rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0F172A;
    font-weight: 800;
    letter-spacing: -2px;
}

.accent-text {
    font-family: 'Caveat', cursive;
    color: #64748B;
    font-weight: 500;
    font-size: 1.1em;
    margin: 0 5px;
}

.hero-content p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 15px 35px;
    background: white;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .cta-button, .cta-secondary {
        padding: 10px 25px;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        min-height: 40px; /* Ensure a consistent minimum height */
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 15px 40px;
    background: var(--logo-gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(230, 0, 126, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 0, 126, 0.3);
    filter: brightness(1.1);
}


.section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header div {
    width: 60px;
    height: 3px;
    background: var(--logo-gradient);
    margin: 0 auto;
}

/* Section Layouts */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image { margin-bottom: 40px; }
}

.about-image img {
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--pastel-accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

@media (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 0, 126, 0.4); /* Logo Pink with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay ion-icon {
    color: white;
    font-size: 2rem;
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 60px 0;
    border-top: 1px solid #eee;
    color: var(--text-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; /* Better alignment with the map */
    text-align: left;
}

.footer-info .logo {
    justify-content: flex-start;
}

.locality {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.footer-social-cluster {
    margin-bottom: 30px;
}

.footer-other-socials {
    display: flex;
    gap: 25px;
}

.social-icon {
    font-size: 1.8rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.social-icon.instagram { color: #E6007E; }
.social-icon.google { color: #4285F4; }
.social-icon.youtube { color: #FF0000; }

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    line-height: 0;
}

.footer-map iframe {
    width: 100%;
    height: 400px;
    display: block;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-info .logo {
        justify-content: center;
    }
    .footer-social-cluster {
        align-items: center;
    }
    .footer-other-socials {
        justify-content: center;
    }
    .footer-map {
        margin-top: 10px;
    }
}

/* Pricing & Testimonials */
.pricing-mini-banner {
    background: #fdf2f8;
    margin-top: 30px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px dashed #E6007E;
}

.pricing-mini-banner p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
}

.price-tag {
    color: #E6007E;
    font-size: 1.6rem;
    font-weight: 800;
}

.testimonials-section {
    background-color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stars {
    color: #FFB800;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

.client-info {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.client-name {
    font-weight: 700;
    color: var(--accent-color);
}

.google-badge {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-badge ion-icon {
    color: #4285F4;
}

@media (max-width: 768px) {
    .pricing-mini-banner p {
        font-size: 1.1rem;
    }
    .price-tag {
        font-size: 1.3rem;
    }
}

.footer-content p {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* ... previous CSS ... */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
    }
}

/* Offer Section - Modern Redesign */
.offer-section {
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.offer-modern-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(230, 0, 126, 0.1);
}

.offer-content {
    display: flex;
    width: 100%;
}

.offer-text {
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-image-wrapper {
    flex: 1;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.offer-subheading {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #E6007E;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.offer-heading {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #5A2D81, #E6007E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.highlight-text {
    color: #E6007E;
    font-weight: 700;
}

.offer-features {
    list-style: none;
    margin-bottom: 30px;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.check-icon {
    color: #22C55E;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.offer-limit {
    margin-bottom: 30px;
}

.badge {
    background: #fff0f5;
    color: #E6007E;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #ffdeeb;
}

.geometric-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(230, 0, 126, 0.1), rgba(90, 45, 129, 0.1));
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.offer-icon-large ion-icon {
    font-size: 8rem;
    color: rgba(90, 45, 129, 0.15);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
    .offer-content {
        flex-direction: column-reverse;
    }
    .offer-image-wrapper {
        padding: 40px;
        min-height: 200px;
    }
    .offer-text {
        padding: 40px 20px;
        text-align: center;
    }
    .offer-features li {
        justify-content: center;
    }
    .offer-heading {
        font-size: 2.2rem;
    }
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}


.modal-content-modern {
    background-color: #fff;
    margin: auto;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    padding: 40px;
    text-align: center;
}

.modal.show .modal-content-modern {
    transform: scale(1);
}

.modal-body-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: #fce4ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-icon ion-icon {
    font-size: 2rem;
    color: #E6007E;
}

.modal-content-modern h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.modal-features {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 500;
}

.modal-tag {
    background: #f3e5f5;
    color: #5A2D81;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    font-weight: 600;
}


.full-width {
    width: 100%;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}
