/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #efc51b;    /* Golden Yellow */
    --secondary-color: #ee7526;  /* Orange */
    --accent-color: #ef4256;     /* Red */
    --text-dark: #2c3e50;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #efc51b 0%, #ee7526 100%);
    --gradient-secondary: linear-gradient(135deg, #ee7526 0%, #ef4256 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.1);
}

.nav-logo h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Carousel */
.hero {
    margin-top: 80px;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.carousel-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 3;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Vision Section */
.vision-section {
    padding: 5rem 0;
    background: white;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-image {
    order: 1;
}

.vision-text {
    order: 2;
}

.vision-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.vision-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.goal {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.goal:hover {
    transform: translateY(-5px);
}

.goal i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.goal h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.goal p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.vision-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.about-hero {
    margin-top: 80px;
    background: var(--gradient-primary);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.company-story {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
}

/* Gallery Page Styles */
.gallery-hero {
    margin-top: 80px;
    background: var(--gradient-primary);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.gallery-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.gallery-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.gallery-filters {
    padding: 3rem 0;
    background: var(--light-bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
}

.gallery-grid {
    padding: 3rem 0;
    background: white;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.gallery-folder {
    width: 100%;
    margin-bottom: 3rem;
}

.folder-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.folder-header h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.folder-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.folder-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 1rem;
}

.gallery-overlay i {
    font-size: 1.5rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 150px;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-btn.prev {
    left: 20px;
}

.lightbox-btn.next {
    right: 20px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-section .social-links a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .carousel-content h1 {
        font-size: 2.5rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .mission-content,
    .vision-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-image {
        order: 2;
    }

    .vision-text {
        order: 1;
    }

    .mission-stats,
    .vision-goals {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        gap: 3rem;
    }
    
    .folder-header h3 {
        font-size: 2rem;
    }
    
    .folder-images {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    .nav-logo img {
        width: 40px;
        height: 40px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .about-hero-content h1,
    .gallery-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-btn {
        padding: 0.5rem;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-hero-content h1,
    .gallery-hero-content h1 {
        font-size: 2rem;
    }

    .gallery-container {
        gap: 2rem;
    }
    
    .folder-header h3 {
        font-size: 1.8rem;
    }
    
    .folder-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-folder {
        margin-bottom: 2rem;
    }
}

/* Image Placeholder Styles */
.carousel-image-placeholder,
.image-placeholder,
.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    position: relative;
}

.carousel-image-placeholder {
    height: 600px;
}

.image-placeholder {
    height: 300px;
    border-radius: 10px;
}

.gallery-image-placeholder {
    height: 250px;
    border-radius: 8px;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.placeholder-content p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive placeholder styles */
@media (max-width: 768px) {
    .placeholder-content i {
        font-size: 2rem;
    }
    
    .placeholder-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .placeholder-content i {
        font-size: 1.5rem;
    }
    
    .placeholder-content p {
        font-size: 0.8rem;
    }
}

/* Floating Support US Widget */
.support-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #ff0000, #ff7f00);
    color: white;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    animation: rainbow 2s infinite, pulse 2s infinite;
}

.support-widget:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5);
    text-decoration: none;
    color: white;
    animation: rainbow 1s infinite, pulse 1s infinite;
}

.support-widget i {
    font-size: 1.2rem;
}

@keyframes rainbow {
    0% {
        background: linear-gradient(135deg, #ff0000, #ff7f00);
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    }
    14.28% {
        background: linear-gradient(135deg, #ff7f00, #ffff00);
        box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
    }
    28.56% {
        background: linear-gradient(135deg, #ffff00, #00ff00);
        box-shadow: 0 8px 25px rgba(255, 255, 0, 0.3);
    }
    42.84% {
        background: linear-gradient(135deg, #00ff00, #0000ff);
        box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
    }
    57.12% {
        background: linear-gradient(135deg, #0000ff, #4b0082);
        box-shadow: 0 8px 25px rgba(0, 0, 255, 0.3);
    }
    71.4% {
        background: linear-gradient(135deg, #4b0082, #9400d3);
        box-shadow: 0 8px 25px rgba(75, 0, 130, 0.3);
    }
    85.68% {
        background: linear-gradient(135deg, #9400d3, #ff0000);
        box-shadow: 0 8px 25px rgba(148, 0, 211, 0.3);
    }
    100% {
        background: linear-gradient(135deg, #ff0000, #ff7f00);
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Payment Page Styles */
.payment-hero {
    background: linear-gradient(135deg, #efc51b, #ee7526);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
}

.payment-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.payment-hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.payment-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.payment-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.payment-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #666;
}

/* QR Scanner Section Styles */
.qr-scanner-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trust-heading {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
    width: 100%;
}

.qr-scanner-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--secondary-color);
}

.qr-scanner-section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #666;
}

.qr-code-placeholder {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    align-items: center;
}

.qr-code-container {
    background: #f8f9fa;
    border: 3px dashed #dee2e6;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    min-width: 250px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qr-code-container:hover {
    border-color: var(--primary-color);
    background: #f0f8ff;
}

.qr-code-container i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.qr-code-container p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 8px 0;
    font-weight: 600;
}

.qr-code-image {
    max-width: 250px;
    max-height: 250px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.qr-note {
    font-size: 0.85rem !important;
    color: #666 !important;
    font-weight: normal !important;
    margin-top: 10px !important;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
    flex-wrap: wrap;
}

.share-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.share-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.share-btn i {
    font-size: 1.1rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.impact-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.impact-stat i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.impact-stat h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.impact-stat p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.donation-options h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.amount-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-color);
    color: white;
}

.amount-btn.custom {
    border-style: dashed;
}

/* Donation Thanks Section */
.donation-thanks {
    margin-top: 25px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.donation-thanks h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 700;
}

.donation-thanks p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.payment-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.payment-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #efc51b, #ee7526);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 197, 27, 0.3);
}

.payment-btn i {
    font-size: 1.2rem;
}

/* Payment Instructions Section */
.payment-instructions {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.payment-instructions h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-align: center;
}

.instruction-steps {
    margin-bottom: 30px;
    flex-grow: 1;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(5px);
    background: #f0f8ff;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--secondary-color);
    font-weight: 600;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 12px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.contact-details strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive Payment Page */
@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: stretch;
    }
    
    .payment-hero-content h1 {
        font-size: 2rem;
    }
    
    .trust-heading {
        font-size: 2rem;
        letter-spacing: 1px;
        padding-bottom: 10px;
    }
    
    .payment-info h2,
    .qr-scanner-section h2 {
        font-size: 1.8rem;
    }
    
    .payment-instructions h2 {
        font-size: 1.6rem;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 25px;
    }
    
    .step {
        padding: 12px;
        gap: 12px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 15px;
    }
    
    .contact-details {
        gap: 6px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .donation-amounts {
        justify-content: center;
    }
    
    .donation-thanks {
        margin-top: 20px;
        padding: 20px;
    }
    
    .donation-thanks h3 {
        font-size: 1.3rem;
    }
    
    .qr-code-container {
        min-width: 200px;
        min-height: 200px;
        padding: 30px 20px;
    }
    
    .qr-code-container i {
        font-size: 2.5rem;
    }
    
    .support-widget {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .payment-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .payment-form {
        padding: 20px;
    }
    
    .trust-heading {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
        padding-bottom: 8px;
        margin-bottom: 15px;
    }
    
    .qr-scanner-section {
        padding: 20px;
    }
    
    .share-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .payment-instructions {
        padding: 20px;
    }
    
    .payment-instructions h2 {
        font-size: 1.4rem;
    }
    
    .step {
        padding: 10px;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .contact-info {
        padding: 12px;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .donation-thanks {
        margin-top: 15px;
        padding: 15px;
    }
    
    .donation-thanks h3 {
        font-size: 1.1rem;
    }
    
    .donation-thanks p {
        font-size: 0.9rem;
    }
    
    .qr-code-container {
        min-width: 180px;
        min-height: 180px;
        padding: 25px 15px;
    }
    
    .qr-code-container i {
        font-size: 2rem;
    }
    
    .support-widget {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .support-widget i {
        font-size: 1rem;
    }
} 