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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    display: block;
    height: 28px;
    width: auto;
    max-height: 28px;
    max-width: 80px;
    object-fit: contain;
    object-position: left center;
    border-radius: 4px;
    box-shadow: none;
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #00bcd4;
    transform: translateY(-2px);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #2196f3, #f44336);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Section Spacing */
section {
    padding: 40px 0;
}

/* Hero Section */
.hero {
    padding: 100px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #2196f3, #f44336);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.story-block.reverse {
    direction: rtl;
}

.story-block.reverse > * {
    direction: ltr;
}

.story-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.story-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    transition: transform 0.3s ease;
}

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

/* CTA Buttons */
.cta-container {
    text-align: center;
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #9c27b0, #ff9800);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.6);
    background: linear-gradient(45deg, #ff9800, #9c27b0);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #2196f3, #f44336);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Reviews Section */
.reviews {
    background: rgba(33, 33, 33, 0.5);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.reviewer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #00bcd4;
}

.review-card h3 {
    color: #00bcd4;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    line-height: 1.5;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: #00bcd4;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-content p {
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    background: rgba(33, 33, 33, 0.5);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    background: rgba(33, 150, 243, 0.2);
    color: #00bcd4;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(33, 150, 243, 0.3);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 300px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #2196f3, #f44336);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.social-link {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(45deg, #9c27b0, #ff9800);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
    background: linear-gradient(45deg, #ff9800, #9c27b0);
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact a {
    color: #00bcd4;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copyright {
    color: #888;
    font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-block {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        margin-bottom: 40px;
    }

    .story-block.reverse {
        direction: ltr;
    }

    .story-img {
        height: 250px;
        margin-bottom: 20px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .reviews-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 16px;
    }

    body {
        font-size: 18px;
    }

    section {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }

    body {
        font-size: 16px;
    }
}

/* Timeline Styles */
.story-timeline {
    padding: 20px 0;
}

.timeline {
    position: relative;
    max-width: none;
    margin: 0;
}

.timeline::before {
    display: none;
}

.timeline-item {
    margin-bottom: 20px;
    position: relative;
}

.timeline-item::before {
    display: none;
}

.timeline-content {
    display: block;
}

.timeline-item.reverse .timeline-content {
    direction: rtl;
}

.timeline-item.reverse .timeline-content > * {
    direction: ltr;
}

.timeline-text {
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
}

.timeline-text h3 {
    color: #00bcd4;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 0;
}

.timeline-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    margin-left: 0;
    padding-left: 0;
}

.timeline-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    transition: transform 0.3s ease;
}

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

.personal-message {
    background: rgba(33, 33, 33, 0.5);
    padding: 80px 0;
}

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

.message-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.gratitude {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    border-left: 5px solid #00bcd4;
}

.gratitude p {
    margin-bottom: 10px;
}

.gratitude em {
    color: #00bcd4;
    font-size: 1.2rem;
}

/* Landscape mobile fix */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        position: relative;
    }
    
    main {
        margin-top: 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Documents Page Styles */
.documents-section {
    padding: 80px 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.document-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.document-card:hover {
    transform: translateY(-10px);
}

.document-image {
    height: 200px;
    overflow: hidden;
}

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

.document-card:hover .document-image img {
    transform: scale(1.1);
}

.document-info {
    padding: 25px;
}

.document-info h3 {
    color: #00bcd4;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.document-info p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.document-info strong {
    color: #00bcd4;
}

.transparency-note {
    background: rgba(33, 150, 243, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0;
    border-left: 5px solid #2196f3;
}

.transparency-note h3 {
    color: #00bcd4;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.verification-info {
    margin-top: 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.verification-info h4 {
    color: #00bcd4;
    margin-bottom: 15px;
}

.verification-info ul {
    list-style: none;
    padding: 0;
}

.verification-info li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.verification-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bcd4;
    font-weight: bold;
}

/* Timeline Mobile Responsive */
@media (max-width: 768px) {
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-item.reverse .timeline-content {
        direction: ltr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Thank You & Dreams Pages Styles */
.gratitude-message,
.dreams-section {
    padding: 80px 0;
}

.message-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.personal-photo img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.gratitude-text h2 {
    color: #00bcd4;
    font-size: 2rem;
    margin-bottom: 25px;
}

.gratitude-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.impact-section {
    background: rgba(33, 33, 33, 0.3);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 60px 0;
}

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

.impact-item {
    text-align: center;
    padding: 25px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.impact-item h3 {
    color: #00bcd4;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.promise-section {
    margin: 60px 0;
}

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

.promise-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Dreams Page Specific */
.dream-item {
    margin-bottom: 80px;
}

.dream-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dream-item.reverse .dream-content {
    direction: rtl;
}

.dream-item.reverse .dream-content > * {
    direction: ltr;
}

.dream-text h2 {
    color: #00bcd4;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.dream-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.dream-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    transition: transform 0.3s ease;
}

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

.simple-dreams {
    background: rgba(33, 33, 33, 0.3);
    padding: 60px 40px;
    border-radius: 20px;
    margin: 80px 0;
}

.simple-dreams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.simple-dream {
    background: rgba(0, 188, 212, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.simple-dream h3 {
    color: #00bcd4;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.simple-dream p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.hope-message {
    margin: 60px 0;
}

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

.hope-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .message-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .dream-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dream-item.reverse .dream-content {
        direction: ltr;
    }
    
    .impact-grid,
    .simple-dreams-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dream-image img {
        height: 250px;
    }
}