/* ARCANOVA Website Styles */
/* Inspired by cosmic energy and ARCANOVA branding */

:root {
    /* ARCANOVA Color Palette - Cosmic Theme */
    --primary-purple: #4a148c;
    --primary-deep-purple: #2e0a5b;
    --accent-gold: #ffc107;
    --accent-bright-gold: #ffb300;
    --cosmic-gradient: linear-gradient(135deg, #4a148c 0%, #7b1fa2 25%, #9c27b0 50%, #e91e63 75%, #ff5722 100%);
    --cosmic-bg: radial-gradient(circle at center, #1a0033 0%, #0d001a  50%, #000000 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e8e8e8;
    --text-accent: #ffc107;
    --text-dark: #333333;
    
    /* Background Colors */
    --bg-dark: #0d001a;
    --bg-semi-transparent: rgba(13, 0, 26, 0.9);
    --bg-card: rgba(255, 255, 255, 0.1);
    --bg-card-hover: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 20px;
    --border-radius: 15px;
    
    /* Effects */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --box-shadow-hover: 0 15px 40px rgba(74, 20, 140, 0.3);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--cosmic-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 10px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--cosmic-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Enhanced Logo Styles */
.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
    max-width: 200px;
    background: transparent;
    mix-blend-mode: normal;
}

.logo-svg, .logo-svg-fallback {
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

.logo-fallback {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    background: transparent;
    mix-blend-mode: normal;
}

/* Hero Logo Display */
.hero-logo-display {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-main-logo {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 193, 7, 0.8));
    animation: logoFloat 6s ease-in-out infinite;
    background: transparent;
    mix-blend-mode: normal;
}

.hero-logo-fallback {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 193, 7, 0.8));
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
        filter: drop-shadow(0 0 40px rgba(255, 193, 7, 1));
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-semi-transparent);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--cosmic-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--cosmic-gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--accent-gold);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cosmic-bg);
    padding-top: 100px; /* Add space for fixed navbar */
}

.hero::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 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" stop-color="%23ffc107" stop-opacity="0.1"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="300" r="150" fill="url(%23grad)"/><circle cx="300" cy="700" r="120" fill="url(%23grad)"/><circle cx="700" cy="800" r="80" fill="url(%23grad)"/></svg>') no-repeat center/cover;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--cosmic-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--cosmic-gradient);
    color: var(--text-primary);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Cosmic Circle Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cosmic-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--cosmic-gradient);
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: 
        0 0 50px rgba(255, 193, 7, 0.5),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.sacred-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,50 50,90 10,50" fill="none" stroke="%23ffc107" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23ffffff" stroke-width="1"/><polygon points="50,30 70,50 50,70 30,50" fill="none" stroke="%23ffc107" stroke-width="1"/></svg>') no-repeat center/contain;
    animation: rotate-reverse 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(74, 20, 140, 0.1) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card.featured {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.2);
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: var(--cosmic-gradient);
    color: white;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card > p {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.service-btn {
    background: var(--cosmic-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--accent-gold);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1) 0%, rgba(13, 0, 26, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(123, 31, 162, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.process-step {
    background: var(--bg-card);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    min-width: 280px;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 193, 7, 0.5);
    box-shadow: 0 15px 40px rgba(74, 20, 140, 0.2);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 193, 7, 0.02) 45deg, transparent 90deg);
    animation: rotate 25s linear infinite;
    pointer-events: none;
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--cosmic-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    position: relative;
    z-index: 2;
}

.step-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-title {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.4));
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.process-conclusion {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.conclusion-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

.conclusion-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

.conclusion-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.4));
    position: relative;
    z-index: 2;
}

.process-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .process-step {
        padding: 1.5rem 1rem;
        min-width: 250px;
        max-width: 280px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .step-icon {
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .conclusion-card {
        padding: 2rem 1.5rem;
    }
    
    .conclusion-icon {
        font-size: 2rem;
    }
    
    .process-description {
        font-size: 1.1rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--text-primary);
}

.testimonial-author span {
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1) 0%, var(--bg-dark) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: var(--primary-deep-purple);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    color: var(--text-secondary);
}

/* 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.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-card);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(20px);
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--accent-gold);
}

.payment-section {
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.payment-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.payment-amount {
    background: rgba(255, 193, 7, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.btn-payment {
    width: 100%;
    background: var(--cosmic-gradient);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--accent-gold);
}

.btn-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 0, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 193, 7, 0.3);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
        padding: 0.5rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 193, 7, 0.1);
        color: var(--accent-gold);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: var(--accent-gold);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .cosmic-circle {
        width: 200px;
        height: 200px;
    }

    /* Services Page Mobile Styles */
    .service-detail {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
        border: 2px solid rgba(255, 193, 7, 0.6);
        background: rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(74, 20, 140, 0.3), 
                    inset 0 1px 0 rgba(255, 193, 7, 0.2);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .service-detail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ffc107, #ff9800, #ffc107);
        animation: shimmer 2s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }

    .service-detail:hover {
        border-color: var(--accent-gold);
        box-shadow: 0 12px 40px rgba(74, 20, 140, 0.4), 
                    inset 0 1px 0 rgba(255, 193, 7, 0.3),
                    0 0 20px rgba(255, 193, 7, 0.3);
        transform: translateY(-2px);
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 2;
    }

    .service-icon-large {
        background: linear-gradient(135deg, #ffc107, #ff9800);
        color: #4a148c;
        padding: 1.5rem;
        font-size: 2.5rem;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        border-radius: 50%;
        border: 3px solid rgba(255, 193, 7, 0.3);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4),
                    inset 0 2px 0 rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .service-detail:hover .service-icon-large {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 30px rgba(255, 193, 7, 0.6),
                    inset 0 2px 0 rgba(255, 255, 255, 0.4);
    }

    .service-info h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        color: #ffc107;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        font-family: 'Cinzel', serif;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 1rem;
        text-align: center;
    }

    .service-benefits-detailed {
        margin-top: 1.5rem;
        background: rgba(74, 20, 140, 0.1);
        border-radius: 15px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 193, 7, 0.2);
    }

    .service-benefits-detailed h3 {
        margin-bottom: 1rem;
        color: var(--accent-gold);
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        font-family: 'Cinzel', serif;
    }

    .service-benefits-detailed ul {
        margin-bottom: 1.5rem;
        padding: 0;
        list-style: none;
    }

    .service-benefits-detailed li {
        padding: 0.8rem;
        font-size: 0.9rem;
        line-height: 1.5;
        border: 1px solid rgba(255, 193, 7, 0.2);
        border-radius: 8px;
        margin-bottom: 0.5rem;
        background: rgba(255, 255, 255, 0.03);
        transition: all 0.3s ease;
    }

    .service-benefits-detailed li:hover {
        background: rgba(255, 193, 7, 0.1);
        border-color: rgba(255, 193, 7, 0.4);
        transform: translateX(5px);
    }

    .service-benefits-detailed li:before {
        content: "✨";
        color: var(--accent-gold);
        font-weight: bold;
        margin-right: 0.8rem;
        font-size: 1rem;
    }

    .service-pricing {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
        margin-top: 2rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
        border-radius: 15px;
        border: 2px solid rgba(255, 193, 7, 0.3);
        position: relative;
        overflow: hidden;
    }

    .service-pricing::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
        transition: left 0.5s;
    }

    .service-pricing:hover::before {
        left: 100%;
    }

    .service-pricing .price {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        color: var(--accent-gold);
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        font-family: 'Cinzel', serif;
        position: relative;
        z-index: 2;
    }

    .service-pricing .btn-primary {
        width: 100%;
        max-width: 250px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        margin-top: 0.5rem;
        background: linear-gradient(135deg, #ffc107, #ff9800);
        border: none;
        border-radius: 25px;
        color: #4a148c;
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .service-pricing .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
        background: linear-gradient(135deg, #ffcd38, #ffa726);
    }

    .service-pricing .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    }

    /* Health Disclaimer Mobile */
    .health-disclaimer {
        background: rgba(255, 69, 58, 0.1);
        border: 2px solid rgba(255, 69, 58, 0.4);
        padding: 1.2rem;
        border-radius: 12px;
        margin: 1.5rem 0;
        text-align: center;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(255, 69, 58, 0.2);
    }

    .health-disclaimer h4 {
        color: #ff453a;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
        font-weight: 600;
        font-family: 'Cinzel', serif;
    }

    .health-disclaimer p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
    }

    .health-disclaimer strong {
        color: #ff453a;
        font-weight: 700;
    }
    .health-disclaimer {
        margin: 1.5rem 0;
        padding: 1rem;
        border-radius: 10px;
        background: rgba(255, 0, 0, 0.1);
        border: 1px solid #ff4444;
    }

    .health-disclaimer h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        color: #ff4444;
    }

    .health-disclaimer p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* FAQ Page Mobile */
    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* About Page Mobile */
    .about-hero {
        padding: 6rem 0 3rem;
    }

    .about-content {
        padding: 2rem 0;
    }

    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* SYRIS Method Mobile */
    .method-step {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .method-step h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .method-step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Contact Section Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        padding: 1rem;
        text-align: center;
    }

    .contact-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }

    /* Modal Mobile Styles */
    .modal-content {
        width: 95%;
        max-width: 400px;
        margin: 5% auto;
        padding: 1rem;
    }

    .modal h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Button Mobile Adjustments */
    .btn-primary,
    .btn-secondary,
    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-width: 120px;
    }

    .btn-book {
        width: 100%;
        padding: 1rem;
        margin-top: 1rem;
    }

    /* Card Mobile Improvements */
    .simple-card,
    .feature-card,
    .service-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .simple-card h3,
    .feature-card h3,
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .simple-card p,
    .feature-card p,
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Icon improvements for mobile */
    .card-icon,
    .feature-icon,
    .service-icon {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }

    /* Container padding for mobile */
    .container {
        padding: 0 1rem;
    }

    /* Section padding adjustments */
    .services,
    .about,
    .features,
    .process,
    .testimonials,
    .contact {
        padding: 3rem 0;
    }

    .sacred-geometry {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Additional Service Detail Styles for Small Screens */
    .service-detail {
        margin-bottom: 1.5rem;
        padding: 1.25rem 0.75rem;
    }

    .service-pricing {
        gap: 1.25rem;
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }

    .service-pricing .btn-primary {
        font-size: 0.9rem;
        padding: 0.9rem 1.25rem;
        max-width: 100%;
    }
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-bright-gold);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s;
}

img[src=""] {
    opacity: 0;
}

/* Payment Modal Styles */
.payment-modal, .qr-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.payment-modal-content, .qr-modal-content {
    background: var(--cosmic-gradient);
    background: linear-gradient(135deg, var(--primary-deep-purple) 0%, var(--primary-purple) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: var(--border-radius);
    padding: 0;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.3s ease-out;
}

.payment-header, .qr-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    border-bottom: 1px solid var(--accent-gold);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-header h3, .qr-header h3 {
    margin: 0;
    color: var(--accent-gold);
    font-family: var(--font-heading);
}

.close-payment-modal, .close-qr-modal {
    color: var(--accent-gold);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-payment-modal:hover, .close-qr-modal:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.payment-amount {
    text-align: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.payment-amount h4 {
    margin: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.payment-amount p {
    margin: 5px 0 0 0;
    color: var(--text-secondary);
}

.payment-options {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px 15px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.5s;
}

.payment-btn:hover::before {
    left: 100%;
}

.payment-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.payment-btn i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.payment-btn span {
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-btn small {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* Specific payment button colors */
.razorpay-btn:hover {
    background: rgba(0, 120, 255, 0.2);
}

.phonepe-btn:hover {
    background: rgba(93, 56, 192, 0.2);
}

.gpay-btn:hover {
    background: rgba(66, 133, 244, 0.2);
}

.upi-btn:hover {
    background: rgba(255, 111, 0, 0.2);
}

/* QR Modal Specific Styles */
.qr-modal-content {
    max-width: 400px;
}

.qr-body {
    padding: 30px;
    text-align: center;
}

.qr-code-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.qr-code-container img {
    display: block;
    margin: 0 auto;
}

.payment-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.payment-details p {
    margin: 5px 0;
    color: var(--text-secondary);
}

.payment-details strong {
    color: var(--accent-gold);
}

.qr-instructions {
    text-align: left;
    margin-bottom: 20px;
}

.qr-instructions p {
    margin: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.qr-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-paid, .btn-cancel {
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-paid {
    background: var(--cosmic-gradient);
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

.btn-paid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-cancel {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-secondary);
}

.btn-cancel:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* Modal Animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Payment Modal */
@media (max-width: 600px) {
    .payment-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .payment-btn {
        padding: 15px 12px;
    }
    
    .payment-modal-content, .qr-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .payment-header, .qr-header {
        padding: 15px 20px;
    }
    
    .payment-amount, .qr-body {
        padding: 20px;
    }
    
    .payment-options {
        padding: 20px;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Print styles */
@media print {
    * {
        background: white !important;
        color: black !important;
    }
    
    .navbar,
    .modal,
    .payment-modal,
    .qr-modal,
    .btn-primary,
    .btn-secondary,
    .service-btn {
        display: none !important;
    }
}

/* New Page Styles */

/* Page Hero Section */
.page-hero {
    background: var(--cosmic-gradient);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 70%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

/* Hero Updates */
.hero-tagline {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-motto {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Solution Features Styling */
.solution-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-features li {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--accent-gold);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.solution-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.solution-features li > * {
    position: relative;
    z-index: 2;
}

.solution-features li:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.3);
    border-color: var(--accent-bright-gold);
}

/* About Page Specific Styles */
.about-page-content {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.05);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.principle-quote {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--accent-gold);
}

.principle-quote h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.principle-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff !important;
    background: rgba(74, 20, 140, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.principle-quote p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Philosophy Section */
.philosophy {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.3);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-intro {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.philosophy-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-list li:hover {
    background: var(--bg-card-hover);
}

.feature-icon {
    color: var(--accent-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Vision & Mission */
.vision-mission {
    padding: var(--section-padding);
    background: var(--cosmic-gradient);
    position: relative;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.vision-mission .container {
    position: relative;
    z-index: 2;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.vision-card, .mission-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gold);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-page {
    padding: var(--section-padding);
}

.service-detail {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: var(--transition);
}

.service-detail:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--box-shadow-hover);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.service-icon-large {
    background: var(--accent-gold);
    color: var(--primary-purple);
    padding: 2rem;
    border-radius: 50%;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-info h2 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.service-benefits-detailed h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-benefits-detailed ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-benefits-detailed li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-benefits-detailed li:before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: bold;
    margin-right: 1rem;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
}

/* Health Disclaimer */
.health-disclaimer {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff4444;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.health-disclaimer h4 {
    color: #ff4444;
    margin-bottom: 0.5rem;
}

/* SYRIS Method Section Styles */
.syris-method-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1) 0%, rgba(123, 31, 162, 0.1) 100%);
    position: relative;
}

.syris-method-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(123, 31, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.syris-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.syris-main-content {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.syris-intro-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.syris-intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 193, 7, 0.05) 45deg, transparent 90deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.syris-icon-display {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.3));
}

.syris-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.syris-focus-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
}

.focus-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.focus-grid {
    display: grid;
    gap: 1.5rem;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.focus-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateX(10px);
}

.focus-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.3));
}

.focus-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .syris-intro-card,
    .syris-focus-card {
        padding: 2rem 1.5rem;
    }
    
    .syris-icon-display {
        font-size: 2.5rem;
    }
    
    .syris-description {
        font-size: 1.1rem;
    }
    
    .focus-title {
        font-size: 1.3rem;
    }
    
    .focus-item {
        padding: 0.75rem;
    }
    
    .focus-icon {
        font-size: 1.3rem;
    }
    
    .focus-text {
        font-size: 1rem;
    }
}

/* SYRIS Method Page Styles */
.method-overview {
    padding: var(--section-padding);
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.method-intro {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.core-components {
    padding: var(--section-padding);
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.component-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.component-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--box-shadow-hover);
}

.component-icon {
    background: var(--accent-gold);
    color: var(--primary-purple);
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.key-principles {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.3);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.principle-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.principle-item:hover {
    transform: translateY(-10px);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* How It Works */
.how-it-works {
    padding: var(--section-padding);
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 200px;
    border: 2px solid var(--accent-gold);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.step-number {
    background: var(--accent-gold);
    color: var(--primary-purple);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.process-arrow {
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: bold;
}

.process-conclusion {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
}

.conclusion-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Page Styles */
.faq-section {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: var(--transition);
}

.faq-item.active,
.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    transition: var(--transition);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--cosmic-gradient);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Footer Updates */
.footer-taglines {
    margin-top: 1rem;
}

.footer-taglines p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Improved Layout and Professional Styling */

/* Enhanced Hero Section */
.hero-text-wrapper {
    max-width: 600px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.hero-motto {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    font-weight: 600;
    line-height: 1.3;
}

/* Enhanced Solution Features */
.solution-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-features li {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--accent-gold);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.solution-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.solution-features li > * {
    position: relative;
    z-index: 2;
}

.solution-features li:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.3);
    border-color: var(--accent-bright-gold);
}

/* Enhanced Footer Branding */
.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand p:first-child {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.footer-brand p:last-child {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.footer-bottom > p:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Enhanced Service Card Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, transparent 100%);
    z-index: 1;
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--accent-gold);
}

.service-icon {
    background: var(--accent-gold);
    color: var(--primary-purple);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.service-benefits li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits li:before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin: 2rem 0 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-gold);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-btn:hover {
    background: var(--accent-bright-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

/* Enhanced About Section Layout */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-motto {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-brand p:first-child {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-motto {
        font-size: 1.3rem;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .footer-brand p:first-child {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Enhanced Section Styling for Professional Index Page */

/* What We Do Section - Simplified and Centered */
.what-we-do-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1) 0%, rgba(156, 39, 176, 0.05) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.what-we-do-section::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"><circle cx="20" cy="20" r="2" fill="%23ffc107" opacity="0.1"/><circle cx="80" cy="60" r="1.5" fill="%23ffc107" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffc107" opacity="0.1"/></svg>');
    z-index: 1;
}

.what-we-do-content-center {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-simple {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.solutions-heading {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.solution-features-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.solution-features-simple li {
    background: rgba(255, 193, 7, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.solution-features-simple li:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}

.solution-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* About Section Enhanced */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(74, 20, 140, 0.2) 100%);
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text-content {
    max-width: 600px;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.principle-highlight {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.principle-title {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.principle-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-gold);
    margin: 2rem 0;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(135deg, var(--cosmic-gradient));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.principle-description {
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-visual-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.about-image-fallback {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    background: var(--cosmic-gradient);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.sacred-geometry-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.geometry-outer {
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    position: relative;
}

.geometry-outer::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-reverse 15s linear infinite;
}

.geometry-inner {
    position: absolute;
    font-size: 3rem;
    color: var(--text-primary);
    z-index: 2;
}

.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.energy-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.energy-particles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.energy-particles span:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.5s; }
.energy-particles span:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1s; }
.energy-particles span:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 1.5s; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: var(--bg-card);
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision & Mission Section - Simplified */
.vision-mission-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.vision-mission-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vision-mission-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-simple-card, .mission-simple-card {
    background: transparent;
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.vision-simple-card:hover, .mission-simple-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.1);
}

.simple-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.simple-card-title {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.simple-card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for Enhanced Sections */
@media (max-width: 1024px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .vision-mission-simple-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section,
    .about-section,
    .vision-mission-section {
        padding: 60px 0;
    }
    
    .solutions-simple {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .principle-highlight {
        padding: 2rem;
    }
    
    .vision-simple-card, .mission-simple-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-intro {
        font-size: 1.1rem;
    }
    
    .solutions-simple {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .solution-features-simple {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .solution-features-simple li {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .solution-icon {
        font-size: 1.25rem;
    }
    
    .principle-quote {
        font-size: 1.2rem;
    }
    
    .simple-card-title {
        font-size: 1.3rem;
    }
    
    .simple-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Payment Modal Styles */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.payment-content {
    background: linear-gradient(135deg, #1a0033, #2d1b69);
    margin: 2% auto;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.payment-header {
    background: linear-gradient(135deg, #4a148c, #7b1fa2);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
}

.payment-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.payment-close:hover {
    opacity: 0.7;
}

.payment-body {
    padding: 25px;
    color: white;
}

.booking-summary {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.booking-summary h4 {
    color: #ffc107;
    margin: 0 0 15px 0;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    padding: 5px 0;
}

.summary-row strong {
    color: #ffc107;
}

.amount-display {
    font-size: 1.5rem;
    color: #4caf50;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background: rgba(76,175,80,0.1);
    border-radius: 8px;
}

.qr-section {
    text-align: center;
    margin: 25px 0;
}

.qr-container {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 15px;
    margin: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.qr-code {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.payment-instructions {
    background: rgba(255,193,7,0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

.payment-instructions h5 {
    color: #ffc107;
    margin: 0 0 10px 0;
}

.payment-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.payment-instructions li {
    margin: 5px 0;
    font-size: 14px;
}

.verification-section {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.verification-section h5 {
    color: #ffc107;
    margin: 0 0 15px 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ffc107;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #ffc107;
    background: rgba(255,255,255,0.15);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.6);
}

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type=file] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 12px;
    background: linear-gradient(135deg, #4a148c, #7b1fa2);
    color: white;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px dashed rgba(255,255,255,0.3);
}

.file-upload-label:hover {
    background: linear-gradient(135deg, #7b1fa2, #9c27b0);
    border-color: #ffc107;
}

.confirm-payment-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.confirm-payment-btn:hover {
    background: linear-gradient(135deg, #45a049, #388e3c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76,175,80,0.4);
}

.confirm-payment-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .service-detail {
        margin: 0 0.5rem 1.5rem 0.5rem;
        padding: 1.2rem 0.8rem;
        border-width: 1.5px;
    }

    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        padding: 1.2rem;
    }

    .service-info h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .service-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .service-benefits-detailed {
        padding: 1rem;
        margin-top: 1rem;
    }

    .service-benefits-detailed h3 {
        font-size: 1rem;
    }

    .service-benefits-detailed li {
        padding: 0.6rem;
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .service-pricing {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }

    .service-pricing .price {
        font-size: 1.4rem;
    }

    .service-pricing .btn-primary {
        max-width: 220px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .health-disclaimer {
        padding: 1rem;
        margin: 1.2rem 0;
    }

    .health-disclaimer h4 {
        font-size: 1rem;
    }

    .health-disclaimer p {
        font-size: 0.85rem;
    }
}

/* Ultra small devices (phones, 360px and down) */
@media (max-width: 360px) {
    .service-detail {
        margin: 0 0.25rem 1.2rem 0.25rem;
        padding: 1rem 0.6rem;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        padding: 1rem;
    }

    .service-info h2 {
        font-size: 1.1rem;
    }

    .service-benefits-detailed {
        padding: 0.8rem;
    }

    .service-benefits-detailed li {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .service-pricing .btn-primary {
        max-width: 200px;
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }
}

.payment-status {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
}

.payment-status.success {
    background: rgba(76,175,80,0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.payment-status.error {
    background: rgba(244,67,54,0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

.payment-status.processing {
    background: rgba(255,193,7,0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

@media (max-width: 768px) {
    .payment-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .payment-body {
        padding: 15px;
    }
    
    .qr-code {
        max-width: 150px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-icon-large {
        padding: 1rem;
        font-size: 2rem;
        width: 70px;
        height: 70px;
    }

    .service-info h2 {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .modal-content {
        width: 98%;
        margin: 2% auto;
        padding: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-width: 100px;
    }
}

/* Final Mobile Enhancements */
@media (max-width: 768px) {
    /* Improved icon sizing for all cards */
    .simple-card i,
    .feature-card i,
    .service-card i,
    .testimonial-card i {
        font-size: 2.5rem !important;
        color: var(--accent-gold);
        margin-bottom: 1rem;
        display: block;
    }

    /* Better touch targets */
    .nav-link,
    .btn-primary,
    .btn-secondary,
    .cta-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Prevent content overflow */
    .container {
        overflow-x: hidden;
    }

    /* Better text readability */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Improved spacing for better UX */
    .section {
        padding: 2rem 0;
    }

    /* Better form styling */
    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        display: block;
    }
}