/* Shiv Pratishthan Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10002;
}

.header-top {
    background-color: #1a252f;
    padding: 0.4rem 0;
    text-align: center;
}

.header-top p {
    margin: 0;
    font-size: 0.85rem;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-section h1 {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
}

/* Navigation */
nav {
    background-color: rgba(255,255,255,0.1);
    padding: 0.3rem 0;
    position: relative;
    z-index: 1000;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.6rem;
    z-index: 10003;
    margin: 0;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.mobile-menu-toggle.active {
    background: rgba(255, 140, 0, 0.15);
    border-radius: 8px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 0.5rem;
}

nav ul li {
    margin: 0.3rem 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #ff6600;
    transform: translateY(-2px);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.hero-section {
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    color: #2c3e50;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ff6600, #ff8c00);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: #cc5500;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #ff8c00;
    font-weight: 600;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #ff6600;
}

.content-section h3 {
    color: #ff8c00;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Award Categories */
.award-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff8c00, #ff6600);
    transition: width 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
    border-color: #ff8c00;
}

.award-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.award-card h4 {
    color: #cc5500;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-info {
    background: linear-gradient(135deg, #00b090 0%, #00d9b5 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 30px rgba(0, 176, 144, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.contact-info h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.contact-info a:hover {
    background: rgba(255,255,255,0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ff8c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-success {
    background-color: #00b090;
}

.btn-success:hover {
    background-color: #00d9b5;
}

.btn-donate {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    font-weight: bold;
    padding: 0.9rem 2.5rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-donate:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.donate-button-nav {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.donate-button-nav:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.5);
    transform: translateY(-3px) !important;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item-content {
    padding: 1rem;
}

/* Officials Grid */
.officials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.official-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.official-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.official-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #ff8c00;
}

.official-card:hover::after {
    transform: scaleX(1);
}

.official-card h4 {
    color: #cc5500;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.official-card .position {
    color: #ff8c00;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 3rem;
    border-top: 4px solid #ff8c00;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

footer a {
    color: #00d9b5;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

footer a:hover {
    background: rgba(0, 217, 181, 0.1);
    color: #00ffcc;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 0 1rem;
        margin: 1rem auto;
    }

    .header-content {
        flex-direction: row;
        text-align: left;
        padding: 0.8rem 1rem;
        position: relative;
        justify-content: space-between;
        align-items: center;
    }

    .logo-section {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-section h1 {
        font-size: 1.5rem;
    }

    .logo-section img {
        height: 50px !important;
        margin-right: 0 !important;
    }

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

    header {
        padding: 0.5rem 0;
    }

    nav {
        padding: 0;
        position: relative;
        z-index: 10001;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
        transform: translateY(-100%);
        overflow-y: auto;
        overflow-x: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        padding: 150px 0 2rem 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        opacity: 0;
        visibility: hidden;
        z-index: 10000;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul li {
        margin: 0.3rem 0.8rem;
        width: calc(100% - 1.6rem);
        text-align: left;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    nav ul li a {
        padding: 0.8rem 1.2rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        border-left: 3px solid transparent;
        display: block;
        font-size: 0.95rem;
        position: relative;
        transition: all 0.3s ease;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: rgba(255, 140, 0, 0.2);
        border-left-color: #ff8c00;
        transform: translateX(5px);
    }

    nav ul.active li {
        opacity: 1;
        transform: translateY(0);
    }

    nav ul.active li:nth-child(1) { transition-delay: 0.05s; }
    nav ul.active li:nth-child(2) { transition-delay: 0.1s; }
    nav ul.active li:nth-child(3) { transition-delay: 0.15s; }
    nav ul.active li:nth-child(4) { transition-delay: 0.2s; }
    nav ul.active li:nth-child(5) { transition-delay: 0.25s; }
    nav ul.active li:nth-child(6) { transition-delay: 0.3s; }
    nav ul.active li:nth-child(7) { transition-delay: 0.35s; }
    nav ul.active li:nth-child(8) { transition-delay: 0.4s; }
    nav ul.active li:nth-child(9) { transition-delay: 0.45s; }

    /* Drawer Welcome Header */
    .drawer-header {
        pointer-events: none;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .drawer-welcome {
        background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 102, 0, 0.1) 100%);
        padding: 1rem 1.5rem;
        margin: 0 1rem 0.5rem 1rem;
        border-radius: 12px;
        border-left: 4px solid #ff8c00;
        box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2);
    }

    .drawer-welcome p {
        margin: 0.4rem 0;
        font-size: 0.9rem;
        color: #ffffff;
        line-height: 1.4;
    }

    .drawer-line-1 {
        font-weight: 600;
        font-size: 1rem !important;
        color: #ffd700 !important;
    }

    .drawer-line-2 {
        font-weight: 500;
        color: #ffffff !important;
    }

    .drawer-line-3 {
        font-weight: 500;
        color: #ffb84d !important;
    }

    .donate-button-nav {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        border-left-color: #28a745 !important;
        font-weight: bold;
        box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
    }

    .donate-button-nav:hover {
        background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
    }

    .hero-section h2 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .hero-section p {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    .gallery-grid,
    .award-categories,
    .officials-grid {
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    }

    .content-section {
        padding: clamp(1rem, 3vw, 1.5rem);
    }

    .award-card,
    .official-card {
        padding: clamp(0.8rem, 3vw, 1rem);
    }

    .btn {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        padding: 0.7rem 1.5rem;
    }

    main {
        padding: 0 1rem;
    }

    /* Form inputs mobile optimization */
    input,
    textarea,
    select {
        font-size: 16px !important;
        padding: 0.6rem !important;
    }

    /* Better touch targets on mobile */
    button,
    a.btn,
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-section h2 {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .gallery-grid,
    .award-categories {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .officials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .award-card,
    .official-card {
        padding: 1rem 0.8rem;
    }

    .content-section {
        padding: 1rem;
    }

    .mobile-menu-toggle {
        right: 0.5rem;
        width: 35px;
        height: 35px;
    }
}

/* Donation Benefits Section */
.donation-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-box {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
    border-color: #28a745;
}

.benefit-box:hover::before {
    transform: scaleX(1);
}

.benefit-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-box h4 {
    color: #28a745;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive for donation benefits */
@media (max-width: 768px) {
    .donation-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefit-box {
        padding: 1.5rem 1rem;
    }

    .benefit-icon-large {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .benefit-box h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .donation-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-box {
        padding: 1.2rem 1rem;
    }

    .benefit-icon-large {
        font-size: 2.2rem;
    }

    .benefit-box h4 {
        font-size: 1rem;
    }

    .benefit-box p {
        font-size: 0.85rem;
    }
}

/* Award Benefits Section */
.award-benefits-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

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

.award-benefit-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.award-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.award-benefit-item h4 {
    color: #cc5500;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.award-benefit-item p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsive for award benefits */
@media (max-width: 768px) {
    .award-benefits-container {
        padding: 1.5rem 1rem;
    }

    .award-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .award-benefit-item {
        padding: 1rem 0.5rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .award-benefit-item h4 {
        font-size: 0.95rem;
        white-space: normal;
        line-height: 1.3;
        min-height: 2.6em;
    }

    .award-benefit-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .award-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .award-benefit-item {
        padding: 0.8rem 0.4rem;
    }

    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }

    .award-benefit-item h4 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .award-benefit-item p {
        font-size: 0.75rem;
    }
}

/* Modal Responsive Styles */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.modal-content-wrapper {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    padding: clamp(20px, 5vh, 50px) 20px;
    text-align: center;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(255,255,255,0.3);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: clamp(24px, 8vw, 40px);
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .modal-content-wrapper {
        width: 95%;
        padding: clamp(15px, 3vh, 30px) 10px;
    }

    .modal-close-btn {
        top: 5px;
        right: 5px;
        font-size: clamp(20px, 6vw, 30px);
    }
}

@media (max-width: 480px) {
    .modal-content-wrapper {
        width: 98%;
        max-width: 600px;
        padding: 10px 5px;
    }
}

/* Responsive Grid Utility for Inline Styles */
.responsive-grid-300 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

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

.responsive-grid-200 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 1rem;
}

@media (max-width: 480px) {
    .responsive-grid-300,
    .responsive-grid-250,
    .responsive-grid-200 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.highlight {
    color: #ff6600;
    font-weight: bold;
}

.success {
    color: #00b090;
    font-weight: bold;
}
