* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #1e0b36;
    color: #f8e9ff;
    overflow-x: hidden;
}

/* Romantic Color Palette */
:root {
    --passion-red: #ff2d75;
    --exotic-purple: #8a2be2;
    --golden-amber: #ffb347;
    --deep-plum: #4b0082;
    --soft-lavender: #f8e9ff;
    --romantic-teal: #2dd4bf;
}

/* Mobile-First Navbar */
.navbar {
    background: linear-gradient(90deg, var(--deep-plum), #2d0b52);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 45, 117, 0.3);
    border-bottom: 2px solid var(--golden-amber);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--passion-red), var(--golden-amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    font-weight: 700;
    z-index: 1001;
}

/* Hamburger Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--soft-lavender);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Nav Links - Mobile */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-plum), #3a0c6e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 1000;
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    color: var(--soft-lavender);
    text-decoration: none;
    font-size: 1.3rem;
    padding: 0.5rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--golden-amber);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--passion-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Banner Section */
.banner {
    height: 90vh;
    background: linear-gradient(135deg, rgba(30, 11, 54, 0.9) 0%, rgba(138, 43, 226, 0.7) 100%),
    url('../images/banner.jpg');
    background-size: cover;
    background-position: start;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    padding: 0 1rem;
}

.banner-content {
    text-align: center;
    max-width: 800px;
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--passion-red), var(--golden-amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--soft-lavender);
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(45deg, var(--passion-red), #ff5e8a);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 45, 117, 0.5);
    font-weight: 600;
    min-width: 180px;
}

.secondary-button {
    background: linear-gradient(45deg, var(--exotic-purple), #a45deb);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.5);
}

.teal-button {
    background: linear-gradient(45deg, var(--romantic-teal), #34d399);
    box-shadow: 0 5px 20px rgba(45, 212, 191, 0.5);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 45, 117, 0.7);
}

.secondary-button:hover {
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.7);
}

.teal-button:hover {
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.7);
}

/* Our Services Section */
.services-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    background: linear-gradient(45deg, var(--golden-amber), var(--romantic-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--golden-amber), var(--romantic-teal));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--passion-red), var(--golden-amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card h3 {
    color: var(--golden-amber);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--soft-lavender);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--soft-lavender);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--golden-amber);
}

.service-button:hover {
    background: var(--golden-amber);
    color: var(--deep-plum);
}

.services-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, #1e0b36, #2d0b52);
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--passion-red), var(--golden-amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card h3 {
    color: var(--golden-amber);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--soft-lavender);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--romantic-teal);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border: 1px solid var(--romantic-teal);
}

.service-badge i {
    margin-right: 5px;
    font-size: 0.9rem;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 45, 117, 0.2);
}

.service-card:hover .service-badge {
    background: var(--romantic-teal);
    color: var(--deep-plum);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Locations Section */
.locations-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #2d0b52, #1e0b36);
    border-radius: 20px;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.locations-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    background: linear-gradient(45deg, var(--romantic-teal), var(--exotic-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.locations-section h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--romantic-teal), var(--exotic-purple));
    border-radius: 2px;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 212, 191, 0.2);
}

.location-card i {
    font-size: 2rem;
    color: var(--romantic-teal);
    margin-bottom: 1rem;
}

.location-card h3 {
    color: var(--golden-amber);
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--soft-lavender);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.location-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--romantic-teal);
    color: var(--deep-plum);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-button:hover {
    background: var(--golden-amber);
    transform: translateY(-3px);
}

/* Photo Gallery */
.gallery {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--golden-amber);
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--passion-red), var(--golden-amber));
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1/1;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 45, 117, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1e0b36, #0d051b);
    padding: 4rem 1rem 2rem;
    color: var(--soft-lavender);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-column h3 {
    color: var(--golden-amber);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: var(--passion-red);
}

.footer-column p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--soft-lavender);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden-amber);
}

.footer-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--exotic-purple), var(--passion-red));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: .2rem;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.footer-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(138, 43, 226, 0.6);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .navbar {
        padding: 1.2rem 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        padding-top: 0;
        box-shadow: none;
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 2rem;
    }

    .banner-content h1 {
        font-size: 3.5rem;
    }

    .banner-content p {
        font-size: 1.3rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .banner-content h1 {
        font-size: 4rem;
    }
}

/* Add these styles to your existing CSS */

.testimonials-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #2d0b52, #1e0b36);
    position: relative;
    overflow: hidden;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--golden-amber);
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--passion-red), var(--golden-amber));
    border-radius: 2px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 45, 117, 0.2);
}

.testimonial-content {
    position: relative;
    text-align: center;
}

.testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--golden-amber);
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--passion-red);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    color: var(--soft-lavender);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.couple-info h4 {
    color: var(--golden-amber);
    margin-bottom: 0.5rem;
}

.location {
    color: var(--romantic-teal);
    font-size: 0.9rem;
}

.cta-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--exotic-purple), var(--deep-plum));
/*    text-align: center;*/
}

.cta-content a{
    text-decoration: none;
    color: #f89e4e;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    color: var(--soft-lavender);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta {
    background: var(--golden-amber);
    color: var(--deep-plum);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 179, 71, 0.5);
}

.secondary-cta {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--golden-amber);
}

.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 179, 71, 0.7);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-section h2 {
        font-size: 3rem;
    }

    .cta-content h2 {
        font-size: 3rem;
    }
}

/* Previous CSS styles remain the same */

/* Add this new style for WhatsApp button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    margin-top: 2px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
}