* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


.main-header {
    background: linear-gradient(135deg, #c993c3, #b77bb5);
    padding: 18px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: white;
    color: #b05fa7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 28px;
    color: #2b0f2b;
    font-weight: 700;
}

.logo-text p {
    font-size: 13px;
    color: #4a2a4a;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    background: white;
    color: #b05fa7;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: white;
    transition: 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}


.hero {
    background: linear-gradient(
        rgba(248, 214, 221, 0.9),
        rgba(248, 214, 221, 0.9)
    ),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9") center/cover;
    padding: 120px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 46px;
    color: #5a2a3c;
    margin-bottom: 20px;
}

.hero .highlight {
    color: #b76e79;
}

.hero p {
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    color: #6b3a4b;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: #b76e79;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #9c5a63;
    transform: translateY(-2px);
}

.services {
    background: #fff6f0;
    padding: 90px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3 {
    font-size: 34px;
    color: #5a2a3c;
    margin-bottom: 10px;
}

.section-title p {
    color: #7a4a5b;
    max-width: 600px;
    margin: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(183, 110, 121, 0.15);
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.service-content {
    padding: 22px;
}

.service-content h4 {
    font-size: 20px;
    color: #5a2a3c;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: #7a4a5b;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed #f0c9d1;
}

.service-meta i {
    color: #b76e79;
}

.service-meta span {
    margin-left: 6px;
    font-weight: 600;
    color: #5a2a3c;
}

.booking {
    background: #fdeff2;
    padding: 90px 20px;
}

.booking-card {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(183, 110, 121, 0.18);
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3c6cf;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active {
    background: #b76e79;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-top: 18px;
    color: #6b3a4b;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #f0c9d1;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b76e79;
    box-shadow: 0 0 0 2px rgba(183,110,121,0.2);
}

textarea {
    resize: none;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

.contact {
    background: #fff6f0;
    padding: 90px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 18px;
    background: #ffffff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(183,110,121,0.15);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #b76e79;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-details h4 {
    font-size: 16px;
    color: #5a2a3c;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: #7a4a5b;
    line-height: 1.5;
}

.contact-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(183,110,121,0.25);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 35px 25px;
    }
}

.footer {
    background: linear-gradient(135deg, #b76e79, #9c5a63);
    color: #fff6f0;
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: #fff6f0;
    color: #b76e79;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer h5 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}


.footer p {
    max-width: 650px;
    margin: 14px auto;
    font-size: 15px;
    line-height: 1.6;
    color: #ffe3ea;
}


.social-links {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #fff6f0;
    color: #b76e79;
    transform: translateY(-3px);
}

.footer p:last-child {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 25px;
}



