/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #4A148C;
    --secondary-gold: #FFD700;
    --accent-teal: #00BCD4;
    --dark-navy: #1A237E;
    --deep-purple: #2E1065;
    --light-purple: #7B1FA2;
    --gradient-primary: linear-gradient(135deg, #4A148C 0%, #1A237E 100%);
    --gradient-secondary: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    --gradient-cosmic: linear-gradient(135deg, #1A237E 0%, #4A148C 50%, #7B1FA2 100%);
    --text-white: #FFFFFF;
    --text-light: #E8EAF6;
    --text-gold: #FFD700;
    --shadow-primary: 0 10px 30px rgba(74, 20, 140, 0.3);
    --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--gradient-cosmic);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-gold);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--secondary-gold);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-navy);
    min-width: 250px;
    box-shadow: var(--shadow-primary);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--primary-purple);
    color: var(--secondary-gold);
}

.cta-button {
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-secondary);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/cosmic_background.jpg') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-cosmic);
    opacity: 0.8;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--text-white);
    padding: 1rem 2rem;
    border: 2px solid var(--secondary-gold);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--secondary-gold);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: rgba(26, 35, 126, 0.1);
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
    border-color: var(--secondary-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-navy);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--secondary-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(74, 20, 140, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.lead {
    font-size: 1.3rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
    font-family: 'Playfair Display', serif;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: rgba(26, 35, 126, 0.2);
    text-align: center;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: var(--secondary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--secondary-gold);
    transform: scale(1.2);
}

/* Resources Section */
.resources {
    padding: 6rem 0;
    background: rgba(74, 20, 140, 0.1);
}

.resources-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.resources-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.resources-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.resources-list {
    list-style: none;
}

.resources-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.resources-list i {
    color: var(--secondary-gold);
    font-size: 1.2rem;
}

.resources-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.resources-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-align: center;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-form input {
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
}

.email-form input::placeholder {
    color: var(--text-light);
}

.email-form button {
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: rgba(26, 35, 126, 0.2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.contact-item i {
    color: var(--secondary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-align: center;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: var(--text-light);
}

.consultation-form select {
    cursor: pointer;
}

.consultation-form button {
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.consultation-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p,
.footer-section li {
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-light);
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-navy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-primary);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .resources-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2,
    .about-text h2,
    .resources-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .service-card,
    .resources-form,
    .contact-form {
        padding: 1.5rem;
    }
}


/* Service Page Styles */
.service-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-cosmic);
    position: relative;
    overflow: hidden;
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.service-overview {
    padding: 6rem 0;
    background: rgba(26, 35, 126, 0.1);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.overview-text .lead {
    font-size: 1.3rem;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.overview-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: rgba(74, 20, 140, 0.1);
}

.how-it-works h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-gold);
    box-shadow: var(--shadow-primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: rgba(26, 35, 126, 0.2);
}

.benefits h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-gold);
    box-shadow: var(--shadow-primary);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Packages Section */
.packages {
    padding: 6rem 0;
    background: rgba(74, 20, 140, 0.1);
}

.packages h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 4rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: var(--secondary-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    color: var(--text-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    line-height: 1.5;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-btn {
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Service Testimonials */
.service-testimonials {
    padding: 6rem 0;
    background: rgba(26, 35, 126, 0.2);
}

.service-testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-gold);
    box-shadow: var(--shadow-primary);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-card .testimonial-author h4 {
    color: var(--secondary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-card .testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: rgba(74, 20, 140, 0.1);
}

.faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-gold);
    box-shadow: var(--shadow-secondary);
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 6rem 0;
    background: var(--gradient-cosmic);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-grid,
    .benefits-grid,
    .packages-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .service-hero {
        padding: 6rem 0 3rem;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .overview-text h2,
    .how-it-works h2,
    .benefits h2,
    .packages h2,
    .service-testimonials h2,
    .faq h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}


/* Celebrity Endorsement Section */
.celebrity-endorsement {
    padding: 6rem 0;
    background: rgba(26, 35, 126, 0.15);
    position: relative;
    overflow: hidden;
}

.celebrity-endorsement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(74, 20, 140, 0.05) 100%);
    z-index: 1;
}

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

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

.endorsement-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.endorsement-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-gold);
    font-weight: 500;
}

.endorsement-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.celebrity-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.celebrity-image {
    text-align: center;
}

.celebrity-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-gold);
    box-shadow: var(--shadow-primary);
}

.celebrity-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.celebrity-bio {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.celebrity-bio h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.celebrity-bio p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.celebrity-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-gold);
}

.credential i {
    color: var(--secondary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.credential span {
    color: var(--text-white);
    font-weight: 500;
}

.endorsement-video {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-primary);
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 400px;
}

.video-caption {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.video-caption p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.video-caption strong {
    color: var(--secondary-gold);
}

/* Video Controls Styling */
.video-container video::-webkit-media-controls-panel {
    background-color: rgba(26, 35, 126, 0.9);
}

.video-container video::-webkit-media-controls-play-button {
    background-color: var(--secondary-gold);
    border-radius: 50%;
}

/* Responsive Design for Celebrity Endorsement */
@media (max-width: 768px) {
    .endorsement-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .celebrity-info {
        text-align: center;
    }
    
    .celebrity-image img {
        width: 150px;
        height: 150px;
    }
    
    .celebrity-details h3 {
        font-size: 1.5rem;
    }
    
    .celebrity-bio {
        padding: 1.5rem;
    }
    
    .endorsement-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .celebrity-endorsement {
        padding: 4rem 0;
    }
    
    .celebrity-credentials {
        gap: 0.5rem;
    }
    
    .credential {
        padding: 0.5rem 0.75rem;
    }
    
    .video-container {
        padding: 0.5rem;
    }
}


/* Professional Credentials Section */
.credentials {
    padding: 6rem 0;
    background: rgba(74, 20, 140, 0.1);
    position: relative;
    overflow: hidden;
}

.credentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(26, 35, 126, 0.03) 100%);
    z-index: 1;
}

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

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

.credentials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.credentials-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-gold);
    font-weight: 500;
}

.credentials-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.credential-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.certification-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cert-badge,
.cert-date,
.cert-specialty {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-gold);
}

.cert-badge i,
.cert-date i,
.cert-specialty i {
    color: var(--secondary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.cert-badge span,
.cert-date span,
.cert-specialty span {
    color: var(--text-white);
    font-weight: 500;
}

.certification-description {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.certification-description p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.certification-description p:last-child {
    margin-bottom: 0;
}

.certification-benefits {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.certification-benefits h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

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

.certification-benefits li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.certification-benefits li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-size: 1.2rem;
}

.certificate-display {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.certificate-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-primary);
    overflow: hidden;
}

.certificate-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.certificate-container:hover .certificate-image {
    transform: scale(1.02);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.certificate-container:hover .certificate-overlay {
    opacity: 1;
}

.view-certificate-btn {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-certificate-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.certificate-caption {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.certificate-caption p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.certificate-caption strong {
    color: var(--secondary-gold);
}

/* Certificate Modal */
.certificate-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: -10px;
    right: 10px;
    color: var(--secondary-gold);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-modal:hover {
    color: #ffed4e;
}

.modal-certificate {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Credentials */
@media (max-width: 768px) {
    .credentials-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .credential-info {
        order: 2;
    }
    
    .certificate-display {
        order: 1;
    }
    
    .credentials-header h2 {
        font-size: 2rem;
    }
    
    .credential-info h3 {
        font-size: 1.5rem;
    }
    
    .certification-details {
        gap: 0.75rem;
    }
    
    .cert-badge,
    .cert-date,
    .cert-specialty {
        padding: 0.75rem 1rem;
    }
    
    .certification-description,
    .certification-benefits {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .credentials {
        padding: 4rem 0;
    }
    
    .credentials-header {
        margin-bottom: 3rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 10px;
    }
    
    .close-modal {
        font-size: 2.5rem;
        top: -5px;
        right: 5px;
    }
}


/* Enhanced Professional Credentials Section */
.credentials {
    padding: 8rem 0;
    background: rgba(74, 20, 140, 0.1);
    position: relative;
    overflow: hidden;
}

.credentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(26, 35, 126, 0.03) 100%);
    z-index: 1;
}

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

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

.credentials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.credentials-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-gold);
    font-weight: 500;
}

/* Credentials Overview */
.credentials-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

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

.overview-description {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.overview-description p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Certificate Carousel */
.certificate-carousel {
    margin-bottom: 5rem;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.carousel-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-white);
    margin: 0;
}

.carousel-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--secondary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--secondary-gold);
    transform: scale(1.2);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.certificate-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
}

.certificate-slide.active {
    display: grid;
}

.certificate-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
}

.cert-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cert-badge,
.cert-date,
.cert-specialty {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-gold);
}

.cert-badge i,
.cert-date i,
.cert-specialty i {
    color: var(--secondary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.cert-badge span,
.cert-date span,
.cert-specialty span {
    color: var(--text-white);
    font-weight: 500;
}

.cert-description p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.certificate-display {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.certificate-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-primary);
    overflow: hidden;
    cursor: pointer;
}

.certificate-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.certificate-container:hover .certificate-image {
    transform: scale(1.02);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.certificate-container:hover .certificate-overlay {
    opacity: 1;
}

.view-certificate-btn {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-certificate-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Comprehensive Benefits */
.comprehensive-benefits {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 4rem;
}

.comprehensive-benefits h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-gold), #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.benefit-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Certificate Modals */
.certificate-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 20px;
    width: 90%;
    max-width: 900px;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: -10px;
    right: 10px;
    color: var(--secondary-gold);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-modal:hover {
    color: #ffed4e;
}

.modal-certificate {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    margin-top: 2rem;
    text-align: center;
}

.modal-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

.modal-caption p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Responsive Design for Enhanced Credentials */
@media (max-width: 1024px) {
    .credentials-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .certificate-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .credentials {
        padding: 6rem 0;
    }
    
    .credentials-header h2 {
        font-size: 2.2rem;
    }
    
    .carousel-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .certificate-slide {
        padding: 2rem;
    }
    
    .certificate-info h4 {
        font-size: 1.5rem;
    }
    
    .comprehensive-benefits {
        padding: 3rem 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 10px;
    }
    
    .close-modal {
        font-size: 2.5rem;
        top: -5px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .overview-description {
        padding: 2rem;
    }
    
    .cert-details {
        gap: 0.75rem;
    }
    
    .cert-badge,
    .cert-date,
    .cert-specialty {
        padding: 0.75rem 1rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
}


/* Enhanced Dual Celebrity Endorsement Styles */
.celebrity-endorsement {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.15) 0%, rgba(26, 35, 126, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.celebrity-endorsement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.endorsement-header {
    text-align: center;
    margin-bottom: 5rem;
}

.endorsement-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-gold), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.endorsement-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 500;
}

.endorsement-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.endorsement-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.endorsement-secondary {
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.celebrity-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.celebrity-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    margin: 0 auto;
    position: relative;
}

.celebrity-image::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--secondary-gold), #ffed4e, var(--secondary-gold));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.celebrity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.celebrity-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-gold);
    text-align: center;
    margin-bottom: 2rem;
}

.celebrity-bio h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.celebrity-bio p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.celebrity-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-gold);
    transition: all 0.3s ease;
}

.credential:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.credential i {
    color: var(--secondary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.credential span {
    color: var(--text-white);
    font-weight: 500;
}

.endorsement-video {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary-gold), transparent, var(--secondary-gold));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-container:hover video {
    transform: scale(1.02);
}

.video-caption {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
}

.video-caption p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
}

.video-caption strong {
    color: var(--secondary-gold);
    font-weight: 600;
}

/* Responsive Design for Dual Celebrity Endorsements */
@media (max-width: 1024px) {
    .endorsement-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    
    .celebrity-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .celebrity-endorsement {
        padding: 6rem 0;
    }
    
    .endorsement-header h2 {
        font-size: 2.5rem;
    }
    
    .endorsement-subtitle {
        font-size: 1.2rem;
    }
    
    .endorsement-main {
        padding: 2rem;
        margin-bottom: 4rem;
    }
    
    .celebrity-image {
        width: 150px;
        height: 150px;
    }
    
    .celebrity-details h3 {
        font-size: 1.7rem;
    }
    
    .celebrity-bio h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .endorsement-main {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .celebrity-image {
        width: 120px;
        height: 120px;
    }
    
    .celebrity-details h3 {
        font-size: 1.5rem;
    }
    
    .credential {
        padding: 0.75rem 1rem;
    }
    
    .video-caption {
        padding: 1rem;
    }
}

