/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4a574;
    --black: #0a0a0a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background: var(--white);
}

/* Consistent Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
}

.section-title,
.story-quote,
.card-number,
.footer-logo h3 {
    font-family: 'Inter', sans-serif;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Visually Hidden but Accessible */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Smooth Transitions - Removed universal selector to prevent animation conflicts */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation - Bongo Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}

.navbar.scrolled .logo-image {
    height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    right: 50px;
}

@media (max-width: 768px) {
    .nav-right {
        position: fixed;
    }
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu-left {
    justify-content: flex-start;
}

.nav-menu-right {
    justify-content: flex-end;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: capitalize;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.active span {
    background: var(--gold);
}

/* Hero Section - Bongo Style */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    opacity: 1;
    visibility: visible;
}

.hero-bg-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(12rem, 30vw, 35rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: -0.02em;
    line-height: 0.9;
    z-index: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.hero-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    opacity: 1;
    visibility: visible;
}

.hero-top {
    width: 100%;
    text-align: left;
}

.hero-label {
    display: inline-block;
    color: var(--black);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 1;
}

.hero-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

/* Flip Card */
.flip-card {
    width: 450px;
    height: 550px;
    perspective: 750px;
    -webkit-perspective: 750px;
    position: relative;
    z-index: 5;
    opacity: 1;
    visibility: visible;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.flip-card-back {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.flip-card-front img,
.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: block;
}

/* Running Text Marquee - Behind Image */
.running-text-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    z-index: 2;
    transform: translateY(-50%);
}

.running-text {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@media (max-width: 768px) {
    .running-text {
        animation: marquee 10s linear infinite;
    }
}

.running-text span {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: rgba(212, 165, 116, 0.15);
    padding-right: 0;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 100;
}

.hero-heading {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--black);
    max-width: 500px;
    position: relative;
    z-index: 100;
    margin-bottom: 1rem;
}

.hero-location {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 1rem;
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--black);
    cursor: pointer;
    position: relative;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-cta:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--black);
    z-index: 4;
}

.hero-social {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    gap: 1.5rem;
    z-index: 100;
}

.hero-social a {
    color: var(--black);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.hero-social a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Section Styles */
.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
    line-height: 1.6;
}

/* About Section - Updated Layout */
.about {
    padding: 150px 0;
    background: var(--light-gray);
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.about-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover .about-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    pointer-events: none;
    opacity: 0.5;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--gold);
    color: var(--black);
    padding: 35px 45px;
    text-align: center;
    min-width: 200px;
}

.card-number {
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text {
    color: var(--black);
}

.about-text .section-title {
    color: var(--black);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 400;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h4 {
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

/* Story Section */
.story {
    padding: 150px 0;
    background: var(--white);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-header .section-title {
    color: var(--black);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-block {
    margin-bottom: 3rem;
    position: relative;
}

.quote-mark {
    font-family: 'Inter', sans-serif;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: -20px;
    line-height: 1;
}

.story-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--black);
    position: relative;
    z-index: 1;
}

.story-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.credentials-box {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--black);
    color: var(--white);
}

.credentials-box h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.credentials-list {
    display: grid;
    gap: 1rem;
}

.credential-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding-left: 0;
}

.story-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-img-single {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.story-img-single img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Services Section */
.services {
    padding: 150px 0;
    background: var(--white);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header .section-title {
    color: var(--black);
}

.services-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* Services Showcase Layout */
.services-showcase {
    display: grid;
    gap: 4rem;
    margin-top: 6rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 1;
}

.service-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-card:nth-child(even) .service-image {
    order: 2;
}

.service-card:nth-child(even) .service-content {
    order: 1;
    text-align: left;
}

.service-card:nth-child(odd) .service-content {
    text-align: left;
}

.service-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--light-gray);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-header {
    margin-bottom: 1rem;
}

.service-number {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-card .service-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: -1px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--black);
    padding: 15px 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
}

.service-cta span {
    display: inline-block;
}

.service-cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateX(5px);
}

.service-cta:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.service-cta svg {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.service-cta:hover svg {
    transform: translateX(3px);
}

/* Price List Section */
.prices {
    padding: 150px 0;
    background: var(--white);
}

.prices .container {
    max-width: 1000px;
}

.prices h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.prices .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.price-categories {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.price-category {
    background: var(--light-gray);
    padding: 3rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.price-category:hover {
    border-color: var(--gold);
}

.price-list {
    margin-top: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.price-item:last-child {
    border-bottom: none;
}

.treatment-info h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.treatment-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 2rem;
}

.price-note {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--black);
}

.price-note p {
    color: var(--gold);
    font-style: italic;
    margin: 0;
    font-size: 1.1rem;
}

/* Instagram Section */
.instagram {
    padding: 150px 0;
    background: var(--light-gray);
}

.instagram-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.instagram-header {
    text-align: center;
    margin-bottom: 80px;
}

.instagram-header .section-title {
    color: var(--black);
}

.instagram-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-post {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.instagram-post a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 116, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-overlay svg {
    color: var(--black);
}

.instagram-cta {
    text-align: center;
    margin-top: 4rem;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
}

.instagram-button:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.instagram-button:focus {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}

/* Contact Section */
.contact {
    padding: 150px 0;
    background: var(--white);
}

.contact h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.contact .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2.5rem;
}

.contact-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-cta-box {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.contact-cta-box h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin: 0;
    font-weight: 700;
}

.contact-cta-box p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
}

.instagram-book-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
    min-height: 56px;
    letter-spacing: 0.5px;
}

.instagram-book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(131, 58, 180, 0.4);
}

.instagram-book-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 0;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #27ae60;
}

.submit-button {
    background: var(--gold);
    color: var(--black);
    padding: 18px 40px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.submit-button:hover {
    background: var(--black);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-button:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Inter', sans-serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .about-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

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

    .service-card,
    .service-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-card:nth-child(even) .service-image {
        order: 1;
    }

    .service-card:nth-child(even) .service-content {
        order: 2;
        text-align: left;
    }

    .service-image {
        aspect-ratio: 1 / 1;
        max-width: 350px;
        max-height: 350px;
        margin: 0 auto;
    }

    .service-card .service-name {
        font-size: 2.5rem;
    }

    .services-showcase {
        gap: 3rem;
        max-width: 100%;
    }

    .logo-image {
        height: 50px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flip-card {
        width: 350px;
        height: 450px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .running-text span {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
}

/* Mobile Optimization - Best UX/UI Practices */
@media (max-width: 768px) {

    /* Navigation - Touch-friendly */
    .nav-container {
        grid-template-columns: auto auto 1fr auto;
        padding: 0 16px;
    }

    .nav-left {
        order: 1;
    }

    .nav-logo {
        order: 2;
    }

    .nav-right {
        order: 3;
    }

    .nav-menu-left {
        display: none;
    }

    .nav-menu-right {
        position: fixed;
        left: -100%;
        top: 74px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100vw;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu-right.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.75rem 0;
    }

    .logo-image {
        height: 100px;
    }

    .navbar.scrolled .logo-image {
        height: 50px;
    }

    /* Hero Section - Mobile Optimized */
    .hero {
        min-height: 100svh;
    }

    .hero-bg-text {
        display: none;
    }

    .flip-card {
        width: min(280px, 80vw);
        height: min(350px, 50vh);
        perspective: 600px;
        -webkit-perspective: 600px;
    }

    .flip-card-inner {
        transform-style: preserve-3d;
        -webkit-transform-style: preserve-3d;
        position: relative;
        will-change: transform;
    }

    .flip-card-front,
    .flip-card-back {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        will-change: transform;
    }

    .flip-card-back {
        transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);
    }

    .flip-card-front img,
    .flip-card-back img {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        pointer-events: none;
    }

    .hero-heading {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
        letter-spacing: 0.5px;
        max-width: 100%;
        line-height: 1.5;
        text-align: left;
    }

    .hero-location {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .hero-bottom {
        gap: 1.2rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        padding: 16px 28px;
        font-size: 0.75rem;
        min-height: 48px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-social {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .running-text span {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .running-text-wrapper {
        padding: 8px 0;
    }

    .hero-content {
        padding-top: 90px;
        padding-bottom: 20px;
        min-height: 100svh;
    }

    /* Spacing & Typography */
    .container,
    .about-container,
    .story-container,
    .services-container,
    .instagram-container {
        padding: 0 16px;
    }

    .about,
    .story,
    .services,
    .prices,
    .instagram,
    .contact {
        padding: 50px 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    /* About Section */
    .about-grid {
        gap: 40px;
    }

    .about-img {
        max-height: 350px;
    }

    .floating-card {
        padding: 20px 25px;
        min-width: 140px;
        bottom: 20px;
        left: 20px;
    }

    .card-number {
        font-size: 3rem;
    }

    .card-text {
        font-size: 0.7rem;
    }

    .features-grid {
        gap: 2rem;
    }

    .feature-card h4 {
        font-size: 0.8rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    /* Story Section */
    .story-grid {
        gap: 40px;
    }

    .story-img-single {
        max-width: 100%;
    }

    .story-img-single img {
        max-height: 500px;
    }

    .story-quote {
        font-size: 1.2rem;
    }

    .quote-mark {
        font-size: 6rem;
        top: -30px;
        left: -10px;
    }

    .credentials-box {
        padding: 2rem;
    }

    .credentials-box h4 {
        font-size: 1rem;
    }

    .credential-item {
        font-size: 0.9rem;
    }

    /* Services Section */
    .services-showcase {
        gap: 3rem;
        max-width: 100%;
    }

    .service-card {
        gap: 2rem;
    }

    .service-card .service-name {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-content {
        padding: 0;
    }

    .service-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .service-cta {
        padding: 16px 28px;
        font-size: 0.7rem;
        min-height: 48px;
    }

    .service-number {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    /* Pricing Section */
    .prices h2 {
        font-size: 2.2rem;
    }

    .price-categories {
        gap: 2rem;
    }

    .price-category {
        padding: 1.5rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.2rem 0;
    }

    .treatment-info h4 {
        font-size: 1rem;
    }

    .treatment-info p {
        font-size: 0.85rem;
    }

    .price {
        font-size: 1.2rem;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .price-note {
        padding: 2rem 1.5rem;
    }

    .price-note p {
        font-size: 0.95rem;
    }

    /* Instagram Section */
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .instagram-button {
        padding: 16px 32px;
        font-size: 0.85rem;
        min-height: 48px;
    }

    /* Contact Section */
    .contact h2 {
        font-size: 2.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        gap: 2rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px;
        font-size: 1rem;
        min-height: 48px;
    }

    .submit-button {
        padding: 16px 32px;
        font-size: 0.85rem;
        min-height: 48px;
        width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .flip-card {
        width: min(340px, 75vw);
        height: min(340px, 45vh);
    }

    .hero-heading {
        font-size: 18px;
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .service-card .service-name {
        font-size: 1.4rem;
    }

    .story-quote {
        font-size: 1.1rem;
    }

    .price-category {
        padding: 1.2rem;
    }

    .instagram-grid {
        max-width: 100%;
    }

    .running-text-wrapper {
        transform: translateY(-100%) !important;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .flip-card {
        width: 200px;
        height: 250px;
    }
}


/* Additional UX Improvements */

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--gold);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Selection Color */
::selection {
    background: var(--gold);
    color: var(--black);
}

::-moz-selection {
    background: var(--gold);
    color: var(--black);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c9a068;
}

/* Smooth Image Loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Prevent Layout Shift */
.flip-card-front img,
.flip-card-back img,
.service-image img,
.about-img,
.story-img-main img,
.story-img-small img,
.instagram-post img {
    display: block;
    width: 100%;
    height: 100%;
}

/* Better Link Hover States */
a {
    -webkit-tap-highlight-color: rgba(212, 165, 116, 0.2);
}

/* Mobile Instagram DM Button */
.mobile-dm-button {
    display: none;
}

@media (max-width: 768px) {
    .mobile-dm-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
        color: white;
        padding: 14px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        box-shadow: 0 4px 20px rgba(131, 58, 180, 0.4);
        z-index: 1000;
        transition: all 0.3s ease;
        min-height: 48px;
        letter-spacing: 0.5px;
    }

    .mobile-dm-button:hover,
    .mobile-dm-button:active {
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 6px 25px rgba(131, 58, 180, 0.5);
    }

    .mobile-dm-button svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .mobile-dm-button span {
        white-space: nowrap;
    }
}

/* Touch-friendly minimum sizes */
button,
a.hero-cta,
a.service-cta,
a.instagram-button,
.submit-button {
    min-height: 44px;
    min-width: 44px;
}

/* Prevent text size adjustment on mobile */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Smooth scrolling for mobile */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* Improve Button Click Feedback */
button:active,
.hero-cta:active,
.service-cta:active,
.instagram-button:active,
.submit-button:active {
    transform: scale(0.98);
}

/* Skeleton Loading for Images */
.service-image,
.about-image-wrapper,
.story-img-main,
.story-img-small,
.instagram-post {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.service-image img,
.about-img,
.story-img-main img,
.story-img-small img,
.instagram-post img {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .hero-social,
    .hero-scroll,
    .nav-toggle,
    .running-text-wrapper {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
