/* style.css - DubaiSugarDaddy.com Premium Luxury Theme */

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
    --bg-primary: #070708;
    --bg-secondary: #0e0e10;
    --bg-card: rgba(18, 18, 20, 0.6);
    --bg-glass: rgba(7, 7, 8, 0.75);
    
    /* Gilded Hues - Champagne & Metallic Gold */
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #b89025;
    --gold-accent: #e6c56c;
    --gold-gradient: linear-gradient(135deg, #b89025 0%, #e6c56c 50%, #8c6b12 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);
    --gold-border: rgba(212, 175, 55, 0.12);
    --gold-border-hover: rgba(212, 175, 55, 0.45);
    
    /* Neutral text colors */
    --text-primary: #ffffff;
    --text-secondary: #a7a7b0;
    --text-muted: #5f5f67;
    
    /* Shadows & Transitions */
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.08);
    --shadow-gold-hover: 0 12px 40px rgba(212, 175, 55, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --header-height: 80px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

li {
    list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

/* ==========================================================================
   Utility Classes & Headings
   ========================================================================== */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: 70px;
    border-bottom: 1px solid var(--gold-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-dot {
    color: var(--gold-primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.btn-login:hover {
    color: var(--gold-primary);
}

.btn-cta {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 4px;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    background-color: #030304;
    overflow: hidden;
    padding: 0 24px 30vh 24px;
}

/* Hero Banner Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/dubai-sugar-daddy-banner.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Landing Page Hero Background Overrides */
.hero-section.hero-dubai-baby::before {
    background-image: url('assets/dubai-sugar-baby-banner.webp');
}
.hero-section.hero-abu-dhabi::before {
    background-image: url('assets/sugar-daddy-abu-dhabi-banner.webp');
}
.hero-section.hero-chat::before {
    background-image: url('assets/sugar-daddy-chat-banner.webp');
}
.hero-section.hero-doha::before {
    background-image: url('assets/sugar-daddy-doha-banner.webp');
}
.hero-section.hero-jeddah::before {
    background-image: url('assets/sugar-daddy-jeddah-banner.webp');
}
.hero-section.hero-sharjah::before {
    background-image: url('assets/sugar-daddy-sharjah-banner.webp');
}
.hero-section.hero-uae::before {
    background-image: url('assets/sugar-daddy-uae-banner.webp');
}
.hero-section.hero-mummy::before {
    background-image: url('assets/sugar-mummy-dubai-banner.webp');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    background-image: radial-gradient(circle, transparent 20%, #070708 80%);
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 850px;
    z-index: 3;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff 40%, #e6c56c 80%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 6s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

.btn-hero-cta {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    background: var(--gold-gradient);
    padding: 18px 45px;
    border-radius: 4px;
    box-shadow: 0 10px 30px var(--gold-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

.btn-hero-cta:hover::before {
    left: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    z-index: 3;
}

.mouse-icon {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

/* ==========================================================================
   Values Section
   ========================================================================== */
.values-section {
    background-color: var(--bg-secondary);
}

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

.value-card {
    background-color: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 50px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border-hover);
    box-shadow: var(--shadow-gold-hover);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 24px;
    display: inline-block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Locations Section
   ========================================================================== */
.locations-section {
    background-color: var(--bg-primary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

.location-card {
    height: 380px;
    border-radius: 6px;
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: flex-end;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.location-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    z-index: 0;
}

.location-card:hover .location-card-img {
    transform: scale(1.05);
}

/* Linear gradient overlay for location card text contrast */
.location-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

/* Simulated dynamic card glow */
.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.05);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-border-hover);
    box-shadow: var(--shadow-gold-hover);
}

.location-card:hover::before {
    opacity: 1;
}

.location-info {
    position: relative;
    z-index: 3;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.location-card:hover .location-info {
    transform: translateY(0);
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.location-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    display: block;
    opacity: 0;
    transition: var(--transition-smooth);
}

.location-card:hover .location-tag {
    opacity: 1;
}

/* ==========================================================================
   Standards Section
   ========================================================================== */
.standards-section {
    background-color: var(--bg-primary);
    padding-bottom: 50px;
}

.standards-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 80px 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-gold);
}

.standards-box::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(212, 175, 55, 0.03);
    border-radius: 16px;
    pointer-events: none;
}

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

.standards-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    background-color: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
}

.badge-item i {
    color: var(--gold-primary);
}

/* ==========================================================================
   Roles Section (Portals)
   ========================================================================== */
.roles-section {
    background-color: var(--bg-secondary);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.role-card {
    background-color: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.role-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-border-hover);
    box-shadow: var(--shadow-gold-hover);
}

.role-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.role-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.role-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    min-height: 50px;
}

.role-btn {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.role-btn i {
    transition: transform 0.3s;
}

.role-card:hover .role-btn i {
    transform: translateX(5px);
}

/* ==========================================================================
   Showcase Section
   ========================================================================== */
.showcase-section {
    background-color: var(--bg-primary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.profile-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.profile-card:hover {
    border-color: var(--gold-border-hover);
    box-shadow: var(--shadow-gold-hover);
}

.profile-avatar-wrapper {
    height: 250px;
    position: relative;
    background-color: #1a1a1c;
    overflow: hidden;
}

/* Blurry private avatar fallback */
.avatar-blur {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 0.45;
}

/* Simulated private placeholder style */
.profile-avatar-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: 'FontAwesome';
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--gold-primary);
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.95rem;
    background-color: rgba(7, 7, 8, 0.6);
    z-index: 2;
}

.avatar-overlay i {
    font-size: 1.8rem;
}

.profile-details {
    padding: 24px;
}

.profile-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.profile-name-row h4 {
    font-size: 1.15rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
}

.profile-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.activity-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.showcase-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 4px;
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background-color: var(--bg-secondary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    background-color: var(--bg-card);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--gold-border-hover);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--gold-primary);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--gold-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #030304;
    border-top: 1px solid var(--gold-border);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 15px;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* ==========================================================================
   Interactive PWA Installation Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.pwa-modal-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    width: 460px;
    max-width: 90vw;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .pwa-modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
}

.modal-close:hover {
    color: var(--text-primary);
}

.pwa-step {
    text-align: center;
    transition: opacity 0.4s ease;
}

.pwa-step.hidden {
    display: none;
}

.pwa-logo-wrapper {
    display: inline-block;
    margin-bottom: 24px;
}

.pwa-icon-mockup {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--gold-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: #000000;
    box-shadow: 0 8px 25px var(--gold-glow);
}

.pwa-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.pwa-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.device-mockup {
    background-color: #1a1a1c;
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 30px;
}

.pwa-install-anim {
    position: relative;
}

.mock-browser-bar {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0e0e10;
    padding: 8px 12px;
    border-radius: 4px;
}

.arrow-pointing-down {
    margin-top: 15px;
    font-size: 1.5rem;
    color: var(--gold-primary);
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    to { transform: translateY(8px); }
}

.btn-pwa-next, .btn-pwa-close {
    background: var(--gold-gradient);
    color: #000000;
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-pwa-next:hover, .btn-pwa-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Biometric Demonstration (Step 2) */
.biometric-icon-wrapper {
    font-size: 5rem;
    color: var(--gold-primary);
    margin: 30px 0;
    position: relative;
    display: inline-block;
}

.scanner-anim {
    animation: scannerPulse 1.5s infinite alternate;
}

@keyframes scannerPulse {
    0% { transform: scale(0.95); opacity: 0.8; text-shadow: 0 0 10px rgba(212,175,55,0.2); }
    100% { transform: scale(1.05); opacity: 1; text-shadow: 0 0 30px rgba(212,175,55,0.7); }
}

.sim-progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.sim-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 2.5s ease-in-out;
}

.sim-status-text {
    font-size: 0.85rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

/* Success Step (Step 3) */
.success-icon-wrapper {
    font-size: 5rem;
    color: #2ecc71;
    margin: 30px 0;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(7, 7, 8, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 100px 24px 40px 24px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        z-index: 999;
        pointer-events: none;
        overflow-y: auto;
        border-bottom: 1px solid var(--gold-border);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu .nav-link {
        font-size: 1.25rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        padding-bottom: 14px;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link:hover {
        color: var(--gold-primary);
        letter-spacing: 2px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid, .locations-grid, .roles-grid, .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .standards-box {
        padding: 50px 30px;
    }
    
    .badge-row {
        gap: 15px;
    }
}

/* ==========================================================================
   Content Wrapper & Markdown Compiled Styles
   ========================================================================== */
.content-wrapper {
    background-color: var(--bg-primary);
    padding-top: var(--header-height);
    min-height: 100vh;
}

.content-box {
    max-width: 800px;
    margin: 40px auto;
    padding: 60px 48px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    box-shadow: var(--shadow-gold);
}

.content-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid var(--gold-border);
    padding-bottom: 20px;
}

.content-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 45px;
    margin-bottom: 20px;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 10px;
}

.content-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.content-box h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.content-box p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-box ul, .content-box ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.content-box li {
    list-style-type: disc;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.content-box blockquote {
    background-color: rgba(212, 175, 55, 0.03);
    border-left: 3px solid var(--gold-primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
}

.content-box blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--gold-light);
}

.content-box hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, var(--gold-border), transparent);
    margin: 50px 0;
}

/* Table styling */
.content-box table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    overflow: hidden;
}

.content-box th, .content-box td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.content-box th {
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.content-box td {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.content-box tr:last-child td {
    border-bottom: none;
}

/* Blog Call-To-Action Box */
.blog-cta-box {
    background-color: rgba(212, 175, 55, 0.04);
    border: 1px solid var(--gold-primary);
    border-radius: 6px;
    padding: 40px;
    text-align: center;
    margin: 50px 0 30px;
    box-shadow: var(--shadow-gold);
}

.blog-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-top: 0;
    margin-bottom: 12px;
}

.blog-cta-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta-box .cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 14px 35px;
    border-radius: 4px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition-smooth);
}

.blog-cta-box .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .content-box {
        padding: 40px 20px;
        margin: 20px auto;
    }
    .content-box h1 {
        font-size: 2rem;
    }
    .blog-cta-box {
        padding: 30px 20px;
    }
}

/* Global CTA Button Styles */
.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000000 !important; /* Ensure text color is black */
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 14px 35px;
    border-radius: 4px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #000000 !important;
}

/* Logo SVG Image Styles */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* ==========================================================================
   Join Registration Form Pages
   ========================================================================= */

.join-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px 20px;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, rgba(7, 7, 8, 0) 70%), var(--bg-primary);
}

.form-container {
    width: 100%;
    max-width: 580px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-gold), 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.form-container:hover {
    border-color: var(--gold-border-hover);
    box-shadow: var(--shadow-gold-hover), 0 25px 60px rgba(0, 0, 0, 0.8);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(14, 14, 16, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(14, 14, 16, 0.95);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

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

.role-selector-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}

.role-card-option {
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(14, 14, 16, 0.6);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.role-card-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.role-card-option i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.role-card-option span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.role-card-option:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(14, 14, 16, 0.8);
}

.role-card-option.selected {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.role-card-option.selected i {
    color: var(--gold-primary);
}

.role-card-option.selected span {
    color: var(--text-primary);
}

.password-input-container {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 4px;
}

.password-toggle-btn:hover {
    color: var(--gold-primary);
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 14px;
}

.form-checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--gold-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.form-checkbox-group a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.form-checkbox-group a:hover {
    color: var(--gold-light);
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 6px;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 24px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #e6c56c 0%, #f3e5ab 50%, #b89025 100%);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-tip {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Success State Overlay */
.success-container {
    text-align: center;
    padding: 20px 10px;
    display: none;
    animation: fadeInForm 0.6s ease forwards;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 2.5rem;
    color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.success-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-container p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.success-btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1px;
    text-align: center;
}

.success-btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-align: center;
}

.success-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-primary);
}

@keyframes fadeInForm {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 580px) {
    .form-container {
        padding: 24px 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-header h2 {
        font-size: 1.8rem;
    }
    .role-selector-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


