/* Prime Healthcare Solution - CSS */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 1, 143, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    color: #e004a4;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 32px;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e004a4;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-appointment {
    background: linear-gradient(135deg, #e004a4, #ff008a) !important;
    color: white !important;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 1, 143, 0.3);
}

.btn-appointment::after {
    display: none;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 1, 143, 0.4);
    background: linear-gradient(135deg, #ff008a, #ef0684) !important;
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e004a4;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #fadef2 0%, #facbed 50%, #fcb2e8 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e004a4" stroke-width="0.3" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.6;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content .highlight {
    background: linear-gradient(135deg, #e004a4, #ff008a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e004a4;
    margin-bottom: 5px;
}

.stat-item p {
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    animation: fadeInRight 0.8s ease 1s both;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 1, 143, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 1, 143, 0.1);
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 1, 143, 0.2);
}

.hero-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.hero-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #e004a4, #ff008a);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 1, 143, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff008a, #ef0684);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 1, 143, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #e004a4;
    border: 2px solid #e004a4;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #e004a4;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #e004a4;
    border: 2px solid #e004a4;
}

.btn-outline:hover {
    background: #e004a4;
    color: white;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 1, 143, 0.1);
    color: #e004a4;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 1, 143, 0.2);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-card {
    background: linear-gradient(135deg, #e004a4, #ff008a);
    border-radius: 25px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" fill-opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.7;
}

.card-content {
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-card p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.card-metrics {
    display: flex;
    gap: 30px;
}

.metric {
    text-align: center;
}

.metric .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.metric .label {
    font-size: 14px;
    opacity: 0.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 1, 143, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 1, 143, 0.2);
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #e004a4;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 1, 143, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #e004a4, #ff008a);
    color: white;
    transform: scale(1.05);
}

.service-card.featured::before {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(0);
}

.service-card.special {
    border: 2px solid #e004a4;
    background: rgba(255, 1, 143, 0.03);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 1, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #e004a4;
    font-size: 14px;
}

.service-card.featured .service-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 1, 143, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2.2rem;
    color: #e004a4;
    transition: all 0.3s ease;
}

.service-card.featured .service-icon i {
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e004a4;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-card.featured .service-link {
    color: white;
}

.service-link:hover {
    gap: 12px;
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0;
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.choose-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.choose-icon i {
    font-size: 1.5rem;
    color: white;
}

.choose-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.choose-content p {
    color: #6b7280;
    line-height: 1.7;
}

.choose-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background: #f9fafb;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 1, 143, 0.05);
    border-color: #e004a4;
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 5px;
}

.stat-info p {
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
}

/* Plans Section */
.plans {
    padding: 120px 0;
    background: #f9fafb;
}

.plans-container {
    max-width: 1000px;
    margin: 0 auto;
}

.plan-switcher {
    display: flex;
    justify-content: center;
    gap: 5px;
    background: white;
    padding: 5px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 1px solid #e5e7eb;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.plan-switch {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.plan-switch.active {
    background: linear-gradient(135deg, #e004a4, #ff008a);
    color: white;
}

.discount {
    font-size: 12px;
    background: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.plan-card:hover::before {
    transform: translateX(0);
}

.plan-card:hover {
    border-color: #e004a4;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 1, 143, 0.15);
}

.plan-card.premium {
    border-color: #e004a4;
    background: linear-gradient(135deg, rgba(255, 1, 143, 0.05), rgba(5, 150, 105, 0.03));
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 1, 143, 0.2);
}

.plan-card.premium::before {
    transform: translateX(0);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e004a4, #ff008a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 1, 143, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
}

.plan-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e004a4;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e004a4;
}

.yearly-price {
    display: none;
}

.period {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

.plan-header p {
    color: #6b7280;
    line-height: 1.6;
}

.plan-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature i {
    color: #e004a4;
    font-size: 16px;
    width: 20px;
}

.feature span {
    color: #374151;
    line-height: 1.6;
}

.plan-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: white;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: #f9fafb;
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e004a4, #ff008a);
}

.quote-icon {
    margin-bottom: 25px;
}

.quote-icon i {
    font-size: 3rem;
    color: #e004a4;
    opacity: 0.7;
}

.testimonial-content p {
    font-size: 1.3rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 30px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.2rem;
    margin: 0 2px;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.author-info p {
    color: #e004a4;
    font-weight: 500;
    margin-bottom: 5px;
}

.author-info span {
    color: #6b7280;
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e004a4;
    background: white;
    color: #e004a4;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #e004a4;
    color: white;
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e004a4;
    transform: scale(1.2);
}

/* Appointment Section */
.appointment {
    padding: 120px 0;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    color: white;
    position: relative;
    overflow: hidden;
}

.appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="medical" width="50" height="50" patternUnits="userSpaceOnUse"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="25" cy="25" r="2"/><path d="M25 15 L25 35 M15 25 L35 25" stroke="%23ffffff" stroke-opacity="0.05" stroke-width="1"/></g></pattern></defs><rect width="100" height="100" fill="url(%23medical)"/></svg>') repeat;
    opacity: 0.6;
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.appointment-info .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.appointment-info h2 {
    color: white;
}

.appointment-info p {
    color: rgba(255, 255, 255, 0.9);
}

.appointment-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit i {
    font-size: 1.5rem;
    color: #fef3c7;
    margin-top: 5px;
    flex-shrink: 0;
}

.benefit h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.benefit p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.appointment-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-header p {
    color: #6b7280;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e004a4;
    box-shadow: 0 0 0 3px rgba(255, 1, 143, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    gap: 60px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: translateX(0);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 1, 143, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e004a4, #ff008a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.contact-info p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-link {
    color: #e004a4;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ff008a;
}

.contact-form {
    background: white;
    border-radius: 25px;
    padding: 50px;
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-header {
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 50px;
}

.footer-section.main {
    max-width: 450px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    color: #e004a4;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 32px;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 1, 143, 0.1);
    border: 2px solid rgba(255, 1, 143, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e004a4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e004a4;
    border-color: #e004a4;
    color: white;
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #e004a4;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #e004a4;
    padding-left: 5px;
}

.newsletter-signup {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #374151;
    border-radius: 8px;
    background: #374151;
    color: white;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-input:focus {
    outline: none;
    border-color: #e004a4;
}

.newsletter-btn {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e004a4;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 50px;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-icon {
    margin-bottom: 25px;
}

.modal-icon i {
    font-size: 4rem;
    color: #e004a4;
}

.modal-content h2 {
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.8rem;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #9ca3af;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #374151;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .why-choose-content,
    .appointment-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .choose-stats {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card.premium {
        transform: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-section.main {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        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 30px rgba(0,0,0,0.1);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-card-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: none;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section.main {
        grid-column: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-signup {
        flex-direction: column;
    }

    .testimonial-nav {
        flex-direction: column;
        gap: 20px;
    }

    .modal-content {
        margin: 25% auto;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .appointment-form,
    .contact-form {
        padding: 30px 20px;
    }

    .modal-content {
        margin: 30% auto;
        padding: 25px;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Year Price Toggle */
.yearly-active .monthly-price {
    display: none;
}

.yearly-active .yearly-price {
    display: inline;
}

/* Loading Animation */
body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/****************Newsletter Page******************/
.newsletter-page {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #fadef2 0%, #facbed 50%, #fcb2e8 100%);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        .newsletter-page::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="medical" width="50" height="50" patternUnits="userSpaceOnUse"><g fill="%23e004a4" fill-opacity="0.1"><circle cx="25" cy="25" r="2"/><path d="M25 15 L25 35 M15 25 L35 25" stroke="%23e004a4" stroke-opacity="0.1" stroke-width="1"/></g></pattern></defs><rect width="100" height="100" fill="url(%23medical)"/></svg>') repeat;
            opacity: 0.6;
        }
        .newsletter-content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 60px;
            border-radius: 30px;
            box-shadow: 0 25px 50px rgba(255, 1, 143, 0.2);
            max-width: 650px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 1, 143, 0.2);
        }
        .newsletter-content h1 {
            background: linear-gradient(135deg, #e004a4, #ff008a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
        }
        .newsletter-content .subtitle {
            text-align: center;
            color: #6b7280;
            margin-bottom: 40px;
            font-size: 1.2rem;
            line-height: 1.6;
        }
        .benefits {
            background: rgba(255, 1, 143, 0.05);
            border: 2px solid rgba(255, 1, 143, 0.1);
            padding: 35px;
            border-radius: 20px;
            margin-bottom: 40px;
        }
        .benefits h3 {
            color: #1f2937;
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 700;
        }
        .benefits ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .benefits li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #374151;
            font-weight: 500;
        }
        .benefits i {
            color: #e004a4;
            font-size: 1.1rem;
            width: 20px;
            flex-shrink: 0;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #1f2937;
            font-weight: 600;
            font-size: 15px;
        }
        .form-group input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }
        .form-group input:focus {
            outline: none;
            border-color: #e004a4;
            box-shadow: 0 0 0 4px rgba(255, 1, 143, 0.1);
            background: #f9fafb;
        }
        .form-group input::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 35px;
            padding: 20px;
            background: rgba(255, 1, 143, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 1, 143, 0.1);
        }
        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-top: 6px;
            transform: scale(1.3);
            accent-color: #e004a4;
            flex-shrink: 0;
        }
        .checkbox-group label {
            color: #374151;
            line-height: 1.7;
            cursor: pointer;
            font-size: 15px;
        }
        .checkbox-group a {
            color: #e004a4;
            text-decoration: none;
            font-weight: 600;
        }
        .checkbox-group a:hover {
            text-decoration: underline;
        }
        .back-btn {
            margin-bottom: 40px;
            text-align: center;
        }
        .success-message {
            display: none;
            text-align: center;
            padding: 50px 20px;
        }
        .success-message i {
            font-size: 5rem;
            color: #e004a4;
            margin-bottom: 25px;
        }
        .success-message h2 {
            color: #1f2937;
            margin-bottom: 20px;
            font-size: 2rem;
            font-weight: 700;
        }
        .success-message p {
            color: #6b7280;
            margin-bottom: 35px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        .success-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .premium-features {
            background: linear-gradient(135deg, #e004a4, #ff008a);
            color: white;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .premium-features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" fill-opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
            opacity: 0.7;
        }
        .premium-content {
            position: relative;
            z-index: 1;
        }
        .premium-features h3 {
            color: white;
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.3rem;
        }
        .premium-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .premium-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        /*****************Terms Page*****************/

        
        .terms-page {
            padding: 140px 0 80px;
            background: #f9fafb;
            min-height: 100vh;
        }
        .terms-content {
            background: white;
            padding: 70px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(255, 1, 143, 0.1);
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid #e5e7eb;
        }
        .terms-content h1 {
            background: linear-gradient(135deg, #e004a4, #ff008a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            font-size: 3rem;
            font-weight: 800;
        }
        .terms-content h2 {
            color: #1f2937;
            margin: 40px 0 20px;
            font-size: 1.6rem;
            font-weight: 700;
            border-bottom: 3px solid #e004a4;
            padding-bottom: 15px;
            position: relative;
        }
        .terms-content h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #ff008a, #ef0684);
        }
        .terms-content p, .terms-content li {
            line-height: 1.8;
            margin-bottom: 16px;
            color: #374151;
            font-size: 16px;
        }
        .terms-content ul {
            margin: 20px 0 20px 40px;
        }
        .terms-content li {
            margin-bottom: 12px;
        }
        .back-btn {
            margin-bottom: 40px;
        }
        .highlight-box {
            background: rgba(255, 1, 143, 0.05);
            border-left: 4px solid #e004a4;
            padding: 25px;
            border-radius: 0 15px 15px 0;
            margin: 25px 0;
        }
        .important-notice {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
            border-left: 4px solid #ef4444;
            padding: 25px;
            border-radius: 0 15px 15px 0;
            margin: 25px 0;
        }
        .contact-box {
            background: #f9fafb;
            border: 2px solid #e004a4;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }
        .contact-box strong {
            color: #e004a4;
            font-size: 1.1rem;
        }

        /*******************Privacy Page*********************/
        
        .privacy-page {
            padding: 140px 0 80px;
            background: #f9fafb;
            min-height: 100vh;
        }
        .privacy-content {
            background: white;
            padding: 70px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(255, 1, 143, 0.1);
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid #e5e7eb;
        }
        .privacy-content h1 {
            background: linear-gradient(135deg, #e004a4, #ff008a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            font-size: 3rem;
            font-weight: 800;
        }
        .privacy-content h2 {
            color: #1f2937;
            margin: 40px 0 20px;
            font-size: 1.6rem;
            font-weight: 700;
            border-bottom: 3px solid #e004a4;
            padding-bottom: 15px;
            position: relative;
        }
        .privacy-content h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #ff008a, #ef0684);
        }
        .privacy-content p, .privacy-content li {
            line-height: 1.8;
            margin-bottom: 16px;
            color: #374151;
            font-size: 16px;
        }
        .privacy-content ul {
            margin: 20px 0 20px 40px;
        }
        .privacy-content li {
            margin-bottom: 12px;
        }
        .back-btn {
            margin-bottom: 40px;
        }
        .highlight-box {
            background: rgba(255, 1, 143, 0.05);
            border-left: 4px solid #e004a4;
            padding: 25px;
            border-radius: 0 15px 15px 0;
            margin: 25px 0;
        }
        .contact-box {
            background: #f9fafb;
            border: 2px solid #e004a4;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }
        .contact-box strong {
            color: #e004a4;
            font-size: 1.1rem;
        }