/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --dark: #1A1A1A;
    --slate: #2D3748;
    --gray: #718096;
    --light-gray: #F7FAFC;
    --white: #FFFFFF;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 80px 0;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-primary {
    background: var(--gold);
    color: var(--dark);
}
.btn-primary:hover {
    background: #c5a030;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    background: #333;
}
.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}
.btn-full-mobile {
    width: 100%;
}
.text-gold {
    color: var(--gold);
}
.text-center {
    text-align: center;
}
.mt-20 {
    margin-top: 20px;
}
.mt-40 {
    margin-top: 40px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo img {
    height: 50px;
    width: auto;
    display: block;
}
.logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
}
.logo .logo-text .gold {
    color: var(--gold);
}
.logo .logo-text .city {
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    font-weight: 500;
    color: var(--slate);
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--gold);
}
.nav-links .btn-primary {
    padding: 10px 20px;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    background: var(--dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s ease-out;
    transform: scale(1.08);
    z-index: 1;
    will-change: transform, opacity;
}
.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
.slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.65) 0%, rgba(26, 26, 26, 0.45) 100%),
        url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?w=1600&q=80');
    background-size: cover;
    background-position: center;
}
.slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.65) 0%, rgba(26, 26, 26, 0.45) 100%),
        url('https://images.squarespace-cdn.com/content/v1/59b95cf31f318dad89947834/1605729976041-K8JX7HXKS67CQGLECMTO/image-asset.jpeg');
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 0 20px;
    color: var(--white);
}
.slide h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.9s ease 0.5s;
}
.slide.active h1 {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.slide h1 span {
    color: var(--gold);
    display: block;
    font-size: 4.5rem;
    margin-top: 5px;
}
.slide p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.9s ease 0.7s;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.slide.active p {
    opacity: 0.95;
    transform: translateY(0);
}
.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.9s ease 0.9s;
}
.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}
.dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}
.dot.active {
    background: var(--gold);
    transform: scale(1.2);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.dot.active::after {
    border-color: rgba(212, 175, 55, 0.3);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}
.slider-arrows button {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrows button:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}
.slider-arrows button:active {
    transform: scale(0.95);
}

.slide-counter {
    position: absolute;
    bottom: 90px;
    right: 40px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.slide-counter .current {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ============================================================
   GOLD CITY IS
   ============================================================ */
.is-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.is-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 1.8rem 2.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0ece6;
    transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.25s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.is-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.08), 0 8px 18px rgba(212, 175, 55, 0.06);
    border-color: #d4af37;
}
.is-card-icon {
    width: 80px;
    height: 80px;
    background: #fcf9f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    transition: background 0.3s, transform 0.3s;
    border: 1px solid #f3e8d0;
}
.is-card:hover .is-card-icon {
    background: #d4af37;
    color: #ffffff;
    transform: scale(1.02);
    border-color: #d4af37;
}
.is-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.is-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3748;
    opacity: 0.85;
    max-width: 280px;
    margin: 0 auto;
}
.card-divider {
    width: 40px;
    height: 3px;
    background: #d4af37;
    border-radius: 4px;
    margin: 0.75rem auto 1.25rem;
    opacity: 0.5;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
    background: var(--dark);
    color: var(--white);
}
.locations .section-title,
.locations .section-subtitle {
    color: var(--white);
}
.locations .section-subtitle {
    opacity: 0.8;
}
.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.loc-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s;
}
.loc-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}
.loc-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--gold);
}
.loc-card p {
    margin-bottom: 20px;
    opacity: 0.8;
}

/* ============================================================
   PRAYER CTA
   ============================================================ */
.prayer-cta {
    background: linear-gradient(135deg, var(--slate) 0%, var(--dark) 100%);
    color: var(--white);
    text-align: center;
}
.prayer-cta .section-title {
    color: var(--white);
}
.prayer-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}
.prayer-cta .btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 16px 40px;
    font-size: 1.1rem;
}
.prayer-cta .btn-primary:hover {
    background: #c5a030;
    transform: translateY(-2px);
}

/* ============================================================
   EVERYDAY LIFE SECTION
   ============================================================ */
.everyday-life-section {
    background: var(--gold-light);
    padding: 60px 0;
    border-bottom: 3px solid var(--gold);
}
.everyday-life-section .el-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.everyday-life-section .el-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--slate);
    background: rgba(255, 255, 255, 0.5);
    padding: 4px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
}
.everyday-life-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.everyday-life-section p {
    font-size: 1.15rem;
    color: var(--slate);
    font-style: italic;
    margin-bottom: 25px;
}
.everyday-life-section .btn {
    background: var(--gold);
    color: var(--dark);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.everyday-life-section .btn:hover {
    background: #c5a030;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
    background: var(--white);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.blog-card-img .blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-card-content {
    padding: 25px;
}
.blog-card-content .blog-meta {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 10px;
}
.blog-card-content .blog-meta i {
    color: var(--gold);
    margin-right: 5px;
}
.blog-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.3;
}
.blog-card-content p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.blog-card-content .read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.blog-card-content .read-more:hover {
    color: #c5a030;
}
.blog-card-content .read-more i {
    transition: transform 0.3s;
}
.blog-card-content .read-more:hover i {
    transform: translateX(5px);
}

.blog-img-1 {
    background-image: url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=800&q=80');
}
.blog-img-2 {
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=800&q=80');
}
.blog-img-3 {
    background-image: url('https://images.unsplash.com/photo-1528605248644-14dd04022da1?w=800&q=80');
}

/* ============================================================
   EVERYDAY LIFE GROUPS
   ============================================================ */
.el-groups {
    background: var(--white);
}
.el-groups .section-subtitle {
    max-width: 700px;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
    background: var(--white);
}
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--gold-light);
    margin-top: 20px;
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}
.map-address {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--slate);
}
.map-address i {
    color: var(--gold);
    margin-right: 10px;
}

/* ============================================================
   GIVE SECTION
   ============================================================ */
.give-section {
    background: var(--light-gray);
}
.give-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 45px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.give-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.give-option {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.give-option:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}
.give-option .flag {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.give-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}
.give-option .currency {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}
.give-option .payment-methods {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 15px 0 20px;
}
.give-option .payment-methods span {
    background: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate);
    border: 1px solid #e2e8f0;
}
.give-option .btn {
    background: var(--gold);
    color: var(--dark);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.give-option .btn:hover {
    background: #c5a030;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.give-option .btn i {
    margin-right: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
}
.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--gold);
}
.footer-col a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer-col a:hover {
    opacity: 1;
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-links a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    border-color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .is-grid {
        gap: 1.5rem;
    }
    .hero-slider {
        height: 75vh;
        min-height: 450px;
    }
    .slide h1 {
        font-size: 3.5rem;
    }
    .slide h1 span {
        font-size: 3.8rem;
    }
    .blog-card-img {
        height: 170px;
    }
    .map-wrapper iframe {
        height: 350px;
    }
    .logo img {
        height: 40px;
    }
    .logo .logo-text {
        font-size: 1.3rem;
    }
    .everyday-life-section h2 {
        font-size: 1.8rem;
    }
    .give-wrapper {
        padding: 35px 30px;
    }
}

@media (max-width: 820px) {
    .is-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .is-card p {
        max-width: 100%;
    }
    .slider-arrows button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .slide-counter {
        display: none;
    }
    .blog-card-img {
        height: 160px;
    }
    .social-links {
        justify-content: center;
    }
    .map-wrapper iframe {
        height: 300px;
    }
    .logo img {
        height: 35px;
    }
    .logo .logo-text {
        font-size: 1.1rem;
    }
    .everyday-life-section h2 {
        font-size: 1.6rem;
    }
    .everyday-life-section p {
        font-size: 1rem;
    }
    .give-options {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }

    .hero-slider {
        height: auto;
        min-height: 480px;
        padding: 50px 0;
    }
    .slide {
        position: relative;
        opacity: 0;
        height: auto;
        min-height: 400px;
        display: none;
        padding: 30px 0;
    }
    .slide.active {
        display: flex;
        opacity: 1;
    }
    .slide h1 {
        font-size: 2.8rem;
    }
    .slide h1 span {
        font-size: 3rem;
    }
    .slide p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .slide-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .slide-buttons .btn {
        width: 100%;
    }

    .slider-dots {
        bottom: 15px;
        gap: 10px;
    }
    .dot {
        width: 12px;
        height: 12px;
    }
    .slider-arrows {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }
    .is-grid,
    .loc-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .blog-card-img {
        height: 180px;
    }
    .social-links {
        justify-content: center;
    }
    .map-wrapper iframe {
        height: 250px;
    }
    .map-address {
        font-size: 1rem;
    }
    .logo img {
        height: 32px;
    }
    .logo .logo-text {
        font-size: 1rem;
    }
    .everyday-life-section {
        padding: 40px 0;
    }
    .everyday-life-section h2 {
        font-size: 1.4rem;
    }
    .everyday-life-section p {
        font-size: 0.95rem;
    }
    .everyday-life-section .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    .give-wrapper {
        padding: 25px 20px;
    }
    .give-options {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-slider {
        min-height: 420px;
        padding: 30px 0;
    }
    .slide {
        min-height: 350px;
    }
    .slide h1 {
        font-size: 2.2rem;
    }
    .slide h1 span {
        font-size: 2.4rem;
    }
    .slide p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .is-card {
        padding: 2rem 1.5rem;
    }
    .is-card-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    .is-card h3 {
        font-size: 1.4rem;
    }
    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
    .blog-card-img {
        height: 150px;
    }
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .map-wrapper iframe {
        height: 200px;
    }
    .logo img {
        height: 28px;
    }
    .logo .logo-text {
        font-size: 0.85rem;
    }
    .everyday-life-section h2 {
        font-size: 1.2rem;
    }
    .everyday-life-section p {
        font-size: 0.85rem;
    }
    .everyday-life-section .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .give-wrapper {
        padding: 20px 15px;
    }
    .give-option {
        padding: 20px 15px;
    }
    .give-option .currency {
        font-size: 1.4rem;
    }
    .give-option .payment-methods span {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
}

@media (hover: none) {
    .btn:hover,
    .is-card:hover,
    .loc-card:hover,
    .slider-arrows button:hover,
    .blog-card:hover,
    .social-links a:hover,
    .everyday-life-section .btn:hover,
    .give-option .btn:hover {
        transform: none;
    }
}