:root {
    --primary-color: #7a7e5d; /* Even more vivid olive */
    --primary-hover: #62664b;
    --accent-pink: #f06c8a; /* Punchy, vivid pink */
    --accent-pink-hover: #d95a76;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --bg-light: #fdfcfb;
    --bg-white: #ffffff;
    --bg-dark: #3a3930;
    --font-main: 'Outfit', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-accent {
    background-color: var(--accent-pink);
    color: white;
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: white;
}

/* Header */
header {
    background-color: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.logo span:first-child span {
    color: var(--accent-pink);
}

.logo span:last-child {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-pink);
}

.nav-links a.active {
    border-bottom: 2px solid var(--accent-pink);
    padding-bottom: 5px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    background: url('assets/hero_v2.jpg') no-repeat center 20%/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.1) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

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

.hero-content p {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 600;
    max-width: 500px;
}

.login-container {
    position: relative;
    z-index: 2;
    min-height: 480px; /* Prevent jumpy transitions */
}

.login-card.hidden {
    display: none;
}

.toggle-form {
    color: var(--accent-pink) !important;
    font-weight: 700 !important;
    cursor: pointer;
    display: inline !important;
}

.login-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.login-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.login-card hr {
    width: 30px;
    height: 3px;
    background: var(--accent-pink);
    border: none;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group i, 
.form-group svg {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.security p {
    color: #444;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.form-group i.toggle-password,
.form-group svg.toggle-password {
    left: auto;
    right: 22px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    pointer-events: auto;
    z-index: 11;
}

.form-group i.toggle-password:hover,
.form-group svg.toggle-password:hover {
    opacity: 1;
    color: var(--accent-pink);
}
.form-group input {
    width: 100%;
    padding: 18px 20px 18px 58px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 12px;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    color: #333;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    background: white;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 4px rgba(240, 108, 138, 0.1);
}

.login-card .btn {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    box-shadow: 0 4px 15px rgba(122, 126, 93, 0.3);
}

.login-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 126, 93, 0.4);
}

.login-card a {
    display: block;
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--accent-pink);
    font-weight: 600;
}

.login-card p {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.feature-text p {
    font-size: 0.85rem;
    color: #333; /* Darker for better visibility */
    font-weight: 500;
}

/* How it works */
.how-it-works {
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--accent-pink);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-item {
    position: relative;
}

.step-number {
    font-size: 5rem;
    font-weight: 700;
    color: #eeeeee;
    line-height: 1;
    margin-bottom: -30px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-white);
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid #eee;
}

.pricing-left {
    padding: 40px;
    border-right: 1px solid #eee;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
}

.pricing-header h3 span {
    color: var(--accent-pink);
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.benefits-list i {
    color: var(--primary-color);
}

.pricing-right {
    padding: 40px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.price-box p {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 10px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Security Section */
.security {
    background-color: var(--bg-dark);
    color: white;
}

.security .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: center;
}

.security-icon {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.security-content h2 span {
    color: var(--accent-pink);
}

.security-content p {
    font-size: 0.95rem;
    color: #ccc;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.badge-item i {
    color: var(--accent-pink);
}

/* Branches Section */
.branches-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.branch-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.branch-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.branch-item i {
    color: var(--accent-pink);
    margin-top: 5px;
}

.branch-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.branch-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.branch-hours {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.salon-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, #f9f8f6, #fff);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: url('assets/leaves-small.png') no-repeat center/contain;
    opacity: 0.3;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(211, 138, 149, 0.1);
    padding: 60px;
    border-radius: 8px;
}

.cta-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.cta-text h2 span {
    color: var(--accent-pink);
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .logo span:first-child {
    color: white;
}

.footer-logo p {
    font-size: 0.85rem;
    color: #888;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.social-links a:hover {
    color: white;
    border-color: white;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: #888;
}

.footer-links a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #888;
}

.contact-info i {
    color: var(--accent-pink);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Decorative Elements */
.brush-stroke {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    mix-blend-mode: multiply;
}

.brush-hero {
    top: 20%;
    right: -100px;
    width: 600px;
    transform: rotate(-15deg);
}

.brush-pricing {
    bottom: -50px;
    left: -100px;
    width: 500px;
    transform: rotate(10deg);
}

.brush-cta {
    top: -50px;
    right: -100px;
    width: 400px;
    transform: rotate(-20deg);
}

.leaves-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    width: 300px;
}

.leaves-bottom {
    bottom: -20px;
    left: -20px;
    transform: rotate(15deg);
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        margin: 0 auto 30px;
    }
    .login-card {
        max-width: 450px;
        margin: 0 auto;
    }
    .features-grid {
        display: none;
    }
    .pricing-card {
        grid-template-columns: 1fr;
    }
    .pricing-left {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .security .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .security-icon {
        margin: 0 auto;
    }
    .branches-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero {
        background-position: center center;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-flex {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 20px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .nav-links {
        display: none; /* Mobile menu can be added if needed, but for landing keep it simple */
    }
}
