/* Elite Medical Services - Premium Healthcare Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #1ed7ab, #229d82, #00b990);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 185, 144, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo i {
    font-size: 2.2rem;
    margin-right: 12px;
    color: #1ed7ab;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #1ed7ab;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1ed7ab, #229d82);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.premium-cta {
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    color: white !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 185, 144, 0.3);
}

.nav-link.premium-cta::after {
    display: none;
}

.nav-link.premium-cta:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 185, 144, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ace3d0 0%, #ffffff 50%, #d7f8ed 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 185, 144, 0.05) 0%, 
        rgba(255, 215, 0, 0.03) 50%, 
        rgba(184, 134, 11, 0.05) 100%);
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 185, 144, 0.1), rgba(255, 215, 0, 0.05));
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.05; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.1; }
    75% { transform: translateY(-20px) rotate(270deg); opacity: 0.05; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 185, 144, 0.1);
    border: 2px solid rgba(0, 185, 144, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #00b990;
}

.hero-badge i {
    color: #1ed7ab;
    font-size: 1.2rem;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 500px;
}

.hero-highlights {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 185, 144, 0.2);
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-text h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.highlight-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1ed7ab, #229d82, #00b990);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 185, 144, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 185, 144, 0.4);
}

.btn-outline {
    background: transparent;
    color: #1ed7ab;
    border: 2px solid #1ed7ab;
}

.btn-outline:hover {
    background: #1ed7ab;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 185, 144, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Luxury Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.luxury-card {
    width: 350px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.luxury-card:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 185, 144, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 185, 144, 0.2);
}

.card-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo i {
    font-size: 1.5rem;
    color: white;
}

.card-title h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    font-family: 'Playfair Display', serif;
}

.card-title p {
    color: #1ed7ab;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.card-body {
    padding: 2rem;
}

.member-info {
    margin-bottom: 2rem;
}

.member-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 0.9rem;
}

.feature i {
    color: #1ed7ab;
    font-size: 1rem;
    width: 20px;
}

.card-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.premium-badge {
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 185, 144, 0.3);
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    animation: floatElements 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-element i {
    color: #1ed7ab;
    font-size: 1rem;
}

.element-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.element-2 {
    bottom: 35%;
    left: -30px;
    animation-delay: 2s;
}

.element-3 {
    top: 60%;
    right: 10px;
    animation-delay: 4s;
}

@keyframes floatElements {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1ed7ab, #229d82);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #ace3d0 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.prestige-intro h3 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.prestige-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.elite-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #1ed7ab;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 185, 144, 0.3);
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-content h4 {
    font-size: 2.2rem;
    color: #1ed7ab;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-content p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.philosophy h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.philosophy p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.luxury-facility {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border-radius: 25px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.luxury-facility::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 185, 144, 0.1));
    transform: rotate(45deg);
}

.facility-image {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.facility-image i {
    font-size: 4rem;
    color: #1ed7ab;
    margin-bottom: 1rem;
}

.facility-image h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.facility-image p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

.facility-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.facility-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 185, 144, 0.2);
    transition: all 0.3s ease;
}

.facility-feature:hover {
    background: rgba(0, 185, 144, 0.1);
    border-color: rgba(0, 185, 144, 0.4);
}

.facility-feature i {
    color: #1ed7ab;
    font-size: 1.2rem;
    width: 20px;
}

.facility-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: white;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-category {
    background: #ace3d0;
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.service-category.primary {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: white;
}

.service-category.secondary {
    background: linear-gradient(135deg, #ace3d0, #ffffff);
    border: 2px solid rgba(0, 185, 144, 0.2);
}

.service-category.tertiary {
    background: linear-gradient(135deg, #ffffff, #d7f8ed);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 185, 144, 0.3);
}

.service-category.primary .category-icon {
    background: linear-gradient(135deg, #229d82, #1ed7ab);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-title h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.service-category.primary .category-title h3 {
    color: white;
}

.category-title p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #1ed7ab;
}

.service-category.primary .service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 185, 144, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.premium {
    border: 2px solid #1ed7ab;
    background: linear-gradient(135deg, #ffffff, #fffef8);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-header i {
    font-size: 2rem;
    color: #1ed7ab;
    margin-right: 1rem;
}

.service-header h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    flex: 1;
}

.premium-badge {
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a4a4a;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1ed7ab;
    font-weight: bold;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1ed7ab;
    text-align: right;
    font-family: 'Playfair Display', serif;
}

/* Physicians Section */
.physicians {
    padding: 120px 0;
    background: linear-gradient(135deg, #ace3d0 0%, #ffffff 100%);
}

.physicians-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.physician-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.physician-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.physician-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.physician-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 185, 144, 0.1), transparent);
}

.image-placeholder {
    position: relative;
    z-index: 1;
}

.image-placeholder i {
    font-size: 4rem;
    color: #1ed7ab;
}

.physician-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.physician-info {
    padding: 2.5rem;
}

.physician-info h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.specialty {
    color: #1ed7ab;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.physician-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: #ace3d0;
    border-radius: 10px;
    border-left: 4px solid #1ed7ab;
}

.credential i {
    color: #1ed7ab;
    font-size: 1rem;
    width: 16px;
}

.credential span {
    color: #4a4a4a;
    font-size: 0.9rem;
    font-weight: 500;
}

.physician-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.physician-specialties {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.specialty-tag {
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Membership Section */
.membership {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.membership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" stop-color="%231ed7ab" stop-opacity="0.05"/><stop offset="100%" stop-color="%231ed7ab" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad)"/><circle cx="800" cy="600" r="250" fill="url(%23grad)"/></svg>') no-repeat;
    background-size: cover;
}

.membership .container {
    position: relative;
    z-index: 1;
}

.membership .section-header h2,
.membership .section-header p {
    color: white;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.membership-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 185, 144, 0.3);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 185, 144, 0.05), transparent);
    pointer-events: none;
}

.membership-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 185, 144, 0.6);
    box-shadow: 0 20px 60px rgba(0, 185, 144, 0.2);
}

.membership-card.featured {
    transform: scale(1.05);
    border-color: #1ed7ab;
    background: rgba(0, 185, 144, 0.1);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.membership-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 185, 144, 0.3);
}

.membership-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.tier-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gold-badge {
    background: linear-gradient(135deg, #229d82, #00b990);
}

.platinum-badge {
    background: linear-gradient(135deg, #e5e5e5, #a0a0a0);
}

.diamond-badge {
    background: linear-gradient(135deg, #b9f2ff, #4fc3f7);
}

.tier-badge i {
    font-size: 2rem;
    color: white;
}

.membership-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.membership-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    opacity: 0.8;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1ed7ab;
    font-family: 'Playfair Display', serif;
}

.period {
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: 500;
}

.membership-subtitle {
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
}

.membership-benefits {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.membership-benefits h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #1ed7ab;
    font-family: 'Playfair Display', serif;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: #1ed7ab;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.membership-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.membership-note {
    background: rgba(0, 185, 144, 0.1);
    border: 2px solid rgba(0, 185, 144, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.note-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.note-content i {
    font-size: 2rem;
    color: #1ed7ab;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.note-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-align: left;
}

.note-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    text-align: left;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ace3d0, #ffffff);
    border: 2px solid rgba(0, 185, 144, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    display: none;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 185, 144, 0.02), transparent);
    pointer-events: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.client-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 185, 144, 0.3);
}

.client-details h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.client-details p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.membership-tier {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars i {
    color: #229d82;
    font-size: 1.3rem;
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #1a1a1a;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '“';
    font-size: 4rem;
    color: rgba(0, 185, 144, 0.3);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.testimonial-footer {
    text-align: right;
    position: relative;
    z-index: 1;
}

.member-since {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 185, 144, 0.3);
}

.carousel-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 185, 144, 0.4);
}

.carousel-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #1ed7ab;
    transform: scale(1.3);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #ace3d0 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: white;
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 185, 144, 0.1));
    transform: rotate(45deg);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-header i {
    font-size: 2.5rem;
    color: #1ed7ab;
}

.contact-header h3 {
    font-size: 1.8rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 185, 144, 0.3);
}

.contact-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-text p {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.amenities-card {
    background: white;
    border: 2px solid rgba(0, 185, 144, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.amenities-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ace3d0;
    border-radius: 12px;
    border-left: 4px solid #1ed7ab;
    transition: all 0.3s ease;
}

.amenity:hover {
    background: rgba(0, 185, 144, 0.1);
    transform: translateX(5px);
}

.amenity i {
    color: #1ed7ab;
    font-size: 1.2rem;
    width: 20px;
}

.amenity span {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form-section {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 185, 144, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Elite Form Styles */
.elite-form,
.consultation-form,
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 185, 144, 0.2);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(0, 185, 144, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1ed7ab;
    box-shadow: 0 0 0 4px rgba(0, 185, 144, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.radio-option input[type="radio"] {
    width: auto;
    accent-color: #1ed7ab;
    transform: scale(1.2);
}

.radio-option label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: #1ed7ab;
    transform: scale(1.2);
}

.checkbox-group label {
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.interests-grid .checkbox-group {
    margin-bottom: 0;
}

.privacy-note,
.privacy-section {
    background: rgba(0, 185, 144, 0.05);
    border: 1px solid rgba(0, 185, 144, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.elite-submit {
    background: linear-gradient(135deg, #1ed7ab, #229d82, #00b990);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 185, 144, 0.3);
    position: relative;
    overflow: hidden;
}

.elite-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.elite-submit:hover::before {
    left: 100%;
}

.elite-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 185, 144, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="footerGrad"><stop offset="0%" stop-color="%231ed7ab" stop-opacity="0.03"/><stop offset="100%" stop-color="%231ed7ab" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="200" fill="url(%23footerGrad)"/><circle cx="900" cy="500" r="300" fill="url(%23footerGrad)"/></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section.main {
    max-width: 400px;
}

.footer-section h3 {
    margin-bottom: 2rem;
    color: #1ed7ab;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-logo i {
    font-size: 2.5rem;
    margin-right: 15px;
    color: #1ed7ab;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ccc;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certification {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 185, 144, 0.1);
    border-radius: 10px;
    border-left: 3px solid #1ed7ab;
}

.certification i {
    color: #1ed7ab;
    font-size: 1.2rem;
    width: 20px;
}

.certification span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    display: block;
    padding: 5px 0;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #1ed7ab;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1ed7ab;
    padding-left: 20px;
}

.footer-section ul li a:hover::before {
    width: 15px;
}

.footer-contact {
    background: rgba(0, 185, 144, 0.05);
    border: 1px solid rgba(0, 185, 144, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.contact-detail i {
    color: #1ed7ab;
    font-size: 1.2rem;
    width: 20px;
}

.contact-detail span {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 185, 144, 0.2);
    color: #999;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s ease;
}

.elite-modal {
    border: 2px solid rgba(0, 185, 144, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 2px solid rgba(0, 185, 144, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    color: white;
    border-radius: 25px 25px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 185, 144, 0.1), transparent);
    pointer-events: none;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.modal-header h2 i {
    color: #1ed7ab;
}

.close {
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 185, 144, 0.1);
    position: relative;
    z-index: 1;
}

.close:hover {
    background: rgba(0, 185, 144, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 3rem;
}

/* Policy Content */
.policy-content h3,
.terms-content h3 {
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.policy-content h3:first-child,
.terms-content h3:first-child {
    margin-top: 0;
}

.policy-content p,
.terms-content p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.success-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    max-width: 500px;
    width: 90%;
    animation: successSlideIn 0.6s ease;
}

.elite-success {
    border: 2px solid rgba(0, 185, 144, 0.3);
}

@keyframes successSlideIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.success-content i {
    font-size: 5rem;
    color: #1ed7ab;
    margin-bottom: 1.5rem;
}

.success-content h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.success-content p {
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Loading Animation */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }
    
    .about-content,
    .contact-content {
        gap: 3rem;
    }
    
    .membership-tiers {
        grid-template-columns: 1fr;
    }
    
    .membership-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 3rem 0;
        gap: 2rem;
        border-top: 1px solid rgba(0, 185, 144, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-highlights {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .luxury-card {
        transform: none;
        width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .elite-stats {
        grid-template-columns: 1fr;
    }

    .services-showcase .service-grid {
        grid-template-columns: 1fr;
    }

    .physicians-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .about, .services, .physicians, .membership, .testimonials, .contact {
        padding: 80px 0;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-header,
    .modal-body {
        padding: 2rem;
    }

    .interests-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 18px 32px;
        font-size: 1.1rem;
    }

    .luxury-card {
        width: 280px;
        transform: none;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .facility-features {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .close {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .success-content {
        padding: 3rem 2rem;
    }

    .carousel-controls {
        gap: 1rem;
    }

    .floating-element {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .modal,
    .floating-elements,
    .geometric-shapes {
        display: none;
    }

    .hero {
        margin-top: 0;
        background: white;
        color: #000;
        min-height: auto;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }

    .section-header h2 {
        font-size: 22pt;
        color: #000;
    }

    .gradient-text {
        color: #000 !important;
        -webkit-text-fill-color: #000;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1ed7ab, #229d82);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00b990, #1ed7ab);
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
.nav-link:focus,
.carousel-btn:focus,
.indicator:focus {
    outline: 3px solid rgba(0, 185, 144, 0.5);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .membership-card,
    .testimonial-card,
    .physician-card {
        border-width: 3px;
        border-color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .geometric-shapes,
    .floating-elements,
    .btn::before {
        animation: none;
    }
}