/* Index Page Specific Styles */

/* Lead Form Hero Integration */
.hero-lead-form {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.lead-form-card {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-large);
}

.lead-form-card h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.lead-form-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.lead-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.9rem;
}

.benefit-icon {
    font-size: 1rem;
    min-width: 20px;
}

.lead-cta-btn {
    background: var(--gradient-gold);
    color: var(--dark-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.lead-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* CTA Buttons for Gym Cards */
.gym-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-consult {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 1;
    min-width: 140px;
}

.btn-consult:hover {
    background: var(--primary-gold);
    color: var(--dark-primary);
    transform: translateY(-1px);
}

.btn-view, .btn-book {
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 1;
    min-width: 120px;
}

.btn-view {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--white);
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-book {
    background: var(--gradient-orange);
    border: none;
    color: var(--white);
}

.btn-book:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-lead-form {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .lead-form-card {
        padding: 1.5rem;
    }

    .gym-actions {
        flex-direction: column;
    }

    .btn-consult, .btn-view, .btn-book {
        min-width: unset;
        width: 100%;
    }

    .lead-form-benefits {
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-normal);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-normal);
}

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

.nav-links a:hover {
    color: var(--primary-gold);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--primary-gold);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* Search Widget */
.search-widget {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
}

.search-tab {
    flex: 1;
    background: none;
    border: none;
    color: var(--medium-gray);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.search-tab.active {
    background: var(--primary-gold);
    color: var(--dark-primary);
}

.search-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.search-content {
    display: block;
}

.search-content.hidden {
    display: none;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    color: var(--white);
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition-normal);
}

.search-select:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-select option {
    background: var(--dark-primary);
    color: var(--white);
}

.search-btn {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--dark-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.search-icon {
    font-size: 1.2rem;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Gyms Section */
.featured-gyms {
    padding: 6rem 0;
    background: var(--dark-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.gyms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Featured Gym Cards */
.gym-card-featured {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gym-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

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

.gym-card-featured:hover::before {
    opacity: 0.05;
}

/* Venum Elite Card Special Styling */
.gym-card-featured.venum-elite {
    border: 1px solid rgba(187, 254, 1, 0.3);
}

.gym-card-featured.venum-elite::before {
    background: linear-gradient(135deg, #bbfe01, #8bc34a);
}

.gym-card-featured.venum-elite:hover {
    border-color: #bbfe01;
    box-shadow: 0 20px 60px rgba(187, 254, 1, 0.2), 0 0 0 1px rgba(187, 254, 1, 0.1);
}

.gym-image {
    height: 280px;
    background: var(--gradient-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

/* Specific gym images with premium gradients and patterns */
[data-gym-id="tiger-muay-thai"] .gym-image {
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(255, 107, 53, 0.8) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.1) 10px, rgba(0, 0, 0, 0.1) 20px),
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    position: relative;
}

[data-gym-id="tiger-muay-thai"] .gym-image::before {
    content: '🐯';
    position: absolute;
    font-size: 8rem;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

[data-gym-id="banchamek-gym"] .gym-image {
    background:
        linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(212, 50, 50, 0.8) 100%),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.1) 10px, rgba(0, 0, 0, 0.1) 20px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    position: relative;
}

[data-gym-id="banchamek-gym"] .gym-image::before {
    content: '🥊';
    position: absolute;
    font-size: 8rem;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

[data-gym-id="fairtex-training"] .gym-image {
    background:
        linear-gradient(135deg, rgba(70, 130, 180, 0.9) 0%, rgba(30, 60, 114, 0.8) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(0, 0, 0, 0.1) 15px, rgba(0, 0, 0, 0.1) 30px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    position: relative;
}

[data-gym-id="fairtex-training"] .gym-image::before {
    content: '⚡';
    position: absolute;
    font-size: 8rem;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
}

[data-gym-id="venum-training-camp-pattaya"] .gym-image {
    background:
        linear-gradient(135deg, #bbfe01 0%, #8bc34a 50%, #689f38 100%),
        repeating-linear-gradient(60deg, transparent, transparent 12px, rgba(0, 0, 0, 0.1) 12px, rgba(0, 0, 0, 0.1) 24px);
    color: #1a1a1a;
    font-weight: 800;
    position: relative;
}

[data-gym-id="venum-training-camp-pattaya"] .gym-image::before {
    content: '🐍';
    position: absolute;
    font-size: 8rem;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}

.gym-image-content {
    position: relative;
    z-index: 2;
}

.gym-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.gym-badge.premium {
    background: var(--gradient-gold);
    color: var(--dark-primary);
}

.gym-badge.legend {
    background: var(--gradient-orange);
    color: var(--white);
}

.gym-badge.heritage {
    background: var(--glass-bg);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    backdrop-filter: blur(10px);
}

.gym-badge.elite {
    background: linear-gradient(135deg, #bbfe01 0%, #8bc34a 100%);
    color: #1a1a1a;
    font-weight: 800;
    text-shadow: none;
}

.gym-favorite {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 3;
    font-size: 1.2rem;
    color: var(--white);
}

.gym-favorite:hover,
.gym-favorite.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.gym-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gym-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.gym-info {
    flex: 1;
}

.gym-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gym-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-icon {
    font-size: 1rem;
}

.gym-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.stars {
    color: var(--primary-gold);
    font-size: 1rem;
    letter-spacing: 1px;
}

.rating-score {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.rating-count {
    color: var(--medium-gray);
    font-size: 0.8rem;
}

.gym-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-tag.elite {
    background: rgba(187, 254, 1, 0.15);
    color: #bbfe01;
    border: 1px solid rgba(187, 254, 1, 0.3);
    font-weight: 600;
}

.gym-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.gym-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-from {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.price-period {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.gym-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-view {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.btn-book {
    background: var(--gradient-gold);
    color: var(--dark-primary);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-book:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Destinations Section */
.destinations {
    padding: 6rem 0;
    background: var(--dark-secondary);
}

.destinations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 600px;
}

.destination-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-normal);
}

.destination-card.large {
    grid-row: 1 / 3;
}

.destination-card:hover {
    transform: scale(1.02);
}

.destination-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Specific destination images with premium gradients */
[data-destination="phuket"] .destination-image {
    background:
        linear-gradient(135deg, rgba(0, 150, 200, 0.9) 0%, rgba(0, 100, 150, 0.8) 50%, rgba(0, 50, 100, 0.7) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.05) 15px, rgba(255, 255, 255, 0.05) 30px);
}

[data-destination="phuket"] .destination-image::before {
    content: '🏖️';
    position: absolute;
    font-size: 10rem;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 30px rgba(0, 150, 200, 0.5));
}

[data-destination="bangkok"] .destination-image {
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(180, 140, 30, 0.8) 50%, rgba(150, 110, 20, 0.7) 100%),
        repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(0, 0, 0, 0.1) 12px, rgba(0, 0, 0, 0.1) 24px);
}

[data-destination="bangkok"] .destination-image::before {
    content: '🏙️';
    position: absolute;
    font-size: 6rem;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

[data-destination="chiang-mai"] .destination-image {
    background:
        linear-gradient(135deg, rgba(34, 139, 34, 0.9) 0%, rgba(46, 125, 50, 0.8) 50%, rgba(27, 94, 32, 0.7) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 40px);
}

[data-destination="chiang-mai"] .destination-image::before {
    content: '⛰️';
    position: absolute;
    font-size: 6rem;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 30px rgba(34, 139, 34, 0.5));
}

[data-destination="koh-samui"] .destination-image {
    background:
        linear-gradient(135deg, rgba(0, 191, 165, 0.9) 0%, rgba(0, 150, 136, 0.8) 50%, rgba(0, 105, 92, 0.7) 100%),
        repeating-linear-gradient(60deg, transparent, transparent 18px, rgba(255, 255, 255, 0.05) 18px, rgba(255, 255, 255, 0.05) 36px);
}

[data-destination="koh-samui"] .destination-image::before {
    content: '🌴';
    position: absolute;
    font-size: 6rem;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 30px rgba(0, 191, 165, 0.5));
}

[data-destination="pattaya"] .destination-image {
    background:
        linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(230, 90, 40, 0.8) 50%, rgba(200, 70, 30, 0.7) 100%),
        repeating-linear-gradient(-60deg, transparent, transparent 14px, rgba(0, 0, 0, 0.1) 14px, rgba(0, 0, 0, 0.1) 28px);
}

[data-destination="pattaya"] .destination-image::before {
    content: '🌅';
    position: absolute;
    font-size: 6rem;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
}

[data-destination="buriram"] .destination-image {
    background:
        linear-gradient(135deg, rgba(156, 39, 176, 0.9) 0%, rgba(123, 31, 162, 0.8) 50%, rgba(94, 24, 124, 0.7) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255, 255, 255, 0.05) 16px, rgba(255, 255, 255, 0.05) 32px);
}

[data-destination="buriram"] .destination-image::before {
    content: '🏟️';
    position: absolute;
    font-size: 6rem;
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 30px rgba(156, 39, 176, 0.5));
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: var(--white);
}

.destination-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.destination-card:not(.large) .destination-name {
    font-size: 1.5rem;
}

.destination-description {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.destination-card:not(.large) .destination-description {
    font-size: 0.9rem;
}

.destination-stats {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--dark-primary);
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.testimonial-card {
    min-width: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-primary);
    font-size: 1.3rem;
    border: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .author-avatar::before {
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.author-name {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-location {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(255, 107, 53, 0.1) 100%),
        var(--dark-primary);
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--primary-gold);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.cta-feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-check {
    color: var(--dark-primary);
    font-size: 1.5rem;
    font-weight: 800;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-text strong {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.feature-text span {
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    color: var(--medium-gray);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-primary);
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition-normal);
}

.legal-links a:hover {
    color: var(--primary-gold);
    cursor: pointer;
}

/* Policy Modal Styles */
.policy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    padding: 2rem;
}

.policy-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.policy-modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.policy-modal-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.policy-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.policy-modal-close:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.policy-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

.policy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.policy-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.policy-modal-body::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.policy-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

.policy-updated {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.policy-section ul li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.policy-section ul li::before {
    content: '→';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.policy-section ul li strong {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-modal-overlay {
        padding: 1rem;
    }

    .policy-modal-content {
        max-height: 90vh;
    }

    .policy-modal-header {
        padding: 1.5rem;
    }

    .policy-modal-header h2 {
        font-size: 1.5rem;
    }

    .policy-modal-body {
        padding: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 1rem;
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-premium);
}

.mobile-nav {
    display: flex;
    justify-content: space-around;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--medium-gray);
    transition: var(--transition-normal);
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    min-width: 60px;
}

.mobile-nav-item.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.mobile-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.mobile-nav-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gyms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
    
    .destination-card.large {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .featured-gyms,
    .destinations,
    .testimonials {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .search-widget {
        padding: 1.5rem;
    }
    
    .search-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gyms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gym-card-featured {
        max-width: none;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        height: auto;
    }
    
    .destination-card.large {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

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

    .hero-title {
        font-size: 2.5rem;
    }

    .search-widget {
        padding: 1rem;
    }

    .gym-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .testimonial-card {
        min-width: 250px;
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* ========================================
   MULTI-STEP FORM MODAL STYLES
   ======================================== */

/* Lead Modal Container */
.lead-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.lead-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.lead-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
    animation: modalSlideIn 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Progress Bar */
.modal-progress-bar {
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px 2px 0 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    transition: width 0.3s ease;
}

/* Modal Header */
.modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
}

.modal-subtitle {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: rotate(90deg);
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator.completed .step-number {
    background: #D4AF37;
    border-color: #D4AF37;
    color: var(--dark-primary);
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #D4AF37;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.step-label {
    font-size: 0.7rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Modal Body */
.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* Step Title */
.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

/* Option Grid */
.option-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.option-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.option-card.selected {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 107, 53, 0.1));
    border-color: #D4AF37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.option-input {
    display: none;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.option-text strong {
    color: var(--white);
    font-size: 1rem;
}

.option-text span {
    color: var(--light-gray);
    font-size: 0.875rem;
}

/* Form Elements in Modal */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
    color: var(--medium-gray);
}

.form-select option {
    background: var(--dark-primary);
    color: var(--white);
}

/* Range Slider */
.form-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(212, 175, 55, 0.2);
    outline: none;
    -webkit-appearance: none;
    margin: 0.5rem 0;
}

.form-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D4AF37;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
    transition: all 0.2s ease;
}

.form-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.7);
}

.form-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D4AF37;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--light-gray);
}

/* Form Note */
.form-note {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: var(--light-gray);
    font-size: 0.875rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

/* Modal Footer */
.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.modal-footer .btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .lead-modal-content {
        width: 95%;
        margin: 1rem auto;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .modal-subtitle {
        font-size: 0.85rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        font-size: 1.75rem;
    }

    .step-indicators {
        padding: 1rem 1.5rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .option-card {
        padding: 1rem;
    }

    .option-icon {
        font-size: 1.5rem;
    }

    .option-text strong {
        font-size: 0.9rem;
    }

    .option-text span {
        font-size: 0.8rem;
    }

    .modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .step-indicators {
        padding: 1rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .step-label {
        font-size: 0.6rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .option-content {
        flex-direction: column;
        text-align: center;
    }
}