:root {
    --black: #000;
    --pink: #fc9acf;
    --white: #ffffff;
    --gray: #cccccc;
    --primary-text-color: #333;
    --secondary-background-color: #f1f1f1;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary-background-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    text-align: center;
    padding: 30px 0;
    font-weight: 700;
    font-size: 32px;
    color: var(--primary-text-color);
}

.header-content-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 20px;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.btn {
    background-color: var(--pink);
    color: var(--black);
    padding: 12px 24px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 6px;
}

section {
    padding: 60px 20px;
    max-width: 960px;
    margin: auto;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--pink);
}

.services,
.testimonial {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input,
textarea {
    padding: 10px;
    background-color: #2a2a2a;
    border: 1px solid var(--gray);
    color: var(--white);
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: var(--gray);
}

.container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 90;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    border-radius: 20px;
    width: 100%;
    height: 700px;
    background: url('./massage.jpg') center/cover no-repeat;
    position: relative;
}

.main-text {
    font-size: 5em;
    font-weight: 900;
    line-height: 1.1;
    color: var(--pink);
    margin-bottom: 40px;
    white-space: nowrap;
    animation: fadeIn 1s ease-out;
}

.main-text span {
    display: block;
}

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

.button {
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.button.book-now {
    background-color: var(--pink);
    color: var(--black);
    border: 1px solid var(--pink);
}

.button.book-now:hover {
    background: transparent;
    color: var(--pink);
    border: 1px solid var(--pink);
}

.button.learn-more {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--pink);
}

.button.learn-more:hover {
    background-color: var(--black);
    color: var(--white);
}

/* --- About Section --- */
.about-section {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin: 60px 0;
    border-radius: 20px;
    overflow: hidden;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.about-text {
    flex: 1;
    padding: 20px;
    border-radius: 20px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;

}

.about-text h3 {
    color: var(--pink);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: black;
    font-size: 15px;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.credential {
    background-color: var(--pink);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* --- Services Section --- */
.services-section {
    width: 100%;
    background-color: white;
    padding: 60px 20px;
    border-radius: 20px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.services-header h3 {
    color: var(--pink);
    font-size: 32px;
    margin: 0;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Category Toggle Buttons */
.category-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.category-button {
    background-color: transparent;
    color: var(--primary-text-color);
    border: 2px solid var(--pink);
    padding: 12px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.category-button:hover {
    background-color: var(--pink);
    color: var(--black);
}

.category-button.active {
    background-color: var(--pink);
    color: var(--black);
}

/* Service Content */
.service-content {
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.content-area {
    flex: 1;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    height: 100%;
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px 0;
}

.pagination-btn {
    background-color: var(--pink);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 27px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #e085c7;
    transform: scale(1.1);
}

.pagination-btn:disabled {
    background-color: var(--gray);
    cursor: not-allowed;
    opacity: 0.5;
}

.page-info {
    font-weight: 600;
    color: var(--primary-text-color);
    min-width: 60px;
    text-align: center;
}

.sub-service-card {
    /* background-color: #f1f1f1; */
    border-radius: 20px;
    padding: 25px;
    border-left: 4px solid var(--pink);
    border-top: 1px solid var(--pink);
    border-right: 1px solid var(--pink);
    border-bottom: 1px solid var(--pink);
    /* border: 1px solid var(--gray); */
    color: var(--black);
}

.sub-service-name {
    color: var(--pink);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.sub-service-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* --- Booking & Location Section --- */
.booking-location-section {
    width: 100%;
    display: flex;
    gap: 40px;
    margin: 60px 0;
}

.booking-area,
.location-area {
    flex: 1;
    width: 100%;
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.location-area {
    min-height: 400px;
}

.booking-area h3,
.location-area h3 {
    color: var(--pink);
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    /* text-align: center; */
}

.vagaro-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.embedded-widget-title {
    font-size: 18px;
    color: var(--primary-text-color);
    font-family: 'Inter', sans-serif;
    line-height: 24px;
    padding: 10px;
    text-align: center;
    margin-bottom: 15px;
}

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

gmp-map {
    width: 100%;
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 20px 20px;
}

footer span {
    display: block;
    text-align: center;
    color: #777;
    font-size: 14px;
    padding-top: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.footer-left {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.footer-logo {
    height: 120px;
    width: auto;
}

.contact-section h4 {
    color: var(--pink);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.contact-icon {
    width: 16px;
    height: 16px;
    filter: invert(99%) sepia(100%) saturate(0%) hue-rotate(99deg) brightness(104%) contrast(100%);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--pink);
}

.contact-item span {
    color: var(--white);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-section h4 {
    color: var(--pink);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon-img {
    width: 24px;
    height: 24px;
    filter: invert(99%) sepia(100%) saturate(0%) hue-rotate(99deg) brightness(104%) contrast(100%);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon:hover .social-icon-img {
    filter: invert(65%) sepia(10%) saturate(1683%) hue-rotate(282deg) brightness(110%) contrast(98%);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .main-text {
        font-size: 3.5em;
        white-space: normal;
    }

    .main-text span {
        display: inline;
    }
}

@media (max-width: 768px) {
    header {
        font-size: 1em;
    }

    .main-text {
        font-size: 2.5em;
        margin-bottom: 30px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .button {
        width: 80%;
        margin: 0 auto;
        padding: 12px 20px;
    }

    .about-section {
        flex-direction: column;
        gap: 20px;
        margin: 40px 0;
    }

    .about-image img {
        height: 300px;
    }

    .about-text {
        padding: 20px;
    }

    .credentials {
        justify-content: center;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .category-buttons {
        justify-content: center;
        width: 100%;
    }

    .category-button {
        flex: 1;
        min-width: 100px;
        max-width: 150px;
    }

    .page-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sub-service-card {
        padding: 20px;
    }

    .services-section {
        padding: 40px 20px;
    }

    .booking-location-section {
        flex-direction: column;
        gap: 20px;
        margin: 40px 0;
    }

    .booking-area,
    .location-area {
        padding: 20px;
        min-height: 300px;
    }

    .location-area {
        min-height: 320px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-left {
        align-items: center;
        gap: 25px;
    }

    .footer-logo {
        height: 100px;
    }

    .contact-section {
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }

    .social-section {
        text-align: center;
    }

    .social-icons {
        gap: 30px;
        justify-content: center;
    }

    .social-icon-img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .main-text {
        font-size: 2em;
    }
}
