/* Home Page Styles */
:root {
    --primary-color: #2c2c2c;
    --secondary-color: #d42427;
    --text-light: #f5f5f5;
    --text-dark: #2c2c2c;
    --bg-dark: #0d4b5f;
    --bg-light: #f9f6f0;
}

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

body {
    font-family: "Figtree", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.main-header.scrolled {
    background-color:rgba(0, 0, 0, .85);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.main-header.scrolled .nav-menu a,
.main-header.scrolled .header-contact {
    color: var(--text-light);
}

.main-header.scrolled .nav-menu a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    width: 100%;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: auto;
    height: 80px;
    max-width: 200px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin-left: 3rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: "Figtree", sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.mobile-only {
    display: none;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin-left: auto;
    color: var(--text-light);
    font-family: "Figtree", sans-serif;
    font-size: 0.95rem;
}

.header-contact i {
    font-size: 1rem;
}

.member-login-btn {
    background: transparent;
    border: 1px solid var(--text-light);
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
}

.member-login-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
    height: 75vh;
    min-height: 400px;
    max-height: 580px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slide {
    height: 75vh;
    min-height: 400px;
    max-height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: absolute;
    bottom: 0%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: left;
    color: var(--text-light);
    max-width: 600px;
    pointer-events: none;
}

.hero-content h2 {
    font-size: 2.25vw;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-left: 80px;
}

.hero-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
}
.hero-content h4 {
   margin-left: 80px;
   font-size: 1.25vw;
}

.btn-hero-cta {
    margin-left: 80px;
    margin-top: 1.5rem;
    background: #cbcbcb;
    color: var(--text-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Figtree", sans-serif;
    pointer-events: auto;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-hero-cta:hover {
    background:#d42427;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

/* Slick Slider Custom Styles */
.hero-slider .slick-dots {
    bottom: 40px;
    z-index: 20;
}

.hero-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.5;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: var(--secondary-color);
    opacity: 1;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
    z-index: 20;
    width: 50px;
    height: 50px;
}

.hero-slider .slick-prev {
    left: 30px;
}

.hero-slider .slick-next {
    right: 30px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    font-size: 40px;
    color: var(--text-light);
    opacity: 0.7;
}

.hero-slider .slick-prev:hover:before,
.hero-slider .slick-next:hover:before {
    opacity: 1;
    color: var(--secondary-color);
}

/* Epicure Rewards Section */
.epicure-section {
    /* background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); */
    padding: 80px 0;
}

.epicure-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.epicure-header {
    text-align: center;
    margin-bottom: 60px;
}

.epicure-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.epicure-header h2::before,
.epicure-header h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: var(--primary-color);
}

.epicure-header h2::before {
    left: -120px;
}

.epicure-header h2::after {
    right: -120px;
}

.epicure-header p {
    font-family: "Figtree", sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.epicure-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.epicure-card {
    padding: 0 15px;
    outline: none;
}

.epicure-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.epicure-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.epicure-content {
    text-align: center;
    padding: 20px 10px;
}

.epicure-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.epicure-content h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
}

.epicure-content p {
    font-family: "Figtree", sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-top: 20px;
}

/* Epicure Slider Custom Controls */
.epicure-slider .slick-prev,
.epicure-slider .slick-next {
    width: 50px;
    height: 50px;
    z-index: 10;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.epicure-slider .slick-prev {
    left: -60px;
}

.epicure-slider .slick-next {
    right: -60px;
}

.epicure-slider .slick-prev:hover,
.epicure-slider .slick-next:hover {
    background: #f5f5f5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.epicure-slider .slick-prev:before,
.epicure-slider .slick-next:before {
    /* color: #666666; */
    color: #666666;
    font-size: 24px;
    opacity: 1;
}

.epicure-slider .slick-dots {
    bottom: -50px;
}

.epicure-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
}

.epicure-slider .slick-dots li.slick-active button:before {
    color: var(--secondary-color);
}

/* Membership Section */
/* Subscription Benefits Section */
.subscription-benefits-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.subscription-container {
    max-width: 1400px;
    margin: 0 auto;
}

.subscription-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Figtree", sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-column {
    padding: 0;
}

.column-header {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2c5f7c;
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--secondary-color);
    letter-spacing: 1px;
    font-family: "Figtree", sans-serif;
}

.column-header em {
    font-style: italic;
    font-family: "Figtree", sans-serif;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-family: "Figtree", sans-serif;
    font-size: 0.95rem;
    line-height: 2;
    color: #555;
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.benefits-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.75rem;
    top: 0.6rem;
}

/* Lifestyle Benefits Section */
.lifestyle-benefits-section {
    background: #f5f5f5;
    padding: 0;
    overflow: hidden;
    padding-bottom: 5em;
}

.lifestyle-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 600px;
}

.lifestyle-left {
    background: #a7a1a1;
    color: white;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lifestyle-label {
    font-family: "Figtree", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
}

.lifestyle-left h2 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lifestyle-left h2 em {
    font-style: italic;
    font-family: "Figtree", sans-serif;
    font-weight: 300;
}

.lifestyle-left p {
    font-family: "Figtree", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.lifestyle-right {
    position: relative;
    display: flex;
    align-items: stretch;
}

.lifestyle-image {
    flex: 1;
    position: relative;
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.lifestyle-content-box h3 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lifestyle-content-box p {
    font-family: "Figtree", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.lifestyle-nav {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d42427;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 115, 66, 0.4);
}

.nav-btn:hover {
    background: #d66639;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 115, 66, 0.6);
}

/* Feature Section */
.feature-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.feature-content p {
    font-family: "Figtree", sans-serif;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

/* Elevate Experience Section */
.elevate-section {
    position: relative;
    min-height: 550px;
    background-image: url("https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?q=80&w=2070");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 2rem;
}

.elevate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 70%,
        transparent 100%
    );
    z-index: 1;
}

.elevate-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--text-light);
}

.elevate-content h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.elevate-subtitle {
    font-family: "Figtree", sans-serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.vouchers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 700px;
}

.vouchers-list li {
    font-family: "Figtree", sans-serif;
    font-size: 1rem;
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
}

.vouchers-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.elevate-content p {
    font-family: "Figtree", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-orange {
    background: #cbcbcb;
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Figtree", sans-serif;
    text-transform: uppercase;
}

.btn-orange:hover {
    background: #d42427;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 153, 51, 0.3);
}

/* Events Section */
.events-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.events-container.reverse {
    direction: rtl;
}

.events-container.reverse > * {
    direction: ltr;
}

/* Venues Section */
.venues-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, .85);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr;
    gap: 4rem;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.footer-newsletter p {
    font-family: "Figtree", sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-family: "Figtree", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: border-color 0.3s;
}

.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.newsletter-checkbox input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.newsletter-checkbox label {
    font-family: "Figtree", sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-style: italic;
}

.btn-subscribe {
    background: #cbcbcb;
    color: white;
    border: none;
    padding: 0.85rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Figtree", sans-serif;
    text-transform: uppercase;
}

.btn-subscribe:hover {
    background: #d42427;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

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

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: "Figtree", sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff9933;
}

.footer-social h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}


/** Login Modal Styles **/
.lalit-login-modal.show .modal-dialog {
    transform: translateX(0);
}
.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
}
.lalit-login-modal .modal-dialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    max-width: 420px;
    width: 420px;
    height: 100vh;
    display: flex;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}
#loginModal .modal-content {
    /* max-width: 400px; */
    margin: 0 auto;
    background-color: #f5f0eb;
}

.lalit-login-modal .modal-content {
    border-radius: 0;
    border: none;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    margin: 0;
    height: 100%;
    overflow-y: auto;
    background-color: #f5f0eb;
}
.lalit-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #f97316 !important;
    border-radius: 0 !important;
    font-size: 16px;
    line-height: 1.5;
    padding: 8px 0;
    transition: border-color 0.2s ease-in-out;
}
.footer-links ul {
    list-style: none;
    padding-left: 0;
}

/* ===================================
   Signup Modal Custom Styles
   =================================== */

/* Modal Content */
.signup-modal-content {
    background-color: #f5f0eb !important;
    border-radius: 0 !important;
}

/* Modal Header */
.signup-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.signup-modal-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.signup-modal-description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Form Labels */
.signup-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f97316;
    margin-bottom: 0.5rem;
}

/* Form Inputs */
.signup-input {
    background-color: #e8e1d9 !important;
    border: 1px solid #d1c7ba !important;
    border-radius: 0.375rem !important;
    padding: 0.625rem 0.875rem !important;
    font-size: 0.9375rem !important;
    color: #1a1a1a !important;
    transition: all 0.2s ease-in-out !important;
}

.signup-input::placeholder {
    color: #9ca3af !important;
    font-size: 0.875rem !important;
}

.signup-input:focus {
    background-color: #e8e1d9 !important;
    border-color: #f97316 !important;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.1) !important;
    outline: none !important;
}

/* Helper Text */
.signup-helper-text {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.signup-helper-text-center {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Checkbox Styling */
.signup-checkbox {
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid #d1c7ba;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-top: 0.125rem;
}

.signup-checkbox:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.signup-checkbox-label {
    font-size: 0.875rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin-left: 0.5rem;
}

/* Links */
.signup-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Send OTP Button */
.signup-btn-send-otp {
    width: auto;
    padding: 0.625rem 1.5rem;
    background-color: #f97316;
    border: none;
    border-radius: 0.375rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    float: right;
}

.signup-btn-send-otp:hover {
    background-color: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
}

.signup-btn-send-otp:active {
    transform: translateY(0);
}

/* Continue Button */
.signup-btn-continue {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #9ca3af !important;
    border: none;
    border-radius: 0.375rem;
    color: white !important;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: not-allowed;
    transition: all 0.2s ease-in-out;
}

.signup-btn-continue:disabled {
    background-color: #9ca3af !important;
    color: white !important;
    cursor: not-allowed;
}

.signup-btn-continue:not(:disabled) {
    background-color: #16a34a !important;
    cursor: pointer;
}

.signup-btn-continue:not(:disabled):hover {
    background-color: #15803d !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(22, 163, 74, 0.3);
}

.signup-btn-continue:not(:disabled):active {
    transform: translateY(0);
}

/* Footer Text */
.signup-footer-text {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Close Button Custom Style */
#signupModal .btn-close {
    background-color: transparent;
    border: none;
    opacity: 0.6;
    padding: 0.5rem;
    font-size: 1.25rem;
}

#signupModal .btn-close:hover {
    opacity: 1;
}

/* Modal Body */
#signupModal .modal-body {
    padding: 1.5rem 2rem 2rem 2rem;
}

/* Responsive adjustments for signup modal */
@media (max-width: 576px) {
    .signup-modal-title {
        font-size: 1.25rem;
    }
    
    .signup-modal-subtitle {
        font-size: 1rem;
    }
    
    .signup-modal-description {
        font-size: 0.8125rem;
    }
    
    #signupModal .modal-body {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
}

/* ===================================
   Login Modal Custom Styles
   =================================== */

/* Modal Content */
.login-modal-content {
    background-color: #f5f0eb !important;
    border-radius: 0 !important;
}

/* Modal Header */
.login-modal-title {
    font-size: 1.375rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.login-modal-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 0;
}

/* Login Tabs */
.login-tab-btn {
    background-color: transparent;
    border: 1px solid #d1c7ba;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
}

.login-tab-btn:hover {
    background-color: #e8e1d9;
    border-color: #c4b5a3;
}

.login-tab-btn.active {
    background-color: #c4a574;
    border-color: #c4a574;
    color: white;
}

.login-tab-btn i {
    font-size: 0.875rem;
}

/* Alternative blue style for second tab when active */
#member-tab.active {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Form Labels */
.login-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f97316;
    margin-bottom: 0.5rem;
}

/* Form Inputs with underline style */
.login-input {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #d1c7ba !important;
    border-radius: 0 !important;
    padding: 0.5rem 0 !important;
    font-size: 0.9375rem !important;
    color: #1a1a1a !important;
    transition: border-color 0.2s ease-in-out !important;
}

.login-input::placeholder {
    color: #9ca3af !important;
    font-size: 0.875rem !important;
}

.login-input:focus {
    background-color: transparent !important;
    border-bottom-color: #f97316 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Send OTP Button/Link */
.login-send-otp-btn {
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease-in-out;
}

.login-send-otp-btn:hover {
    color: #f97316;
}

.login-send-otp-btn i {
    font-size: 0.875rem;
}

/* Forgot Password Link */
.login-link {
    color: #f97316;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.login-link:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #1a1a1a;
    border: none;
    border-radius: 0.25rem;
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.login-btn:hover {
    background-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

/* Close Button for Login Modal */
#loginModal .btn-close {
    background-color: transparent;
    border: none;
    opacity: 0.6;
    padding: 0.5rem;
    font-size: 1.25rem;
}

#loginModal .btn-close:hover {
    opacity: 1;
}

/* Modal Body */
#loginModal .modal-body {
    padding: 1.5rem 2rem 2rem 2rem;
}

/* Responsive adjustments for login modal */
@media (max-width: 576px) {
    .login-modal-title {
        font-size: 1.125rem;
    }
    
    .login-modal-subtitle {
        font-size: 0.875rem;
    }
    
    .login-tab-btn {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
    }
    
    #loginModal .modal-body {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .header-contact {
        font-size: 0.9rem;
        padding: 0 1.5rem;
    }

    .logo-box {
        padding: 0 1.5rem;
    }

    .membership-container,
    .feature-container,
    .events-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .hero-section,
    .hero-slide {
        height: 65vh;
        min-height: 380px;
        max-height: 500px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .membership-content h2,
    .feature-content h2 {
        font-size: 2rem;
    }

    .epicure-header h2::before,
    .epicure-header h2::after {
        width: 60px;
    }

    .epicure-header h2::before {
        left: -80px;
    }

    .epicure-header h2::after {
        right: -80px;
    }

    .epicure-slider .slick-prev {
        left: -40px;
    }

    .epicure-slider .slick-next {
        right: -40px;
    }

    .elevate-content h2 {
        font-size: 2.8rem;
    }

    .lifestyle-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lifestyle-left {
        padding: 4rem 3rem;
    }

    .lifestyle-left h2 {
        font-size: 2.5rem;
    }

    .lifestyle-right {
        min-height: 600px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .subscription-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .column-header {
        font-size: 1.2rem;
    }

    .benefits-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .logo-box {
        min-width: auto;
        padding: 0 1rem;
    }

    .logo img {
        height: 50px;
    }

    .header-contact {
        padding: 0 1rem;
        font-size: 0.85rem;
    }

    .main-nav {
        order: 4;
        width: 100%;
        padding: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s;
        gap: 1.5rem;
        align-items: flex-start;
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .mobile-only {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
        width: 100%;
    }

    .nav-menu .mobile-only a {
        color: var(--text-light);
        font-weight: 500;
        letter-spacing: 1px;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
    }

    .hero-section,
    .hero-slide {
        height: 55vh;
        min-height: 320px;
        max-height: 420px;
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
    }

    .hero-content h2 {
        font-size: 2rem;
        padding-left: 50px;
    }

    .hero-content h2::before {
        width: 40px;
    }

    .hero-slider .slick-prev {
        left: 10px;
    }

    .hero-slider .slick-next {
        right: 10px;
    }

    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        width: 40px;
        height: 40px;
    }

    .hero-slider .slick-prev:before,
    .hero-slider .slick-next:before {
        font-size: 30px;
    }

    .membership-card {
        padding: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .epicure-header h2 {
        font-size: 2rem;
    }

    .epicure-header h2::before,
    .epicure-header h2::after {
        display: none;
    }

    .epicure-slider .slick-prev,
    .epicure-slider .slick-next {
        width: 40px;
        height: 40px;
    }

    .epicure-slider .slick-prev {
        left: 10px;
    }

    .epicure-slider .slick-next {
        right: 10px;
    }

    .epicure-slider .slick-prev:before,
    .epicure-slider .slick-next:before {
        font-size: 22px;
    }

    .epicure-image img {
        height: 280px;
    }

    .elevate-section {
        min-height: 450px;
        background-position: 70% center;
    }

    .elevate-overlay {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 100%
        );
    }

    .elevate-content h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .elevate-content p {
        font-size: 1rem;
    }

    .lifestyle-left {
        padding: 3rem 2rem;
    }

    .lifestyle-left h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .lifestyle-content-box {
        padding: 2rem;
    }

    .lifestyle-content-box h3 {
        font-size: 1.2rem;
    }

    .lifestyle-nav {
        right: 15px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .hero-content {
        left: 3%;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding-left: 40px;
    }

    .hero-content h2::before {
        width: 30px;
    }

    .hero-slider .slick-dots {
        bottom: 20px;
    }

    .hero-slider .slick-dots li button:before {
        font-size: 8px;
    }

    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        width: 30px;
        height: 30px;
    }

    .hero-slider .slick-prev:before,
    .hero-slider .slick-next:before {
        font-size: 24px;
    }

    .membership-content h2,
    .feature-content h2 {
        font-size: 1.5rem;
    }

    .subscription-benefits-section,
    .feature-section,
    .events-section,
    .venues-section {
        padding: 3rem 1rem;
    }

    .epicure-section {
        padding: 50px 0;
    }

    .epicure-header h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .epicure-header p {
        font-size: 0.95rem;
    }

    .epicure-content h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .epicure-content p {
        font-size: 0.9rem;
    }

    .epicure-image img {
        height: 220px;
    }

    .elevate-section {
        min-height: 380px;
        padding: 3rem 1rem;
    }

    .elevate-content {
        padding: 0 1rem;
    }

    .elevate-content h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .elevate-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-orange {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .lifestyle-left {
        padding: 2.5rem 1.5rem;
    }

    .lifestyle-left h2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .lifestyle-left p {
        font-size: 1rem;
    }

    .lifestyle-right {
        min-height: 500px;
    }

    .lifestyle-content-box {
        padding: 1.5rem;
    }

    .lifestyle-content-box h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .lifestyle-content-box p {
        font-size: 0.95rem;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .subscription-title {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
        letter-spacing: 1.5px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .benefits-column {
        padding: 0;
    }

    .column-header {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .benefits-list li {
        font-size: 0.9rem;
        line-height: 1.8;
        padding: 0.4rem 0;
        padding-left: 1.5rem;
    }

    .benefits-list li::before {
        font-size: 0.7rem;
        top: 0.5rem;
    }
}