/* FEMININE LUXURY DESIGN SYSTEM FOR VELVET VIP CONCIERGE (LARA YAŞAR) */
:root {
    --bg-main: #0c0910;
    --bg-darker: #060408;
    --bg-card: rgba(26, 18, 28, 0.75);
    --bg-card-border: rgba(232, 165, 152, 0.25);
    
    --rosegold-primary: #e8a598;
    --rosegold-light: #f9dcd6;
    --rosegold-dark: #b86b7d;
    --rosegold-gradient: linear-gradient(135deg, #f7d6d0 0%, #e8a598 35%, #d98f7e 70%, #b86b7d 100%);
    --rosegold-glow: rgba(232, 165, 152, 0.35);

    --text-main: #fbf5f4;
    --text-muted: #bfaab1;
    --text-rosegold: #f4c2c2;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    line-height: 1.65;
    background: radial-gradient(circle at 50% 0%, #1e1224 0%, #0c0910 75%);
    min-height: 100vh;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(12, 9, 16, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bg-card-border);
    padding: 18px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 24px;
    color: var(--rosegold-primary);
    filter: drop-shadow(0 0 10px var(--rosegold-glow));
}

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

.brand-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    background: var(--rosegold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    margin-right: 10px;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    opacity: 0.85;
}

.nav-link:hover {
    color: var(--rosegold-primary);
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.currency-selector-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(232, 165, 152, 0.35);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.currency-selector-box i.rosegold {
    color: var(--rosegold-primary);
    font-size: 12px;
}

.currency-selector-box select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
}

.currency-selector-box select option {
    background: #160f1b;
    color: #fff;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 165, 152, 0.1);
    border: 1px solid rgba(232, 165, 152, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--rosegold-primary);
    border-radius: 50%;
}

.status-dot.pulsing {
    box-shadow: 0 0 0 0 rgba(232, 165, 152, 0.7);
    animation: pulseRose 1.8s infinite;
}

@keyframes pulseRose {
    0% { box-shadow: 0 0 0 0 rgba(232, 165, 152, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(232, 165, 152, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 165, 152, 0); }
}

.status-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--rosegold-primary);
}

/* BUTTONS */
.btn-rosegold {
    background: var(--rosegold-gradient);
    color: #0c0910;
    font-weight: 700;
    border: none;
    padding: 12px 26px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(232, 165, 152, 0.3);
    text-decoration: none;
}

.btn-rosegold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 165, 152, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--rosegold-primary);
    border: 1px solid var(--rosegold-primary);
    padding: 12px 26px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(232, 165, 152, 0.12);
    color: #fff;
    border-color: var(--rosegold-light);
}

.btn-large {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: 30px;
}

.btn-full {
    width: 100%;
}

/* LIVE TICKER */
.live-ticker {
    background: rgba(232, 165, 152, 0.08);
    border-bottom: 1px solid rgba(232, 165, 152, 0.15);
    padding: 8px 0;
    font-size: 12px;
}

.ticker-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.badge-vip {
    background: var(--rosegold-gradient);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 90px 0 70px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--rosegold-primary);
    background: rgba(232, 165, 152, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(232, 165, 152, 0.3);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.rosegold-gradient-text {
    background: var(--rosegold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--rosegold-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* HERO PROFILE CARD */
.hero-profile-card {
    position: relative;
}

.profile-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(232, 165, 152, 0.2);
}

.profile-badge-top {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(12, 9, 16, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--rosegold-primary);
    color: var(--rosegold-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.profile-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: var(--transition);
}

.profile-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 24px 24px 24px;
    background: linear-gradient(0deg, #0c0910 0%, rgba(12,9,16,0.92) 65%, rgba(12,9,16,0) 100%);
}

.profile-overlay-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #fff;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 13px;
    color: var(--rosegold-primary);
    margin-bottom: 14px;
}

.profile-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(232, 165, 152, 0.12);
    backdrop-filter: blur(5px);
    color: var(--text-main);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(232, 165, 152, 0.2);
}

/* SECTION COMMONS */
.section-padding {
    padding: 90px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-header {
    margin-bottom: 60px;
}

.sub-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--rosegold-primary);
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
}

.rosegold-divider {
    height: 3px;
    width: 60px;
    background: var(--rosegold-gradient);
    margin-top: 16px;
    border-radius: 2px;
}

.rosegold-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* ABOUT / FEATURES GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: var(--rosegold-primary);
    box-shadow: 0 10px 30px rgba(232, 165, 152, 0.2);
}

.icon-box {
    width: 54px;
    height: 54px;
    background: rgba(232, 165, 152, 0.1);
    border: 1px solid var(--rosegold-primary);
    color: var(--rosegold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* PACKAGES GRID */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pkg-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.pkg-card.popular {
    border: 2px solid var(--rosegold-primary);
    background: linear-gradient(180deg, rgba(38, 24, 38, 0.9) 0%, rgba(14, 10, 18, 0.9) 100%);
    box-shadow: 0 10px 40px rgba(232, 165, 152, 0.25);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rosegold-gradient);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pkg-duration {
    font-size: 11px;
    font-weight: 700;
    color: var(--rosegold-primary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.pkg-name {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
}

.pkg-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 40px;
}

.pkg-price-box {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.currency-symbol {
    font-size: 20px;
    font-weight: 700;
    color: var(--rosegold-primary);
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: #fff;
}

.price-period {
    font-size: 12px;
    color: var(--text-muted);
}

.pkg-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pkg-features li {
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-features li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}

.pkg-features i.rosegold {
    color: var(--rosegold-primary);
}

/* ADDONS GRID */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.addon-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.addon-item:hover {
    border-color: var(--rosegold-primary);
    background: rgba(232, 165, 152, 0.08);
}

.addon-item.selected {
    border: 2px solid var(--rosegold-primary);
    background: rgba(232, 165, 152, 0.15);
}

.addon-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: var(--transition);
}

.addon-item.selected .addon-checkbox {
    background: var(--rosegold-primary);
    border-color: var(--rosegold-primary);
    color: #000;
}

.addon-info {
    flex-grow: 1;
}

.addon-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.addon-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.addon-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--rosegold-primary);
    white-space: nowrap;
}

/* REVIEWS GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    padding: 30px;
}

.stars {
    color: var(--rosegold-primary);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 14px;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 24px;
    line-height: 1.7;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    background: var(--rosegold-gradient);
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.reviewer-info h5 {
    font-size: 14px;
    font-weight: 700;
}

.reviewer-tag {
    font-size: 11px;
    color: var(--text-muted);
}

/* FAQ ACCORDION */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    display: none;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FOOTER */
.footer {
    background: #040306;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 20px 0;
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--rosegold-primary);
    font-size: 17px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--rosegold-primary);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
    color: var(--text-muted);
}

/* MODAL BACKDROP & BOX */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
}

.modal-box {
    background: #110d17;
    border: 1px solid var(--rosegold-primary);
    box-shadow: 0 25px 60px rgba(0,0,0,0.9), 0 0 40px rgba(232, 165, 152, 0.25);
    width: 100%;
    max-width: 540px;
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: #fff;
}

.modal-header {
    margin-bottom: 24px;
    text-align: center;
}

.rosegold-badge {
    background: rgba(232, 165, 152, 0.15);
    border: 1px solid var(--rosegold-primary);
    color: var(--rosegold-primary);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--rosegold-primary);
    box-shadow: 0 0 10px rgba(232, 165, 152, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.summary-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(232, 165, 152, 0.35);
    border-radius: 14px;
    padding: 18px;
    margin: 20px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.summary-row.total {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    margin-bottom: 0;
}

/* RECEIPT MODAL TICKET */
.success-icon {
    font-size: 54px;
    color: var(--rosegold-primary);
    margin-bottom: 12px;
}

.receipt-ticket {
    background: #181120;
    border: 1px solid var(--rosegold-primary);
    border-radius: 14px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

.ticket-row span {
    color: var(--text-muted);
}

.ticket-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 14px 0;
}

.receipt-note {
    font-size: 11px;
    color: var(--rosegold-light);
    margin-bottom: 20px;
}

/* REALISTIC TOAST NOTIFICATION */
.toast-card {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 18, 28, 0.95);
    border: 1px solid var(--rosegold-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-card.show {
    transform: translateY(0);
}

.toast-icon {
    width: 36px;
    height: 36px;
    background: rgba(232, 165, 152, 0.2);
    color: var(--rosegold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.toast-body strong {
    display: block;
    font-size: 12px;
    color: var(--rosegold-primary);
}

.toast-body p {
    font-size: 12px;
    color: var(--text-main);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 36px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none;
    }
    .navbar {
        top: 0;
    }
}
