
      :root {
        /* Color Palette */
        --primary-burgundy: #7a1f3d;
        --primary-dark: #4a1023;
        --secondary-gold: #c8a24c;
        --gold-light: #e4ca88;
        --accent-rosegold: #b76e79;
        --bg-ivory: #fffdf8;
        --surface-pearl: #ffffff;
        --text-charcoal: #1e1e1e;
        --text-muted: #6b7280;

        /* Typography */
        --font-heading: "Cormorant Garamond", serif;
        --font-body: "Manrope", sans-serif;
        --font-btn: "Poppins", sans-serif;
        --font-cursive: "Great Vibes", cursive;

        /* Spacing & Utilities */
        --section-padding: 100px 0;
        --border-radius-lg: 24px;
        --border-radius-sm: 8px;
        --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

        /* Shadows */
        --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.04);
        --shadow-hover: 0 20px 50px rgba(122, 31, 61, 0.1);
        --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
      }

      body {
        font-family: var(--font-body);
        background-color: var(--bg-ivory);
        color: var(--text-charcoal);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        background-image: radial-gradient(
            circle at 100% 0%,
            rgba(200, 162, 76, 0.03) 0%,
            transparent 40%
          ),
          radial-gradient(
            circle at 0% 100%,
            rgba(122, 31, 61, 0.03) 0%,
            transparent 40%
          );
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: var(--font-heading);
        color: var(--primary-burgundy);
        font-weight: 600;
        line-height: 1.2;
      }

      a {
        text-decoration: none;
        color: var(--primary-burgundy);
        transition: var(--transition-smooth);
      }

      a:hover {
        color: var(--secondary-gold);
      }

      .cursive-text {
        font-family: var(--font-cursive);
        color: var(--secondary-gold);
        font-size: 2.5rem;
        line-height: 1;
        display: block;
      }

      .btn-luxury {
        font-family: var(--font-btn);
        background: linear-gradient(
          135deg,
          var(--primary-burgundy),
          var(--primary-dark)
        );
        color: var(--surface-pearl);
        padding: 14px 36px;
        border-radius: 50px;
        border: none;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.85rem;
        position: relative;
        overflow: hidden;
        z-index: 1;
        box-shadow: 0 10px 20px rgba(122, 31, 61, 0.2);
        transition: var(--transition-smooth);
      }

      .btn-luxury::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          var(--secondary-gold),
          var(--gold-light)
        );
        z-index: -1;
        opacity: 0;
        transition: var(--transition-smooth);
      }

      .btn-luxury:hover {
        color: var(--surface-pearl);
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(200, 162, 76, 0.3);
      }

      .btn-luxury:hover::before {
        opacity: 1;
      }

      .btn-outline-luxury {
        font-family: var(--font-btn);
        background: transparent;
        color: var(--primary-burgundy);
        padding: 12px 34px;
        border-radius: 50px;
        border: 1px solid var(--primary-burgundy);
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.85rem;
        transition: var(--transition-smooth);
      }

      .btn-outline-luxury:hover {
        background: var(--primary-burgundy);
        color: var(--surface-pearl);
        border-color: var(--primary-burgundy);
      }

      /* Custom Input */
      .form-luxury {
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(200, 162, 76, 0.3);
        border-radius: var(--border-radius-sm);
        padding: 12px 20px;
        color: var(--text-charcoal);
        font-family: var(--font-body);
        transition: var(--transition-smooth);
      }
      .form-luxury:focus {
        background: var(--surface-pearl);
        border-color: var(--secondary-gold);
        box-shadow: 0 0 0 3px rgba(200, 162, 76, 0.1);
        outline: none;
      }

      .floating-label-group {
        position: relative;
        margin-bottom: 1.5rem;
      }
      .floating-label-group label {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        color: var(--text-muted);
        pointer-events: none;
        transition: 0.2s ease all;
        font-size: 0.95rem;
        background: transparent;
        padding: 0 4px;
      }
      .form-luxury:focus ~ label,
      .form-luxury:not(:placeholder-shown) ~ label {
        top: 0;
        background: white;
        font-size: 0.75rem;
        color: var(--primary-burgundy);
      }

      #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--bg-ivory);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .loader-logo {
        font-family: var(--font-heading);
        font-size: 3rem;
        color: var(--primary-burgundy);
        letter-spacing: 4px;
        opacity: 0;
      }

      .loader-ring {
        width: 50px;
        height: 50px;
        border: 2px solid rgba(200, 162, 76, 0.2);
        border-top-color: var(--secondary-gold);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-top: 20px;
        opacity: 0;
      }

      @keyframes spin {
        100% {
          transform: rotate(360deg);
        }
      }

      .navbar-luxury {
        background: var(--surface-pearl);
        padding: 15px 0;
        transition: var(--transition-smooth);
        border-bottom: 1px solid rgba(200, 162, 76, 0.2);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
      }

      .navbar-luxury.scrolled {
        background: rgba(255, 253, 248, 0.95);
        backdrop-filter: blur(15px);
      }

      .navbar-brand {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        color: var(--primary-burgundy) !important;
        letter-spacing: 2px;
        font-weight: 500;
        transition: var(--transition-smooth);
      }

      .navbar-luxury.scrolled .navbar-brand {
        color: var(--primary-burgundy) !important;
      }

      .nav-link {
        color: var(--text-charcoal) !important;
        font-family: var(--font-btn);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin: 0 15px;
        position: relative;
        transition: var(--transition-smooth);
      }

      .navbar-luxury.scrolled .nav-link {
        color: var(--text-charcoal) !important;
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--secondary-gold);
        transition: var(--transition-smooth);
      }

      .nav-link:hover::after {
        width: 100%;
      }

      .navbar-toggler {
        border: none;
        color: var(--primary-burgundy);
      }
      .navbar-luxury.scrolled .navbar-toggler {
        color: var(--primary-burgundy);
      }
      .navbar-toggler:focus {
        box-shadow: none;
      }

      .hero-section {
        height: 100vh;
        min-height: 750px;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
        background-color: var(--text-charcoal);
      }

      .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("assets/images/1.avif");
        background-size: cover;
        background-position: center 30%;
        z-index: 1;
        transform: scale(1.1); /* For GSAP intro animation */
      }

      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          rgba(30, 30, 30, 0.8) 0%,
          rgba(122, 31, 61, 0.4) 100%
        );
        z-index: 2;
      }

      .hero-content {
        position: relative;
        z-index: 3;
        color: var(--surface-pearl);
      }

      .hero-title {
        font-size: 3.5rem;
        color: var(--surface-pearl);
        line-height: 1;
        margin-bottom: 20px;
        font-weight: 400;
      }

      .hero-subtitle {
        font-family: var(--font-body);
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 2px;
        margin-bottom: 20px;
        opacity: 0.9;
      }

      /* Glassmorphic Search Card */
      .glass-search-card {
        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);
        border-radius: var(--border-radius-lg);
        padding: 35px;
        box-shadow: var(--shadow-glass);
        color: var(--surface-pearl);
      }

      .glass-search-card select.form-luxury {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        border-color: rgba(255, 255, 255, 0.3);
      }
      .glass-search-card select.form-luxury option {
        color: var(--text-charcoal);
      }

      .editorial-section {
        padding: 120px 0;
        position: relative;
      }

      .editorial-img-wrapper {
        position: relative;
        padding-right: 30px;
        padding-bottom: 30px;
      }

      .editorial-img-wrapper::after {
        content: "";
        position: absolute;
        top: 30px;
        right: 0;
        bottom: 0;
        left: 30px;
        border: 1px solid var(--secondary-gold);
        z-index: -1;
        border-radius: 8px;
      }

      .editorial-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: var(--shadow-soft);
      }

      .divider-gold {
        width: 60px;
        height: 2px;
        background-color: var(--secondary-gold);
        margin: 30px 0;
      }

      .profiles-section {
        padding: 100px 0;
        background-color: #fff;
        position: relative;
      }

      /* Base Luxury Card */
      .luxury-card {
        background: var(--surface-pearl);
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        transition: var(--transition-smooth);
        border: 1px solid rgba(0, 0, 0, 0.03);
        height: 100%;
      }

      .luxury-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(200, 162, 76, 0.2);
      }

      /* Fix for inactive tab visibility */
      #profileTabs .nav-link {
        color: var(--text-muted) !important;
      }
      #profileTabs .nav-link.active {
        background: var(--primary-burgundy) !important;
        color: white !important;
      }

      /* Blur styling for public profiles */
      .locked-profile-img {
        filter: blur(12px);
        transform: scale(1.1);
      }

      /* Premium Lock Overlay */
      .locked-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 3; /* Placed above everything */
      }
      
      .card-overlay-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.7) 0%,
          transparent 100%
        );
        z-index: 1;
      }

      /* Compact 6-Column Card Styles */
      .card-img-wrap-compact {
        position: relative;
        height: 180px; 
        overflow: hidden;
      }
      .card-img-wrap-compact img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
      }
      .luxury-card:hover .card-img-wrap-compact img {
        transform: scale(1.05);
      }
      
      .lock-icon-wrapper-compact {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }
      .lock-icon-wrapper-compact i {
        font-size: 0.9rem;
        color: white;
      }
      .locked-overlay-compact h4 {
        font-family: var(--font-btn);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: white;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      }

      .card-info-compact {
        padding: 15px;
        position: relative;
        text-align: center;
      }
      .card-name-compact {
        font-size: 1.1rem;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .card-meta-compact {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-bottom: 10px;
      }
      .text-truncate-compact {
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;  
        overflow: hidden;
      }

      /* Rest of global styles */
      .journey-section {
        padding: 120px 0;
        background: linear-gradient(180deg, var(--bg-ivory) 0%, #faf8f2 100%);
      }

      .journey-box {
        text-align: center;
        padding: 30px;
        position: relative;
        z-index: 1;
      }

      .journey-icon-wrap {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: var(--surface-pearl);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--secondary-gold);
        box-shadow: 0 10px 25px rgba(200, 162, 76, 0.15);
        position: relative;
        border: 1px solid rgba(200, 162, 76, 0.1);
        transition: var(--transition-smooth);
      }

      .journey-box:hover .journey-icon-wrap {
        transform: scale(1.1);
        background: var(--primary-burgundy);
        color: white;
      }

      /* Connecting line for desktop */
      @media (min-width: 992px) {
        .journey-line {
          position: relative;
        }
        .journey-line::before {
          content: "";
          position: absolute;
          top: 70px;
          left: 12%;
          width: 76%;
          height: 1px;
          border-top: 1px dashed var(--secondary-gold);
          z-index: 0;
          opacity: 0.5;
        }
      }

      .testimonials-section {
        padding: 120px 0;
        background-color: var(--primary-dark);
        color: var(--surface-pearl);
        position: relative;
        overflow: hidden;
      }

      .testimonials-section h2 {
        color: var(--secondary-gold);
      }

      .story-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(200, 162, 76, 0.1);
        border-radius: 16px;
        padding: 40px;
        backdrop-filter: blur(10px);
      }

      .story-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--secondary-gold);
        margin-bottom: 20px;
      }

      .counter-box {
        text-align: center;
        padding: 20px;
      }
      .counter-num {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        color: var(--secondary-gold);
        margin-bottom: 5px;
        line-height: 1;
      }

      /* Membership Pricing Card Base */
      .membership-card {
        background: var(--surface-pearl);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: var(--border-radius-lg);
        padding: 50px 30px;
        text-align: center;
        transition: var(--transition-smooth);
        position: relative;
        box-shadow: var(--shadow-soft);
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .membership-card.premium {
        background: var(--primary-burgundy);
        color: white;
        transform: scale(1.05);
        border-color: var(--primary-dark);
        z-index: 2;
      }
      .membership-card.premium h3,
      .membership-card.premium .price {
        color: var(--secondary-gold);
      }

      .price {
        font-family: var(--font-heading);
        font-size: 3rem;
        color: var(--primary-burgundy);
        margin: 20px 0;
      }

      .feature-list {
        list-style: none;
        padding: 0;
        margin: 30px 0;
        text-align: left;
        flex-grow: 1;
      }
      .feature-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
      }
      .feature-list li i {
        color: var(--secondary-gold);
        margin-right: 15px;
      }
      .membership-card.premium .feature-list li i {
        color: var(--gold-light);
      }

      .insta-gallery {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
      }
      .insta-item {
        flex: 0 0 16.666%;
        position: relative;
        cursor: pointer;
      }
      .insta-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: var(--transition-smooth);
      }
      .insta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(122, 31, 61, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        opacity: 0;
        transition: var(--transition-smooth);
      }
      .insta-item:hover .insta-overlay {
        opacity: 1;
      }
      .insta-item:hover img {
        transform: scale(1.1);
      }

      .footer-luxury {
        background-color: var(--text-charcoal);
        color: rgba(255, 255, 255, 0.7);
        padding: 80px 0 30px;
        font-size: 0.9rem;
      }
      .footer-luxury h5 {
        color: var(--surface-pearl);
        font-family: var(--font-btn);
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 25px;
      }
      .footer-links {
        list-style: none;
        padding: 0;
      }
      .footer-links li {
        margin-bottom: 12px;
      }
      .footer-links a {
        color: rgba(255, 255, 255, 0.7);
      }
      .footer-links a:hover {
        color: var(--secondary-gold);
        padding-left: 5px;
      }
      .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        margin-right: 10px;
        transition: var(--transition-smooth);
      }
      .social-icons a:hover {
        background: var(--secondary-gold);
        transform: translateY(-3px);
      }

      /* Responsive Adjustments */
      @media (max-width: 991px) {
        .hero-title {
          font-size: 3.5rem;
        }
        .navbar-luxury {
          background: rgba(255, 255, 255, 0.98);
          padding: 15px 0;
        }
        .navbar-brand {
          color: var(--primary-burgundy) !important;
        }
        .membership-card.premium {
          transform: scale(1);
          margin-top: 30px;
          margin-bottom: 30px;
        }
        .insta-item {
          flex: 0 0 33.333%;
        }
      }
      @media (max-width: 768px) {
        .hero-title {
          font-size: 2.5rem;
        }
        .editorial-section {
          padding: 60px 0;
        }
        .glass-search-card {
          padding: 20px;
        }
      }
    
      .auth-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Side */
.auth-image-side {
    flex: 1;
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&q=80&w=2000");
    background-size: cover;
    background-position: center;
    display: none;
    overflow: hidden;
}

@media (min-width: 992px) {
    .auth-image-side {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 40px 60px;
    }
}

.auth-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 30, 30, 0.2) 0%,
        rgba(74, 16, 35, 0.7) 100%
    );
    z-index: 1;
}

.auth-image-content {
    position: relative;
    z-index: 2;
    color: var(--surface-pearl);
}

.brand-logo-light {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--surface-pearl);
    letter-spacing: 3px;
}

.auth-quote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--surface-pearl);
    margin-bottom: 20px;
    font-weight: 300;
}

.auth-quote-author {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.auth-quote span {
    font-family: var(--font-cursive);
    color: var(--secondary-gold);
    font-size: 3.5rem;
    display: block;
    margin-bottom: 10px;
}

/* Mobile Background */
.mobile-bg-overlay {
    display: none;
}

@media (max-width: 991px) {
    .mobile-bg-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&q=80&w=800");
        background-size: cover;
        background-position: center;
        z-index: 0;
    }

    .mobile-bg-overlay::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 253, 248, 0.92);
        backdrop-filter: blur(10px);
    }
}

/* Right Side */
.auth-form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-ivory);
    position: relative;
    z-index: 1;
    overflow-y: auto;
    scrollbar-width: none;
}

.auth-form-side::-webkit-scrollbar {
    display: none;
}

.auth-form-side::before,
.auth-form-side::after {
    content: "";
    flex: 1;
    min-height: 60px;
}

@media (max-width: 991px) {
    .auth-form-side {
        background-color: transparent;
        justify-content: center;
        align-items: center;
        padding: 20px;
        min-height: 100vh;
    }

    .auth-form-side::before,
    .auth-form-side::after {
        display: none;
    }
}

.auth-form-wrapper {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 0 20px;
    flex: none;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .auth-form-wrapper {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .auth-form-wrapper {
        background: var(--surface-pearl);
        padding: 40px 30px;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
        border: 1px solid rgba(255,255,255,.8);
        max-width: 100%;
    }
}

.mobile-logo {
    display: none;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-burgundy);
    letter-spacing: 3px;
    text-decoration: none;
}

@media (max-width: 991px) {
    .mobile-logo {
        display: block !important;
        text-align: center;
        margin-bottom: 20px;
    }
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-burgundy);
}

.form-subtitle {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 30px;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-luxury {
    display: block;
    width: 100%;
    padding: .85rem .5rem;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-charcoal);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(122,31,61,.2);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.form-control-luxury:focus {
    color: var(--text-charcoal);
    border-bottom-color: var(--secondary-gold);
    outline: 0;
    box-shadow: none;
}

.form-floating-custom label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: .85rem .5rem;
    pointer-events: none;
    transform-origin: 0 0;
    transition: opacity .15s ease-in-out, transform .15s ease-in-out;
    color: var(--text-muted);
}

.form-control-luxury:focus ~ label,
.form-control-luxury:not(:placeholder-shown) ~ label,
.form-control-luxury[data-filled="true"] ~ label {
    opacity: .8;
    transform: scale(.85) translateY(-1.5rem);
    color: var(--primary-burgundy);
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition-smooth);
}

.password-toggle:hover {
    color: var(--primary-burgundy);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: .85rem;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.divider::before {
    margin-right: 1em;
}

.divider::after {
    margin-left: 1em;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: var(--surface-pearl);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 50px;
    color: var(--text-charcoal);
    font-family: var(--font-btn);
    font-size: .9rem;
    transition: var(--transition-smooth);
    margin-bottom: 15px;
}

.btn-social:hover {
    background: rgba(200,162,76,.05);
    border-color: var(--secondary-gold);
    color: var(--primary-burgundy);
    transform: translateY(-2px);
}

.btn-social svg,
.btn-social i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.custom-checkbox .form-check-input {
    border-color: rgba(122,31,61,.3);
    border-radius: 4px;
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--primary-burgundy);
    border-color: var(--primary-burgundy);
}

.custom-checkbox .form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(122,31,61,.15);
}

body {
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

@media (max-width: 991px) {
    body {
        overflow-y: auto;
    }
}

.hero-title {
    line-height: 1.2;
}

.btn-luxury {
    width: 100%;
}