/**
 * Akasha Gold Glassmorphism Frontend Styles
 * Version: 1.0.0
 */

/* =============================================================================
   GLOBAL GLASSMORPHISM STYLES
   ============================================================================= */

/* Base glassmorphism card */
.akasha-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 2rem;
}

.akasha-glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Glassmorphism buttons */
.akasha-glass-button {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.akasha-glass-button:hover {
    background: rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.6);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Glass overlay for sections */
.akasha-glass-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: relative;
    width: 100%;
    height: 100%;
}

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

/* Common text styles */
.section-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.accent-text {
    color: #FFD700;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.akasha-hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.akasha-hero-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2rem 1rem;
}

/* Hero Navigation */
.akasha-hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.akasha-logo img {
    height: 60px;
    width: auto;
}

.akasha-cta-nav {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
}

/* Hero Content */
.akasha-hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akasha-hero-glass {
    max-width: 800px;
    text-align: center;
    padding: 3rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.akasha-cta-main {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    margin-top: 1rem;
}

/* Scroll Indicator */
.akasha-scroll-indicator {
    text-align: center;
    margin-top: auto;
    padding-bottom: 2rem;
}

.akasha-scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #FFD700;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    margin: 0 auto;
}

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

/* =============================================================================
   SERVICE EXPLANATION SECTION
   ============================================================================= */

.akasha-service-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 5rem 0;
}

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

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

.akasha-service-card {
    text-align: center;
    padding: 2.5rem;
}

.akasha-service-icon {
    margin-bottom: 1.5rem;
}

.akasha-score-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 1rem;
}

.akasha-score-number {
    color: #FFD700;
}

.akasha-score-divider {
    color: #FFFFFF;
    margin: 0 0.5rem;
}

.akasha-score-total {
    color: #FFFFFF;
}

.akasha-service-card-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.akasha-service-card-description {
    color: #CCCCCC;
    line-height: 1.6;
}

/* Statistics Card */
.akasha-stats-card {
    background: rgba(255, 215, 0, 0.1);
}

.akasha-stats-title {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.akasha-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.akasha-stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #FFFFFF;
    margin-top: 0.5rem;
}

/* Process Card */
.akasha-process-card {
    text-align: left;
}

.akasha-process-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.akasha-process-description {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.akasha-process-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 2rem;
}

.akasha-connection-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFFFFF, #FFD700);
    border-radius: 1px;
}

.akasha-hearts-animation {
    position: absolute;
    display: flex;
    gap: 1rem;
}

.akasha-heart {
    color: #FFD700;
    font-size: 1.5rem;
    animation: heartbeat 2s infinite;
}

.akasha-heart:nth-child(2) {
    animation-delay: 0.5s;
}

.akasha-heart:nth-child(3) {
    animation-delay: 1s;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* =============================================================================
   TESTIMONIALS SECTION
   ============================================================================= */

.akasha-testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 5rem 0;
}

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

.akasha-testimonial-card {
    padding: 0;
    overflow: hidden;
}

.akasha-testimonial-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.akasha-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.akasha-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.akasha-testimonial-content {
    padding: 2rem;
}

.akasha-testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.akasha-testimonial-names {
    font-size: 1.3rem;
    font-weight: 600;
}

.akasha-testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.akasha-star {
    color: #666;
    font-size: 1.2rem;
}

.akasha-star.filled {
    color: #FFD700;
}

.akasha-testimonial-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.akasha-testimonial-quote {
    color: #FFD700;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.akasha-testimonial-story {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.akasha-testimonial-decoration {
    text-align: center;
    margin-top: 1rem;
}

.akasha-heart-decoration {
    color: #FFD700;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Trust Indicators */
.akasha-trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.akasha-trust-card {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 215, 0, 0.05);
}

.akasha-trust-content h4 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.akasha-trust-content p {
    color: #CCCCCC;
    font-size: 0.9rem;
}

.akasha-trust-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

/* =============================================================================
   TEAM & PRICING SECTION
   ============================================================================= */

.akasha-team-pricing-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 5rem 0;
}

/* Team Section */
.akasha-team-section {
    margin-bottom: 5rem;
}

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

.akasha-team-card {
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.akasha-team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.akasha-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.akasha-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}

.akasha-team-content {
    padding: 2rem;
}

.akasha-team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.akasha-team-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.akasha-team-credentials {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.akasha-team-description {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.akasha-team-cta {
    margin-top: 1rem;
}

/* Pricing Section */
.akasha-pricing-section {
    margin-bottom: 5rem;
}

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

.akasha-pricing-card {
    text-align: center;
    padding: 2.5rem;
}

.akasha-pricing-card.akasha-featured {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.akasha-pricing-header h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 1rem;
}

.akasha-pricing-content p {
    color: #CCCCCC;
    margin-bottom: 1.5rem;
}

.akasha-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.akasha-pricing-features li {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

/* Comparison Card */
.akasha-comparison-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    text-align: center;
}

.akasha-comparison-header h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.akasha-comparison-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-label {
    color: #CCCCCC;
}

.comparison-cost {
    color: #FFFFFF;
    font-weight: 600;
}

.comparison-savings {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.2rem;
}

/* FAQ Section */
.akasha-faq-section {
    margin-top: 3rem;
}

.akasha-faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.akasha-faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.akasha-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.akasha-faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.akasha-faq-question h4 {
    color: #FFFFFF;
    margin: 0;
    font-size: 1.1rem;
}

.akasha-faq-toggle {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.akasha-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.akasha-faq-answer.active {
    max-height: 200px;
}

.akasha-faq-answer p {
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
    padding: 1.5rem;
}

/* =============================================================================
   FINAL CTA SECTION
   ============================================================================= */

.akasha-final-cta-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0;
    display: flex;
    align-items: center;
}

.akasha-cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.akasha-cta-main {
    padding: 3rem;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.akasha-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.akasha-cta-primary {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
}

.akasha-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.akasha-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.akasha-urgency-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.akasha-urgency-icon {
    font-size: 1.2rem;
}

.akasha-urgency-text {
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Info */
.akasha-contact-info {
    padding: 2rem;
}

.akasha-contact-info h4 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.akasha-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.akasha-contact-icon {
    font-size: 1.2rem;
}

.akasha-contact-text {
    color: #CCCCCC;
    font-size: 0.9rem;
}

/* Social Proof */
.akasha-social-proof {
    margin-bottom: 3rem;
}

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

.akasha-proof-item {
    padding: 1.5rem;
    text-align: center;
}

.akasha-proof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.akasha-proof-icon {
    font-size: 2rem;
}

.proof-number {
    font-size: 2rem;
    font-weight: 700;
}

.akasha-proof-label {
    color: #CCCCCC;
    font-size: 0.9rem;
}

/* Final Guarantee */
.akasha-final-guarantee {
    text-align: center;
}

.akasha-guarantee-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
}

.akasha-guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.akasha-guarantee-icon {
    font-size: 3rem;
}

.akasha-guarantee-content h4 {
    color: #FFFFFF;
    margin: 0;
}

.akasha-guarantee-content p {
    color: #CCCCCC;
    margin: 0;
    line-height: 1.6;
}

/* Floating Hearts Animation */
.akasha-floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.akasha-floating-heart {
    position: absolute;
    color: #FFD700;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: float 6s linear infinite;
}

.akasha-floating-heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.akasha-floating-heart:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
}

.akasha-floating-heart:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
}

.akasha-floating-heart:nth-child(4) {
    left: 70%;
    animation-delay: 3s;
}

.akasha-floating-heart:nth-child(5) {
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 768px) {
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .akasha-hero-glass {
        padding: 2rem;
    }
    
    .akasha-hero-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Grid Layouts */
    .akasha-service-grid,
    .akasha-testimonials-grid,
    .akasha-team-grid,
    .akasha-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* CTA Section */
    .akasha-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .akasha-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Pricing Cards */
    .akasha-pricing-card.akasha-featured {
        transform: none;
    }
    
    /* Typography */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Spacing */
    .akasha-glass-card {
        padding: 1.5rem;
    }
    
    .akasha-hero-section,
    .akasha-service-section,
    .akasha-testimonials-section,
    .akasha-team-pricing-section,
    .akasha-final-cta-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .akasha-container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .akasha-glass-card {
        padding: 1rem;
    }
    
    .akasha-glass-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .akasha-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================================================
   PRINT STYLES
   ============================================================================= */

@media print {
    .akasha-floating-hearts,
    .akasha-scroll-indicator {
        display: none;
    }
    
    .akasha-glass-card {
        background: #f9f9f9;
        border: 1px solid #ddd;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .section-title {
        color: #000;
    }
    
    .accent-text {
        color: #666;
    }
}
