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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cal Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #1a252f;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cal Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2d3748;
}

.lotus-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

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

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2d3748;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

.app-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.app-link::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: radial-gradient(circle at 30% 20%, #667eea 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, #764ba2 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.title-line {
    display: block;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

.btn-secondary {
    background: white;
    color: #2d3748;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: glow 2s infinite;
}

@keyframes glow {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mandala-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.mandala {
    width: 100%;
    height: 100%;
    border: 3px solid #667eea;
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
}

.mandala::before,
.mandala::after {
    content: '';
    position: absolute;
    border: 2px solid #764ba2;
    border-radius: 50%;
}

.mandala::before {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation: rotate-reverse 15s linear infinite;
}

.mandala::after {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float-symbol 4s ease-in-out infinite;
}

.symbol:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.symbol:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.symbol:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.symbol:nth-child(4) {
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #667eea;
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #667eea;
    border-right: 2px solid #667eea;
    transform: rotate(45deg);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Doshas Section */
.doshas-section {
    padding: 8rem 0;
    background: white;
}

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

.dosha-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.dosha-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dosha-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.dosha-card:hover::before {
    opacity: 1;
}

.vata {
    --dosha-color: #4299e1;
}

.pitta {
    --dosha-color: #f56565;
}

.kapha {
    --dosha-color: #48bb78;
}

.dosha-card:hover {
    border-color: var(--dosha-color);
}

.dosha-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.dosha-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dosha-color);
}

.dosha-element {
    font-weight: 600;
    color: #718096;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dosha-desc {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.dosha-qualities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.dosha-qualities span {
    background: rgba(0, 0, 0, 0.05);
    color: #4a5568;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* User Info Banner */
.user-info-banner {
    background: linear-gradient(135deg, #e2e8f0 0%, #f7fafc 100%);
    border: 1px solid #cbd5e0;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.user-info-banner p {
    margin: 0;
    font-size: 1.1rem;
    color: #2d3748;
}

.user-info-banner strong {
    color: #667eea;
}

.user-info-banner button {
    margin-top: 1rem;
}

/* Dosha Test Section */
.dosha-test-section {
    padding: 8rem 0;
    background: #f7fafc;
}

.test-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.test-header {
    text-align: center;
    margin-bottom: 3rem;
}

.test-progress {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 8.33%;
}

.progress-text {
    text-align: center;
    font-weight: 600;
    color: #4a5568;
}

.question-card {
    background: #f7fafc;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.question-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.option-btn:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.option-btn.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.test-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn-ghost {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-ghost:hover:not(:disabled) {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.btn-ghost:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.test-results {
    text-align: center;
}

.results-chart {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 15px;
}

.result-dosha {
    text-align: center;
}

.dosha-percentage {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dosha-name {
    font-weight: 600;
    color: #4a5568;
}

.results-description {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

/* Astrology Section */
.astrology-section {
    padding: 8rem 0;
    background: white;
}

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

.astro-card {
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.astro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.astro-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.astro-card h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.astro-card p {
    margin-bottom: 2rem;
}

.astro-features {
    list-style: none;
    padding: 0;
}

.astro-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.astro-features li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.planets-section {
    margin-top: 4rem;
}

.planets-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.planets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.planet-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.planet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.planet-symbol {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
}

.planet-info strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.planet-info p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* Resources Section */
.resources-section {
    padding: 8rem 0;
    background: #f7fafc;
}

.resources-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.tab-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

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

.herb-card {
    background: #f7fafc;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.herb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.herb-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.herb-card h4 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.herb-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.herb-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.herb-benefits span {
    background: white;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.routine-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 4rem;
    top: 3rem;
    width: 2px;
    height: 2rem;
    background: #e2e8f0;
}

.time {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    height: fit-content;
}

.activity h5 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.activity p {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
}

.tastes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.taste-card {
    background: #f7fafc;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.taste-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.taste-card h5 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.taste-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Remedies Tab */
.remedies-container h4 {
    text-align: center;
    margin-bottom: 0.5rem;
}
.remedies-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #718096;
}

.search-bar-container {
    margin-bottom: 2rem;
}

#remedy-search {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#remedy-search:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

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

.remedy-card {
    background: #f7fafc;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.remedy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

.remedy-header {
    margin-bottom: 1.5rem;
}

.remedy-condition {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.remedy-title {
    font-size: 1.25rem;
    color: #2d3748;
}

.remedy-desc {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.remedy-details h6 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: #2d3748;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.remedy-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.remedy-details li {
    font-size: 0.9rem;
    color: #718096;
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.25rem;
}

.remedy-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
}

.remedy-details p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.no-results {
    text-align: center;
    grid-column: 1 / -1;
    padding: 2rem;
    color: #718096;
}

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

.practice-card {
    background: #f7fafc;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.practice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.practice-card h5 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.practice-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Experts Section */
.experts-section {
    padding: 8rem 0;
    background: white;
}

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

.expert-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.expert-image {
    margin-bottom: 1.5rem;
}

.avatar {
    font-size: 4rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    color: white;
}

.expert-card h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.expert-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.expert-desc {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.expert-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.expert-specialties span {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* App Section */
.app-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.app-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.app-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.app-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.app-download {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-download .btn {
    background: white;
    color: #667eea;
    font-weight: 600;
}

.app-download .btn:hover {
    background: #f7fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.app-preview {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 20px;
    color: #2d3748;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.app-content-preview h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.dosha-balance {
    margin-bottom: 20px;
}

.balance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dosha-name {
    width: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.balance-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.balance-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.daily-recommendations h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.recommendation {
    background: #f7fafc;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    max-width: 300px;
}

.footer-logo .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #a0aec0;
    font-size: 0.95rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    margin-top: 2rem;
}

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

.footer-legal a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #667eea;
}

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

.footer-social a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
}

.footer-copyright p {
    color: #718096;
    font-size: 0.9rem;
}

/* Meditation Modal */
.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);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: white;
    margin: 0;
}

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

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

.meditation-player {
    text-align: center;
}

.meditation-visual {
    margin-bottom: 2rem;
}

.breathing-circle {
    width: 200px;
    height: 200px;
    border: 3px solid #667eea;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}

.breathing-circle.breathing {
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.meditation-controls {
    margin-bottom: 2rem;
}

.meditation-timer {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.control-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.control-buttons button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-buttons button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.meditation-instructions {
    background: #f7fafc;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mandala-container {
        width: 300px;
        height: 300px;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .doshas-grid,
    .astrology-grid,
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .phone-screen {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .test-container,
    .tab-content {
        padding: 2rem 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .mandala-container {
        width: 250px;
        height: 250px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .doshas-section,
    .astrology-section,
    .resources-section,
    .experts-section {
        padding: 4rem 0;
    }
    
    .app-section {
        padding: 4rem 0;
    }
    
    .planets-grid {
        grid-template-columns: 1fr;
    }
    
    .practices-grid,
    .herbs-grid,
    .tastes-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.tab-btn:focus,
.option-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}