:root {
    --primary-color: #f15fb5;
    /* Vibrant Pink from logo */
    --secondary-color: #333333;
    /* Dark Grey */
    --accent-color: #ff8ec7;
    /* Lighter Pink */
    --text-color: #2c2c2c;
    --light-bg: #fdfdfd;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    touch-action: pan-y;
    /* Prevent horizontal swipe gestures from moving the page */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

body p {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.1rem;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

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

.nav .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* For absolute centering of links */
}

.nav-links {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    font-family: 'Italiana', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-shadow: 0.5px 0 0 var(--secondary-color);
    transition: var(--transition);
}

.logo span {
    font-family: 'Alex Brush', cursive;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-left: -5px;
    vertical-align: middle;
    text-shadow: 0.5px 0 0 var(--primary-color);
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    /* Prevent line break on mobile */
}

.nav-phone i {
    color: var(--primary-color);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-only {
    display: none;
}


.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

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

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

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Ensures the video is centered */
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay for better text visibility */
    z-index: 0;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

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

/* Decorative Floating Icons */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.4;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    font-size: 2rem;
}

.icon-2 {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
    font-size: 1.2rem;
}

.icon-3 {
    top: 30%;
    right: 12%;
    animation-delay: 2s;
    font-size: 1.8rem;
}

.icon-4 {
    top: 70%;
    right: 18%;
    animation-delay: 3s;
    font-size: 1.4rem;
}

.icon-5 {
    top: 15%;
    left: 45%;
    animation-delay: 4s;
    font-size: 1rem;
}

.icon-6 {
    top: 80%;
    left: 50%;
    animation-delay: 1.5s;
    font-size: 1.6rem;
}

/* Sections */
section {
    padding: 100px 0;
    overflow: hidden;
    /* Prevents AOS side animations from causing horizontal scroll */
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About Section */
.about-section {
    background: #fff;
    padding: 100px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.15);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-features li {
    display: flex;
    gap: 20px;
}

.about-features i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(255, 20, 147, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.about-features h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.about-features p {
    font-size: 0.9rem;
    color: #666;
}

/* Contact & Map */
.contact-section {
    background: #f9f9f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.service-detail h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-list ul {
    margin-top: 20px;
}

.pricing-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    justify-content: space-between;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .logo span {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 1000;
        left: auto;
        /* Override previous left: 50% */
        transform: none;
        /* Override previous transform */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 1.2rem;
        z-index: 1001;
        line-height: 1.1;
    }

    .logo span {
        font-size: 1.6rem;
        margin-left: 0;
        margin-top: 2px;
    }

    .nav-phone {
        font-size: 0.8rem;
        gap: 4px;
    }

    .nav-phone i {
        font-size: 0.75rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Mobile Hero Styling */
    #hero-video {
        display: block;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .logo {
        font-size: 1rem;
    }

    .logo span {
        font-size: 1.3rem;
    }

    .nav-phone {
        font-size: 0.75rem;
    }

    .nav-extra {
        gap: 10px;
    }
}