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

:root {
    /* Primary Brand Colors */
    --coral-pink: #FF7F7F;
    --mint-green: #98D8C8;
    --golden-yellow: #F7DC6F;

    /* Secondary Colors */
    --sage-green: #A8C09A;
    --forest-green: #6B8A6E;
    --cream: #FAF9F6;
    --warm-white: #FEFEFE;

    /* Neutral Colors */
    --charcoal: #2C3E50;
    --soft-gray: #7F8C8D;
    --light-gray: #BDC3C7;
    --background-gray: #F8F9FA;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --max-width: 1200px;

    /* Transitions */
    --smooth-transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--warm-white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    transition: var(--smooth-transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral-pink), #FF9999);
    color: white;
    border-color: var(--coral-pink);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF6B6B, var(--coral-pink));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 127, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--coral-pink);
    border-color: var(--coral-pink);
}

.btn-outline:hover {
    background: var(--coral-pink);
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 249, 246, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--smooth-transition);
    border-bottom: 1px solid rgba(189, 195, 199, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--coral-pink);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--smooth-transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--coral-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-pink);
    transition: var(--smooth-transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.book-now-nav {
    background: var(--coral-pink);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    margin-left: 1rem;
}

.book-now-nav:hover {
    background: #FF6B6B;
    transform: translateY(-2px);
}

.book-now-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    margin: 3px 0;
    transition: var(--smooth-transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--coral-pink);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--soft-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, var(--mint-green), var(--sage-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(152, 208, 200, 0.3);
}

.hero-decorative {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 220, 111, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-decorative::before {
    content: '';
    position: absolute;
    top: 200px;
    left: -150px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 127, 127, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

/* Quick Services */
.quick-services {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.quick-services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

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

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--smooth-transition);
    border: 1px solid rgba(189, 195, 199, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card:nth-child(1) {
    border-top: 4px solid var(--coral-pink);
}

.service-card:nth-child(2) {
    border-top: 4px solid var(--mint-green);
}

.service-card:nth-child(3) {
    border-top: 4px solid var(--golden-yellow);
}

.service-card:nth-child(4) {
    border-top: 4px solid var(--sage-green);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.service-card p {
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.price {
    display: inline-block;
    background: var(--coral-pink);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* About Preview */
.about-preview {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--background-gray) 0%, var(--cream) 100%);
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.about-image .placeholder-image {
    width: 350px;
    height: 400px;
    background: linear-gradient(135deg, var(--golden-yellow), #F4D03F);
    box-shadow: 0 20px 60px rgba(247, 220, 111, 0.3);
}

/* Booking Section */
.booking-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--coral-pink) 0%, #FF9999 100%);
    color: white;
}

.booking-content {
    text-align: center;
}

.booking-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.booking-content>p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.booking-options {
    display: w-full;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.booking-widget,
.booking-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.square-booking-placeholder {
    text-align: center;
}

.square-booking-placeholder h3 {
    color: white;
    margin-bottom: 1rem;
}

.square-booking-placeholder p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.booking-btn {
    background: white;
    color: var(--coral-pink);
    border-color: white;
}

.booking-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.booking-fallback {
    text-align: center;
    padding: 2rem;
}

.booking-fallback h3 {
    color: white;
    margin-bottom: 1rem;
}

.booking-fallback p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.booking-fallback .btn {
    background: white;
    color: var(--coral-pink);
    border-color: white;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.booking-fallback .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.fallback-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

.dev-note {
    font-size: 0.8rem;
    color: var(--golden-yellow);
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.8;
}

/* Booking Setup Instructions */
.booking-setup-instructions {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-setup-instructions h3 {
    color: var(--coral-pink);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.setup-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: var(--background-gray);
    border-radius: 10px;
}

.step-number {
    background: var(--coral-pink);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.step-content h4 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--soft-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.step-content a {
    color: var(--coral-pink);
    text-decoration: none;
}

.step-content a:hover {
    text-decoration: underline;
}

.step-content code {
    background: rgba(255, 127, 127, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    color: var(--coral-pink);
}

.temporary-booking {
    background: rgba(255, 127, 127, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.temporary-booking h4 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.temporary-booking .btn {
    margin-bottom: 1rem;
}

.temporary-booking p {
    color: var(--soft-gray);
    margin-bottom: 0;
}

/* Square Appointments Container */
.square-appointments-container {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.square-appointments-container iframe {
    display: block;
    width: 100% !important;
    border: none !important;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden !important;
    background: white;
    transition: height 0.3s ease;
}

/* Remove scrollbars on all browsers */
.square-appointments-container iframe::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Responsive iframe for mobile */
@media (max-width: 768px) {
    .square-appointments-container {
        margin: 0 -1rem;
        padding: 0;
    }

    .square-appointments-container iframe {
        border-radius: 0;
        min-height: 700px;
    }
}

@media (max-width: 480px) {
    .square-appointments-container iframe {
        min-height: 650px;
    }
}

.booking-powered-by {
    font-size: 0.9rem;
    color: var(--soft-gray);
    margin-top: 1rem;
    text-align: center;
}

.booking-powered-by a {
    color: var(--coral-pink);
    text-decoration: none;
}

.booking-powered-by a:hover {
    text-decoration: underline;
}

/* Mobile Responsive for Setup Instructions */
@media (max-width: 768px) {
    .booking-setup-instructions {
        padding: 2rem 1.5rem;
    }

    .setup-step {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .step-content {
        text-align: center;
    }
}

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

.booking-contact h3 {
    color: white;
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phone-number a {
    color: white;
    text-decoration: none;
}

.phone-number a:hover {
    opacity: 0.8;
}

.booking-note {
    opacity: 0.8;
    font-size: 1rem;
}

/* Location */
.location {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.location-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    /* Centers the children horizontally */
    text-align: center;
    /* Keep text alignment normal */
}

.location-info h2 {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.location-info h3 {
    color: var(--coral-pink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-info p {
    color: var(--soft-gray);
    margin-bottom: 2rem;
}

.location-info a {
    color: var(--coral-pink);
}

.location-info a:hover {
    text-decoration: underline;
}

.map-container {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--light-gray), var(--background-gray));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--soft-gray);
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--light-gray);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--coral-pink);
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--smooth-transition);
}

.footer-section ul li a:hover {
    color: var(--coral-pink);
}

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

.footer-bottom p {
    opacity: 0.6;
    margin: 0;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }

    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--cream);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        padding: 2rem 0;
    }

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

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(189, 195, 199, 0.1);
        width: 100%;
    }

    .book-now-nav {
        margin: 1rem 0 0 0;
        display: inline-block;
        width: auto;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .placeholder-image {
        width: 300px !important;
        height: 400px !important;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Booking Mobile */
    .booking-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    /* Location Mobile */
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Typography Mobile */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .placeholder-image {
        width: 250px !important;
        height: 300px !important;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.about-hero-text .subtitle {
    font-size: 1.3rem;
    color: var(--coral-pink);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-hero-text .intro {
    font-size: 1.2rem;
    color: var(--soft-gray);
    line-height: 1.7;
}

.professional-portrait {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, var(--coral-pink), #FF9999);
    box-shadow: 0 20px 60px rgba(255, 127, 127, 0.3);
}

.about-story {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.story-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--soft-gray);
    margin-bottom: 2rem;
}

.specialties {
    padding: var(--section-padding);
    background: var(--background-gray);
}

.specialties h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialty-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--smooth-transition);
    border-top: 4px solid var(--coral-pink);
}

.specialty-card:nth-child(2) {
    border-top-color: var(--mint-green);
}

.specialty-card:nth-child(3) {
    border-top-color: var(--golden-yellow);
}

.specialty-card:nth-child(4) {
    border-top-color: var(--sage-green);
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.specialty-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.specialty-card h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.specialty-card p {
    color: var(--soft-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.philosophy {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.philosophy-content {
    display: flex;
    gap: 4rem;
    align-items: start;
}

.philosophy-text h2 {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.philosophy-text blockquote {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--coral-pink);
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 4px solid var(--coral-pink);
    line-height: 1.6;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-point h4 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.philosophy-point p {
    color: var(--soft-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.salon-space {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--mint-green), var(--sage-green));
    box-shadow: 0 20px 60px rgba(152, 208, 200, 0.3);
}

.personal-touch {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--background-gray) 0%, var(--cream) 100%);
}

.personal-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.personal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.personal-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
}

.personal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.personal-item h3 {
    color: var(--coral-pink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.personal-item p {
    color: var(--soft-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.about-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--coral-pink) 0%, #FF9999 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--coral-pink);
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--coral-pink);
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .professional-portrait {
        width: 300px !important;
        height: 400px !important;
        margin: 0 auto;
    }

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

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-text {
        text-align: center;
    }

    .salon-space {
        height: 250px;
        margin: 0 auto;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Services Page Styles */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-gray) 0%, var(--cream) 100%);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.services-hero-content .hero-subtitle {
    font-size: 1.3rem;
    color: var(--coral-pink);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.services-hero-content .hero-description {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-menu {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.service-category {
    margin-bottom: 4rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(255, 127, 127, 0.1), rgba(152, 208, 200, 0.1));
    border-radius: 20px;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.category-header h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.category-header p {
    color: var(--soft-gray);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
    border-left: 4px solid var(--coral-pink);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-category:nth-child(2) .service-item {
    border-left-color: var(--mint-green);
}

.service-category:nth-child(3) .service-item {
    border-left-color: var(--golden-yellow);
}

.service-category:nth-child(4) .service-item {
    border-left-color: var(--sage-green);
}

.service-info h3 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-info p {
    color: var(--soft-gray);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 100%;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coral-pink);
    white-space: nowrap;
}

.service-packages {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--coral-pink) 0%, #FF9999 100%);
    color: white;
}

.service-packages h2 {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
}

.packages-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--smooth-transition);
}

.package-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.package-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.package-services {
    margin-bottom: 2rem;
}

.package-services p {
    color: white;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-align: left;
}

.package-price {
    margin-bottom: 2rem;
}

.original-price {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.package-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.package-card .btn {
    background: white;
    color: var(--coral-pink);
    border-color: white;
    width: 100%;
}

.package-card .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.services-cta {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.services-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--soft-gray);
    margin-bottom: 2rem;
}

.services-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.booking-notes {
    background: var(--background-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.booking-notes h3 {
    color: var(--coral-pink);
    margin-bottom: 1rem;
    text-align: center;
}

.booking-notes ul {
    list-style: none;
    padding-left: 0;
}

.booking-notes li {
    color: var(--soft-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.booking-notes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mint-green);
    font-weight: bold;
}

/* Services Mobile Responsive */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-info {
        width: 100%;
    }

    .service-info p {
        max-width: 100%;
    }

    .service-price {
        margin-left: 0;
        font-size: 1.8rem;
    }

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

    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-cta .btn {
        width: 100%;
        max-width: 250px;
    }

    .category-header {
        padding: 1.5rem 1rem;
    }

    .category-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: 1.5rem;
    }

    .package-card {
        padding: 2rem 1.5rem;
    }

    .package-price-amount {
        font-size: 2rem;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-gray) 0%, var(--cream) 100%);
    text-align: center;
}

.gallery-hero-content h1 {
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.gallery-filter {
    padding: 2rem 0;
    background: var(--warm-white);
    border-bottom: 1px solid rgba(189, 195, 199, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--charcoal);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--smooth-transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--coral-pink);
    border-color: var(--coral-pink);
    color: white;
}

.main-gallery {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--mint-green), var(--sage-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(152, 208, 200, 0.3);
    transition: var(--smooth-transition);
}

.gallery-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(152, 208, 200, 0.4);
}

.gallery-placeholder.before-after {
    background: linear-gradient(135deg, var(--golden-yellow), #F4D03F);
    box-shadow: 0 10px 30px rgba(247, 220, 111, 0.3);
}

.gallery-placeholder.before-after:hover {
    box-shadow: 0 20px 60px rgba(247, 220, 111, 0.4);
}

.placeholder-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.placeholder-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--coral-pink) 0%, #FF9999 100%);
    color: white;
}

.gallery-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.inspiration-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.inspiration-note h3 {
    color: white;
    margin-bottom: 1rem;
}

.inspiration-note p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.contact-methods {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--smooth-transition);
    border-top: 4px solid var(--mint-green);
}

.method-card.priority {
    border-top-color: var(--coral-pink);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.method-card h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.phone-link {
    font-size: 2rem;
    font-weight: 600;
    color: var(--coral-pink);
    text-decoration: none;
}

.phone-link:hover {
    opacity: 0.8;
}

.contact-detail {
    margin: 1.5rem 0;
}

.contact-detail address {
    font-style: normal;
    line-height: 1.6;
    color: var(--soft-gray);
}

.method-note {
    font-size: 0.9rem;
    color: var(--coral-pink);
    font-style: italic;
}

.direction-link,
.form-link {
    color: var(--coral-pink);
    font-weight: 500;
    text-decoration: none;
}

.direction-link:hover,
.form-link:hover {
    text-decoration: underline;
}

.contact-form-section {
    padding: var(--section-padding);
    background: var(--background-gray);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--smooth-transition);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral-pink);
    box-shadow: 0 0 0 3px rgba(255, 127, 127, 0.1);
}

.form-submit {
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    display: block;
}

.business-info {
    padding: var(--section-padding);
    background: var(--warm-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    color: var(--coral-pink);
    margin-bottom: 1.5rem;
}

.button-link {
    display: block;
    /* or inline-block, if needed */
    width: fit-content;
    /* optional: shrinks to fit content */
    margin: 0 auto;
}

.hours-list {
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(189, 195, 199, 0.1);
}

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

.day {
    font-weight: 500;
    color: var(--charcoal);
}

.time {
    color: var(--soft-gray);
}

.hours-note {
    font-size: 0.9rem;
    color: var(--coral-pink);
    font-style: italic;
}

.booking-info-list {
    list-style: none;
    padding-left: 0;
}

.booking-info-list li {
    margin-bottom: 0.5rem;
    color: var(--soft-gray);
}

.expect-item {
    margin-bottom: 1.5rem;
}

.expect-item:last-child {
    margin-bottom: 0;
}

.expect-item h4 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.expect-item p {
    color: var(--soft-gray);
    margin-bottom: 0;
}

.map-section {
    padding: var(--section-padding);
    background: var(--background-gray);
}

.map-section h2 {
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-info h3 {
    color: var(--coral-pink);
    margin-bottom: 1rem;
}

.map-info address {
    font-style: normal;
    color: var(--soft-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-details {
    margin: 2rem 0;
}

.location-details p {
    margin-bottom: 0.5rem;
    color: var(--soft-gray);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-gray), var(--background-gray));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--light-gray);
}

.map-content {
    text-align: center;
    color: var(--soft-gray);
    padding: 2rem;
}

.map-content h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.map-content a {
    color: var(--coral-pink);
    text-decoration: none;
}

.map-content a:hover {
    text-decoration: underline;
}

/* Hair Care Page Styles */
.hair-care-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--sage-green) 100%);
    text-align: center;
    color: white;
}

.hair-care-hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.hair-care-hero-content .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hair-care-hero-content .hero-description {
    color: rgba(255, 255, 255, 0.8);
}

.tips-navigation {
    padding: 2rem 0;
    background: var(--warm-white);
    border-bottom: 1px solid rgba(189, 195, 199, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tip-nav-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--charcoal);
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--smooth-transition);
}

.tip-nav-btn.active,
.tip-nav-btn:hover {
    background: var(--coral-pink);
    border-color: var(--coral-pink);
    color: white;
}

.tip-section {
    padding: var(--section-padding);
    border-bottom: 1px solid rgba(189, 195, 199, 0.1);
}

.tip-section:nth-child(even) {
    background: var(--background-gray);
}

.tip-section:nth-child(odd) {
    background: var(--warm-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--soft-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--smooth-transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tip-card h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.tip-card ul,
.tip-card ol {
    padding-left: 1.5rem;
}

.tip-card li {
    margin-bottom: 0.5rem;
    color: var(--soft-gray);
}

.color-timeline p {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-left: 3px solid var(--coral-pink);
    padding-left: 1rem;
    margin-left: 1rem;
}

.mistakes-list p {
    margin-bottom: 0.5rem;
    color: var(--soft-gray);
}

.product-guide {
    max-width: 1000px;
    margin: 0 auto;
}

.hair-type-guide {
    margin-bottom: 4rem;
}

.hair-type-guide h3 {
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.hair-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hair-type-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--coral-pink);
}

.hair-type-card:nth-child(2) {
    border-top-color: var(--mint-green);
}

.hair-type-card:nth-child(3) {
    border-top-color: var(--golden-yellow);
}

.hair-type-card h4 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.hair-type-card ul {
    padding-left: 1.5rem;
}

.hair-type-card li {
    margin-bottom: 0.5rem;
    color: var(--soft-gray);
}

.product-categories h3 {
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.category-card h4 {
    color: var(--coral-pink);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--soft-gray);
    margin-bottom: 0;
}

.advice-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--charcoal) 0%, #34495e 100%);
    color: white;
}

.advice-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.advice-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.advice-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.consultation-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-note h3 {
    color: white;
    margin-bottom: 1rem;
}

.consultation-note ul {
    list-style: none;
    padding-left: 0;
}

.consultation-note li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.consultation-note li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mint-green);
    font-weight: bold;
}

/* Payment Page */
.payment-page {
    background: var(--warm-white);
}

.payment-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(255, 127, 127, 0.12), rgba(152, 216, 200, 0.12));
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.payment-hero-content {
    max-width: 720px;
}

.payment-hero h1 {
    margin-bottom: 0.5rem;
}

.payment-hero .hero-subtitle {
    font-size: 1.15rem;
    color: var(--soft-gray);
    margin-bottom: 1.25rem;
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-details span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--soft-gray);
    font-size: 0.95rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--coral-pink);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.payment-section {
    padding: 60px 0 100px;
}

.payment-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.payment-card-header {
    margin-bottom: 1.5rem;
}

.payment-card-header p {
    color: var(--soft-gray);
    margin-bottom: 0;
}

.payment-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    padding-left: 2.5rem;
}

.input-prefix {
    position: absolute;
    left: 1rem;
    color: var(--soft-gray);
    font-weight: 600;
}

.helper-text {
    color: var(--soft-gray);
    font-size: 0.9rem;
    margin-top: 0.35rem;
}

.tip-section {
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 127, 127, 0.04), rgba(152, 216, 200, 0.05));
}

.tip-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tip-note {
    color: var(--soft-gray);
    margin: 0;
    text-align: right;
}

.tip-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tip-button {
    border: 1.5px solid var(--light-gray);
    background: white;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--smooth-transition);
}

.tip-button:hover {
    border-color: var(--coral-pink);
    box-shadow: 0 8px 24px rgba(255, 127, 127, 0.12);
}

.tip-button.active {
    background: linear-gradient(135deg, var(--coral-pink), #FF9999);
    color: white;
    border-color: var(--coral-pink);
    box-shadow: 0 10px 30px rgba(255, 127, 127, 0.25);
}

.custom-tip {
    margin-top: 0.5rem;
}

.is-hidden {
    display: none !important;
}

.total-display {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.total-line:last-child {
    margin-bottom: 0;
}

.total-highlight {
    font-weight: 700;
    color: var(--coral-pink);
}

.payment-methods {
    margin-top: 1.5rem;
}

.method-header p {
    color: var(--soft-gray);
    margin: 0 0 1rem;
}

.card-container {
    min-height: 120px;
    padding: 1rem;
    border: 1.5px dashed var(--light-gray);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.02);
}

.wallet-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.wallet-button {
    min-height: 48px;
}

.payment-actions {
    margin-top: 1.5rem;
}

.full-width {
    width: 100%;
}

.btn-loading {
    display: none;
}

.btn.is-loading .btn-label {
    display: none;
}

.btn.is-loading .btn-loading {
    display: inline-block;
}

.loading-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    color: var(--soft-gray);
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--coral-pink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.message {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 1px solid transparent;
}

.message.success {
    background: rgba(152, 216, 200, 0.12);
    border-color: rgba(152, 216, 200, 0.6);
}

.message.error {
    background: rgba(255, 127, 127, 0.12);
    border-color: rgba(255, 127, 127, 0.6);
}

.confirmation-details {
    margin: 1rem 0;
    display: grid;
    gap: 0.6rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.detail-row.total {
    color: var(--coral-pink);
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {

    .gallery-hero-content h1,
    .contact-hero-content h1,
    .hair-care-hero-content h1 {
        font-size: 2.5rem;
    }

    .filter-buttons,
    .nav-buttons {
        gap: 0.5rem;
    }

    .filter-btn,
    .tip-nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-placeholder {
        height: 300px;
    }

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

    .phone-link {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

    .map-placeholder {
        height: 250px;
    }

    .tips-navigation {
        position: static;
    }

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

    .hair-types,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .tip-header {
        flex-direction: column;
    }

    .hero-details {
        gap: 0.5rem;
    }

    .wallet-buttons {
        grid-template-columns: 1fr;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
a:focus,
.filter-btn:focus,
.tip-nav-btn:focus {
    outline: 2px solid var(--coral-pink);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Image Styles */
.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(152, 208, 200, 0.3);
    object-fit: cover;
}

.about-hero-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(247, 220, 111, 0.3);
    object-fit: cover;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.family-img {
    width: 100%;
    height: 500px;
    /* Taller to fit people comfortably */
    object-fit: cover;
    object-position: bottom;
    /* Keep the people at the bottom, crop the sky at the top */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--smooth-transition);
}

.family-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image {
        margin-top: 1rem;
    }
}