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

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
}

:root {
    --primary: #6f1d8f;
    --secondary: #ff2f92;
    --light: #f9f4fb;
    --dark: #2c0b38;
    --gray: #666;
}

section {
    padding: 80px 8%;
}

h1, h2, h3 {
    color: var(--dark);
}

p {
    color: var(--gray);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
  transition: 0.3s;
}


/* MOBILE MENU */
@media (max-width: 950px) {

  .hero,
  .about-grid,
  .founder-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  /* SHOW HAMBURGER */
  .hamburger {
    display: flex;
  }

  /* MOBILE NAV MENU */
  .nav-links {
    position: absolute;
    top: 90px;
    right: 6%;
    width: 250px;

    background: white;
    flex-direction: column;
    padding: 25px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);

    transition: 0.3s ease;

    display: flex;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .gallery-slide img {
    height: 350px;
  }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    background: linear-gradient(to right, #fff 50%, #fdf2fa 50%);
    padding-top: 120px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.badge {
    background: white;
    padding: 12px 18px;
    border-radius: 40px;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-weight: 600;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
}

.about-content ul {
    margin-top: 20px;
    list-style: none;
}

.about-content li {
    margin-bottom: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.about-content i {
    color: var(--secondary);
    margin-top: 5px;
}

/* SERVICES */
.services-grid,
.accommodate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card,
.accommodate-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border: 1px solid #f0e4f6;
}

.service-card:hover,
.accommodate-card:hover {
    transform: translateY(-6px);
}

.service-card i,
.accommodate-card i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3,
.accommodate-card h3 {
    margin-bottom: 12px;
}

/* LOCATIONS */
.locations {
    background: var(--light);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.location-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* GALLERY */
.gallery-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
}

.gallery-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.gallery-buttons button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

/* CALENDLY */
.booking {
    background: linear-gradient(135deg, #fdf2fa, #f5efff);
}

.booking-box {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
}

/* FOUNDER */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.quote {
    margin-top: 20px;
    padding: 20px;
    border-left: 5px solid var(--secondary);
    background: #fff7fb;
    border-radius: 12px;
    font-style: italic;
}

/* CONTACT */
.contact {
    background: #1b0a24;
    color: white;
}

.contact .section-title h2,
.contact .section-title p {
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-info h3 {
    color: white;
    margin-bottom: 15px;
}

.contact-info p {
    color: #ddd;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary);
    margin-right: 10px;
}

.contact-info a {
    color: white;
    text-decoration: underline;
}

.contact-info a:visited {
    color: white;
}

.contact-info a:hover {
    color: #ff2f92;
}

form {
    display: grid;
    gap: 18px;
}

input,
textarea {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    outline: none;
    font-family: inherit;
}

textarea {
    resize: none;
    min-height: 140px;
}

form button {
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background: #120718;
    color: #ccc;
}

/* FLOATING CALL BUTTON */
.floating-call {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.whatsapp-button {
    bottom: 100px;
    /* background: #25D366; */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

@keyframes pulse {
    0% {
    transform: scale(1);
    }
    50% {
    transform: scale(1.08);
    }
    100% {
    transform: scale(1);
    }
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .hero,
    .about-grid,
    .founder-grid,
    .contact-wrapper {
    grid-template-columns: 1fr;
    }

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

    nav ul {
    display: none;
    }

    .gallery-slide img {
    height: 350px;
    }
}

@media (max-width: 600px) {
    section {
    padding: 70px 6%;
    }

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

    .section-title h2 {
    font-size: 2rem;
    }

    .badge {
    width: 100%;
    text-align: center;
    }
}