/* =========================================
   VARIABLES & RESETS
========================================= */
:root {
    --bg-main: #0b0b0e;
    --bg-secondary: #0b0b0e;
    --bg-card: #141419;
    
    --gold-primary: #DDA729;
    --gold-light: #F5D64D;
    --gold-dark: #b58821;
    
    --red-accent: #8B0000;
    --red-hover: #B22222;
    
    --text-main: #F2F2F2;
    --text-muted: #A6A6A6;
    
    --font-heading: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-dark {
    background-color: var(--bg-secondary);
}

/* =========================================
   BUTTONS
========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: var(--bg-main);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(221, 167, 41, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(221, 167, 41, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.6);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--gold-primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background-color: var(--gold-primary);
    color: var(--bg-main);
}

/* =========================================
   FLOATING PILL NAVIGATION
========================================= */
.pill-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: max-content;
    max-width: 90vw;
    transition: var(--transition);
}

.pill-container {
    display: flex;
    align-items: center;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 50px;
    padding: 8px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    gap: 16px;
}

.pill-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.pill-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
}

.pill-navbar {
    display: flex;
    align-items: center;
}

.pill-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pill-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}

.pill-link:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.pill-link.active {
    color: var(--bg-main);
    background-color: var(--gold-primary);
}

.pill-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(221, 167, 41, 0.1);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(221, 167, 41, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.pill-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: var(--bg-main);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(221, 167, 41, 0.4);
    transform: translateY(-2px);
}

.pill-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
}

.pill-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../img/bg.png') center/cover no-repeat;
    padding-top: 80px; /* header offset */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    margin-left: 0; 
    text-align: left;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.hero-divider {
    margin-top: 1rem;
    height: 1px;
    width: 4rem;
    background-color: var(--gold-primary);
}

.hero-title {
    font-family: var(--font-heading);
    margin-top: 2rem;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.hero-description {
    margin-top: 1.5rem;
    max-width: 28rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--text-muted);
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.hero-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-link .arrow {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-link:hover .arrow {
    transform: translateX(5px);
    color: var(--gold-primary);
}



/* =========================================
   ABOUT SECTION
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.icon-bg {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 150px;
    opacity: 0.1;
    z-index: 0;
}

.about-img-placeholder {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 15px;
}

.about-img-placeholder img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(100%) contrast(1.2);
    transition: var(--transition);
}

.about-img-placeholder:hover img {
    filter: grayscale(0%);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.red-diamond {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--red-accent);
    transform: rotate(45deg);
}

.about-list strong {
    color: var(--gold-primary);
    font-weight: 600;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-price {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    background-color: rgba(139, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid var(--red-accent);
}

/* =========================================
   SPECIALISTS SECTION
========================================= */
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.specialist-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.specialist-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.specialist-img {
    height: 350px;
    overflow: hidden;
}

.specialist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: var(--transition);
}

.specialist-card:hover .specialist-img img {
    filter: grayscale(0%) scale(1.05);
}

.specialist-info {
    padding: 25px;
    text-align: center;
    border-bottom: 3px solid var(--red-accent);
}

.specialist-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.specialist-info .specialty {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: #050505;
    padding-top: 80px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h3, .footer-contact h3 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   MEDIA QUERIES
========================================= */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pill-navbar {
        position: fixed;
        top: 80px;
        left: 5%;
        width: 90%;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(197, 160, 89, 0.2);
        border-radius: 20px;
        padding: 20px;
        flex-direction: column;
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }

    .pill-navbar.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .pill-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .pill-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .pill-menu-toggle {
        display: flex;
    }

    .pill-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .pill-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .pill-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
}

/* =========================================
   INTERACTIVE HOVER BUTTON
========================================= */
.btn-interactive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: var(--bg-main);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(221, 167, 41, 0.3);
}

.btn-interactive:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(221, 167, 41, 0.4);
}

/* =========================================
   LOGIN PAGE
========================================= */
.login-page {
    background-color: var(--bg-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.login-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.login-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.login-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.login-logo-wrap img {
    width: 24px;
    height: auto;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--font-heading);
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.input-group input {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.875rem;
    font-family: var(--font-body);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.login-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.action-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.btn-signin {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: var(--bg-main);
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(221, 167, 41, 0.3);
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(221, 167, 41, 0.4);
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to bottom, #232526, #2d2e30);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: filter 0.2s ease;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-google img {
    width: 20px;
    height: 20px;
}

.btn-google:hover {
    filter: brightness(1.1);
}

.login-footer {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.login-footer span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.login-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.login-footer a:hover {
    color: #ffffff;
}

.login-social-proof {
    position: relative;
    z-index: 10;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-social-proof p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.login-social-proof p span {
    font-weight: 500;
    color: #ffffff;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #181824;
    object-fit: cover;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

/* =========================================
   SPLIT LAYOUT (REGISTER)
========================================= */
.split-page {
    background-color: var(--bg-main);
    color: var(--text-main);
    height: 100vh;
    display: flex;
    font-family: var(--font-body);
    overflow: hidden;
}

.split-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Left Side: Form */
.split-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: var(--bg-main);
}

.split-form-container {
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.split-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.split-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.split-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus {
    border-color: var(--gold-primary);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Password eye icon wrapper */
.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    padding-right: 3rem;
}

.password-input .eye-icon {
    position: absolute;
    right: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.2s;
}

.password-input .eye-icon:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Checkbox styling */
.split-options {
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.checkbox-container input:checked ~ .checkmark:after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #121212;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.btn-split-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: var(--bg-main);
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0.85rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-split-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(221, 167, 41, 0.4);
}

.split-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.split-divider::before,
.split-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.split-divider span {
    padding: 0 10px;
}

.btn-split-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-split-google:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-split-google img {
    width: 20px;
    height: 20px;
}

.split-footer-text {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.split-footer-text a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.split-footer-text a:hover {
    color: var(--gold-light);
}

/* Right Side: Image */
.split-right {
    flex: 1;
    display: flex;
    padding: 1.5rem;
    padding-left: 0;
}

.split-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.split-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial Glass Card */
.split-testimonial {
    position: absolute;
    bottom: 40px;
    right: 40px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.testimonial-header span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.split-testimonial p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   DASHBOARD LAYOUT (SIDEBAR)
========================================= */
.dashboard-body {
    background-color: var(--bg-main);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    height: 100vh;
    overflow: hidden;
}

.dashboard-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Sidebar */
.sidebar {
    width: 76px; /* Collapsed by default */
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    margin: 1rem;
    height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 0;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.sidebar:hover {
    width: 250px; /* Expands on hover */
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.12);
}

.sidebar-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-close {
    display: none; /* Only for mobile */
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.logo-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: #E5C378;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.2s;
}

.sidebar:hover .logo-text {
    opacity: 1;
    transition-delay: 0.1s;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 0.75rem;
    margin: 0 0.5rem;
    border-radius: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.sidebar-link svg {
    flex-shrink: 0;
    min-width: 20px;
}

.sidebar-link:hover {
    color: #fff;
    background-color: rgba(255,255,255,0.05);
}

.sidebar-link.active {
    color: #E5C378;
    background-color: rgba(229, 195, 120, 0.08);
}

.sidebar-link.active svg {
    color: #E5C378;
}

.link-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.sidebar:hover .link-text {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-link:hover .link-text {
    transform: translateX(4px);
}

/* Sidebar Bottom */
.sidebar-bottom {
    padding: 0 1.25rem;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 0.5rem;
    margin-left: -0.5rem;
    border-radius: 12px;
    transition: background 0.2s;
}

.sidebar:hover .sidebar-profile:hover {
    background: rgba(255,255,255,0.03);
}

.sidebar-profile img {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid rgba(229, 195, 120, 0.5);
}

.profile-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}

.sidebar:hover .profile-name {
    opacity: 1;
    transition-delay: 0.1s;
}

/* Mobile Header */
.mobile-header {
    display: none;
}

.sidebar-overlay {
    display: none;
}

/* Main Content */
.dashboard-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    background-color: #0A0A0A;
}

.dashboard-content-box {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Skeleton Dummy Content */
.skeleton-grid-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.skeleton-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    flex: 1;
}

.skeleton-card {
    background-color: rgba(255,255,255,0.03);
    border-radius: 12px;
    height: 80px;
    width: 100%;
}

.skeleton-card-large {
    background-color: rgba(255,255,255,0.03);
    border-radius: 12px;
    min-height: 200px;
    width: 100%;
    height: 100%;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* VIP Profile Base */
.vip-profile-hub {
    background-color: #0a0a0a;
    min-height: 100vh;
    padding: 2.5rem;
    font-family: var(--font-body);
    width: 100%;
}

.vip-container {
    max-width: 1100px;
    margin: 0 auto;
}

.vip-header {
    margin-bottom: 2rem;
}

.vip-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.vip-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin: 0;
}

.vip-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.vip-alert-error {
    background: rgba(255,50,50,0.1);
    border-color: rgba(255,50,50,0.2);
    color: #ff5555;
}

.vip-alert-success {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
    color: #D4AF37;
}

/* Grid Layout */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

/* Glass Panels */
.glass-panel {
    background-color: #121212;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.7);
    border-color: rgba(255,255,255,0.08);
}

.glass-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Panel Assignments */
.identity-card { grid-column: span 12; }
.data-card { grid-column: span 7; }
.tech-card { grid-column: span 5; }
.security-notif-wrapper {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}
.security-card { grid-column: span 6; }
.notif-card { grid-column: span 6; }
.vip-actions {
    grid-column: span 12;
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* A. Identity Card */
.identity-top {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.avatar-upload-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.avatar-circle-wrapper {
    position: relative;
}

.avatar-circle.gold-border {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #222, #111);
    border: 3px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    font-family: var(--font-heading);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.avatar-circle.gold-border.dashed {
    border-style: dashed;
    border-color: rgba(212, 175, 55, 0.4);
}

.avatar-circle.gold-border.dashed:hover {
    border-color: rgba(212, 175, 55, 0.8);
}

.avatar-circle.gold-border.drag-over {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    border-style: solid;
}

.avatar-circle.gold-border.has-image {
    border-style: solid;
    border-color: #D4AF37;
}

.avatar-remove-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #111;
    color: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.avatar-remove-btn:hover {
    background: #333;
}

.avatar-instructions {
    text-align: center;
}

.avatar-status {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.avatar-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.avatar-error {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid var(--red-accent);
    color: #ffb3b3;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
}

.identity-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.badge-gold {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: #D4AF37;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(212,175,55,0.3);
}

.identity-metrics {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Linear Inputs */
.vip-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.linear-field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.linear-field label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}

.linear-field input, .linear-field textarea, .vip-select {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: background 0.3s;
    border-radius: 6px 6px 0 0;
}

.linear-field input:focus, .linear-field textarea:focus, .vip-select:focus {
    outline: none;
    background: rgba(255,255,255,0.04);
}

.linear-focus {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease, left 0.3s ease;
}

.linear-field input:focus ~ .linear-focus, 
.linear-field textarea:focus ~ .linear-focus,
.custom-select-wrapper:focus-within .linear-focus {
    width: 100%;
    left: 0;
}

.linear-field textarea {
    resize: vertical;
}

/* C. Ficha Técnica - Chips */
.tech-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: -1rem 0 1.5rem 0;
}

.tech-section label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 0.8rem;
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.chip {
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip:hover {
    background: rgba(255,255,255,0.08);
}

.chip.active {
    background: rgba(212,175,55,0.1);
    border-color: #D4AF37;
    color: #D4AF37;
    font-weight: 600;
}

.vip-select {
    appearance: none;
    cursor: pointer;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    pointer-events: none;
}

.vip-select option {
    background-color: #121212;
    color: #fff;
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Security & Toggles */
.password-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    display: flex;
}

.toggle-password:hover {
    color: #fff;
}

.whatsapp-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(37,211,102,0.05);
    border: 1px solid rgba(37,211,102,0.15);
    border-radius: 12px;
}

.wa-icon {
    color: #25D366;
}

.wa-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wa-text strong {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.wa-text span {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.notif-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notif-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notif-info {
    display: flex;
    flex-direction: column;
}

.notif-info strong {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.notif-info span {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* iOS Style Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: .4s;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #D4AF37;
}

input:focus + .slider {
    box-shadow: 0 0 1px #D4AF37;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Submit Button */
.btn-vip-save {
    background: #fff;
    color: #0a0a0a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.btn-vip-save:hover {
    background: #D4AF37;
    box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.btn-loading .btn-icon svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.form-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.btn-premium-save {
    background: transparent;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-premium-save:hover {
    background: var(--gold-primary);
    color: #0A0A0A;
    box-shadow: 0 0 20px rgba(221, 167, 41, 0.4);
}/* =========================================
   BOOKING WIZARD
========================================= */
.booking-wizard {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem;
    font-family: var(--font-body);
}

.wizard-header {
    margin-bottom: 2rem;
}

.wizard-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--font-heading);
}

.progress-container {
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.progress-steps {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.step-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: all 0.4s ease;
}

.step-indicator.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
}

.wizard-step {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    padding: 0;
    transition: color 0.2s;
}

.btn-back:hover {
    color: #fff;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media(min-width: 600px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    border-color: rgba(229, 195, 120, 0.4);
    transform: translateY(-2px);
}

.service-card.selected {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 1px var(--gold-primary), 0 10px 30px -10px rgba(229, 195, 120, 0.2);
}

.sc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.sc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.sc-badge {
    background: rgba(229, 195, 120, 0.1);
    color: var(--gold-primary);
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.sc-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.sc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.sc-duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sc-price {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

/* Professionals */
.prof-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prof-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prof-card:hover {
    border-color: rgba(229, 195, 120, 0.4);
    background: rgba(255,255,255,0.02);
}

.prof-card.selected {
    border-color: var(--gold-primary);
}

.prof-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.prof-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prof-info {
    flex: 1;
}

.prof-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.prof-role {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.prof-any {
    border: 1px dashed rgba(229, 195, 120, 0.5);
    background: rgba(229, 195, 120, 0.05);
}

/* Date and Time */
.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.dates-carousel {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
    margin-bottom: 1.5rem;
}

.dates-carousel::-webkit-scrollbar {
    display: none;
}

.date-card {
    min-width: 65px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.date-card:hover {
    border-color: rgba(229, 195, 120, 0.4);
}

.date-card.selected {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
}

.dc-weekday {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    color: inherit;
    opacity: 0.7;
}

.dc-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: inherit;
}

.date-card:not(.selected) .dc-weekday { color: rgba(255,255,255,0.6); }
.date-card:not(.selected) .dc-day { color: #fff; }

.time-period {
    margin-bottom: 1.5rem;
}

.tp-title {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
}

.time-slot {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 0.75rem 0;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.time-slot:hover:not(.unavailable) {
    border-color: var(--gold-primary);
    background: rgba(229, 195, 120, 0.1);
}

.time-slot.selected {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.time-slot.unavailable {
    opacity: 0.3;
    text-decoration: line-through;
    cursor: not-allowed;
    background: transparent;
}

/* Checkout VIP */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .checkout-grid { grid-template-columns: 1fr 1fr; }
}

.checkout-form .form-group {
    margin-bottom: 1.25rem;
}

.vip-ticket {
    background: var(--bg-card);
    border: 1px dashed rgba(229, 195, 120, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
}

.vip-ticket::before, .vip-ticket::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--bg-main);
    border-radius: 50%;
    top: -10px;
}
.vip-ticket::before { left: 20px; }
.vip-ticket::after { right: 20px; }

.ticket-header {
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.ticket-header h3 {
    font-size: 1.1rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-body .t-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.t-label { color: rgba(255,255,255,0.6); }
.t-value { color: #fff; font-weight: 500; text-align: right; max-width: 60%; }

.t-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 1rem 0;
}

.t-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    align-items: center;
}

.t-price {
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.btn-confirm-booking {
    width: 100%;
    background: var(--gold-primary);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-confirm-booking:hover {
    background: #f0cc7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 195, 120, 0.3);
}

/* Success Screen */
.success-container {
    text-align: center;
    padding: 3rem 1rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
}

.checkmark {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--gold-primary);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--gold-primary);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--gold-primary);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes scale { 0%, 100% { transform: none; } 50% { transform: scale3d(1.1, 1.1, 1); } }
@keyframes fill { 100% { box-shadow: inset 0px 0px 0px 30px rgba(229, 195, 120, 0.1); } }

.success-title {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.success-message {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.btn-home {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.btn-home:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    /* Dashboard Mobile */
    .dashboard-wrapper {
        flex-direction: column;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        background-color: #121212;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-heading);
        color: var(--gold-primary);
        font-weight: 700;
    }

    .mobile-logo img {
        height: 24px;
    }

    .mobile-menu-btn {
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        display: flex;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 300px;
        transition: left 0.3s ease;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar:hover {
        width: 300px;
    }

    .sidebar-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #fff;
        cursor: pointer;
    }

    .logo-text, .link-text, .profile-name {
        opacity: 1;
        transform: translateX(0);
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
        z-index: 90;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .sidebar-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: all;
    }

    .dashboard-main {
        padding: 1rem;
    }
    
    .dashboard-content-box {
        padding: 1.5rem;
        min-height: calc(100vh - 8rem);
    }

    .skeleton-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .skeleton-grid-bottom {
        grid-template-columns: 1fr;
    }

    /* Split Register Page Mobile */
    .split-page {
        height: auto;
        min-height: 100vh;
        overflow: auto;
    }

    .form-row {
        flex-direction: column;
        gap: 1.25rem;
    }

    .vip-grid { display: flex; flex-direction: column; }
    .security-notif-wrapper { display: flex; flex-direction: column; }
    .vip-form-grid { grid-template-columns: 1fr; }
    .identity-top { flex-direction: column; text-align: center; }
    .identity-metrics { justify-content: center; flex-wrap: wrap; }
    .vip-profile-hub { padding: 1.5rem 1rem; }

    .settings-main {
        padding: 1.5rem;
    }

    .split-layout {
        flex-direction: column;
    }
    
    .split-right {
        display: none;
    }
    
    .split-left {
        padding: 2rem 1.5rem;
    }
}

/* =========================================
   ROYAL BUTTON (TAILWIND REPLICA)
======================================== */
.btn-royal {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    background: linear-gradient(to bottom right, #fbbf24, #f59e0b, #d97706);
    color: #000;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    overflow: hidden;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-royal:hover {
    background: linear-gradient(to bottom right, #eab308, #d97706, #b45309);
    transform: rotate(1deg);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.7);
}

.btn-royal:active {
    transform: scale(0.9);
}

.btn-royal::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid rgba(251, 191, 36, 0.5);
    transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
    pointer-events: none;
}

.btn-royal:hover::before {
    border-color: #fcd34d;
    transform: scale(1.05);
}

.btn-royal-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
}

.btn-royal-arrow {
    transition: transform 0.5s;
    width: 16px;
    height: 16px;
}

.btn-royal:hover .btn-royal-arrow {
    transform: translateX(8px);
}

.btn-royal-bg {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    opacity: 0.5;
    transition: opacity 0.3s;
    background: linear-gradient(to top left, rgba(253, 230, 138, 0.4), transparent, transparent);
    pointer-events: none;
}

.btn-royal:hover .btn-royal-bg {
    opacity: 0.8;
}

.btn-royal-glare {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transition: transform 0.7s ease-out;
    pointer-events: none;
}

.btn-royal:hover .btn-royal-glare {
    transform: translateX(200%);
}

