/* =========================================
   RESPONSIVE DESIGN SYSTEM
========================================= */

/* =========================================
   LAPTOP DEVICES
========================================= */
@media(max-width:1200px){

  .container{
    width:92%;
  }

  h1{
    font-size:58px !important;
  }

  h2{
    font-size:44px !important;
  }

  /* HERO */
  .hero-grid{
    gap:50px;
  }

  .hero-image img{
    height:620px;
  }

  /* GRIDS */
  .appeals-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .program-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .blog-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .team-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .footer-grid{
    grid-template-columns:2fr 1fr 1fr;
  }

}

/* =========================================
   TABLET DEVICES
========================================= */
@media(max-width:991px){

  .container{
    width:94%;
  }

  h1{
    font-size:48px !important;
  }

  h2{
    font-size:38px !important;
  }

  p{
    font-size:15px;
    line-height:1.8;
  }

  /* ======================
     HERO
  ====================== */
  .hero{
    padding:100px 0;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:60px;
    text-align:center;
  }

  .hero-text p{
    margin:auto auto 40px;
  }

  .hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero-stats{
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero-image-wrapper{
    max-width:700px;
    margin:auto;
  }

  .floating-card{
    left:20px;
    bottom:20px;
  }

  .mini-card{
    right:20px;
  }

  /* ======================
     SECTION GRIDS
  ====================== */
  .about-grid,
  .contact-grid,
  .details-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .mission-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .projects-grid{
    grid-template-columns:1fr;
  }

  .impact-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .contact-cards{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .donate-cards{
    grid-template-columns:1fr;
  }

  .details-gallery{
    grid-template-columns:repeat(2,1fr);
  }

}
/* =========================================
   TABLET
========================================= */
@media(max-width:991px){

  .topbar-wrapper{
    flex-direction:column;
    gap:18px;
    text-align:center;
  }

  .topbar-right{
    flex-direction:column;
    gap:18px;
  }

  .contact-info{
    justify-content:center;
  }

  .nav-menu li a{
    padding:20px 14px;
    font-size:14px;
  }

}

/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width:768px){

  html,
  body{
    overflow-x:hidden;
  }

  body{
    font-size:15px;
  }

  .container{
    width:100%;
    padding:0 18px;
  }

  .flex-between{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  img{
    max-width:100%;
    height:auto;
    display:block;
  }
}
/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width:768px){

  /* TOP BAR */
  .top-bar{
    padding:18px 0;
  }

  .topbar-wrapper{
    flex-direction:column;
    align-items:center;
    gap:18px;
    text-align:center;
  }

  .topbar-right{
    flex-direction:column;
    gap:18px;
    width:100%;
  }

  /* LOGO */
  .logo-area img{
    height:50px;
  }

  /* CONTACT INFO */
  .contact-info{
    justify-content:center;
    gap:14px;
  }

  .contact-info span{
    font-size:13px;
    justify-content:center;
  }

  /* BUTTONS */
  .actions{
    width:100%;
    justify-content:center;
  }

  .btn-outline,
  .btn-primary{
    width:100%;
    max-width:280px;
    text-align:center;
  }

  /* NAVBAR */
  .nav-wrapper{
    position:fixed;
    justify-content:space-between;
    min-height:72px;
    background: transparent;
  }
  /* MOBILE TOGGLE */
  .mobile-toggle{
    position: fixed;
    display:flex;
  }

  /* NAV MENU */
  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:14px;
    border-top:1px solid rgba(0,0,0,0.06);

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);

    transition:0.35s ease;
  }

  /* ACTIVE MENU */
  .nav-menu.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .nav-menu li{
    width:100%;
  }

  .nav-menu li a{
    width:100%;
    justify-content:flex-start;
    padding:16px 18px;
    font-size:14px;
  }

  .nav-menu li a::after{
    display:none;
  }
}
/* =====================================
   MOBILE RESPONSIVE
===================================== */
@media (max-width:768px){

  .hero{
    padding:80px 0;
  }

  /* SHAPES */
  .shape-1{
    width:220px;
    height:220px;
    top:-60px;
    left:-60px;
  }

  .shape-2{
    width:200px;
    height:200px;
    right:-60px;
    bottom:-60px;
  }

  /* GRID */
  .hero-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  /* TEXT */
  .hero-text{
    text-align:center;
  }

  .hero-badge{
    font-size:13px;
    padding:12px 18px;
    margin-bottom:22px;
  }

  .hero-text h1{
    font-size:42px;
    line-height:1.2;
    letter-spacing:-1px;
    margin-bottom:20px;
  }

  .hero-text p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:35px;
    max-width:100%;
  }

  /* BUTTONS */
  .hero-buttons{
    justify-content:center;
    gap:14px;
    margin-bottom:40px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline{
    width:100%;
    padding:15px 20px;
  }

  /* STATS */
  .hero-stats{
    justify-content:center;
    gap:24px;
    text-align:center;
  }

  .hero-stat{
    min-width:100px;
  }

  .hero-stat h3{
    font-size:30px;
  }

  .hero-stat span{
    font-size:13px;
  }

  /* IMAGE */
  .hero-image{
    border-radius:24px;
  }

  .hero-image img{
    height:420px;
  }

  /* FLOATING CARD */
  .floating-card{
    position:relative;
    left:auto;
    bottom:auto;
    margin-top:20px;
    max-width:100%;
    padding:18px;
    border-radius:20px;
  }

  .floating-icon{
    width:55px;
    height:55px;
    font-size:22px;
    border-radius:16px;
  }

  .floating-card h3{
    font-size:18px;
  }

  .floating-card p{
    font-size:13px;
  }

  /* MINI CARD */
  .mini-card{
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    margin-top:20px;
    padding:20px;
    border-radius:20px;
  }

  .mini-card h4{
    font-size:18px;
  }

  .mini-card span{
    font-size:13px;
  }
}
/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width:768px){

  .appeals{
    padding:60px 0;
  }

  /* HEADER */
  .section-header{
    margin-bottom:35px;
    padding:0 10px;
  }

  .section-header h2{
    font-size:28px;
    line-height:1.3;
  }

  .section-header p{
    font-size:14px;
    line-height:1.7;
  }

  /* GRID */
  .appeals-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  /* CARD */
  .appeal-card{
    border-radius:18px;
  }

  .card-img img{
    height:220px;
    border-radius:18px 18px 0 0;
  }

  /* ICON */
  .card-icon{
    width:52px;
    height:52px;
    font-size:18px;
    left:18px;
  }

  /* CONTENT */
  .card-content{
    padding:38px 18px 20px;
  }

  .card-content h3{
    font-size:17px;
  }

  .card-content p{
    font-size:14px;
    line-height:1.7;
  }

  .card-content a{
    font-size:14px;
  }
}
/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width:768px){

  .quick-donate{
    padding:60px 0;
  }

  /* TABS */
  .donate-tabs{
    flex-wrap:wrap;
    gap:10px;
    margin:25px 0 35px;
  }

  .tab{
    width:100%;
    text-align:center;
    padding:12px 18px;
    font-size:14px;
  }

  /* CARDS */
  .donate-cards{
    grid-template-columns:1fr;
    gap:20px;
  }

  .donate-card{
    border-radius:18px;
  }

  .donate-card img{
    height:250px;
  }

  /* OVERLAY */
  .donate-overlay{
    padding:20px;
  }

  .donate-overlay h3{
    font-size:20px;
    line-height:1.4;
  }

  .donate-overlay p{
    font-size:13px;
    line-height:1.7;
    margin-bottom:14px;
  }

  /* TAG */
  .tag{
    font-size:11px;
    padding:5px 10px;
  }

  /* BUTTON */
  .btn-white{
    display:inline-block;
    width:100%;
    text-align:center;
    padding:12px 18px;
    font-size:14px;
  }
}

/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width:768px){

  /* IMPACT SECTION */
  .impact{
    padding:60px 0;
  }

  .impact-header h2{
    font-size:28px;
    line-height:1.3;
  }

  .impact-header p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:35px;
  }

  /* IMPACT GRID */
  .impact-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .impact-card{
    padding:24px 20px;
    border-radius:18px;
  }

  .impact-card i{
    font-size:24px;
    margin-bottom:12px;
  }

  .impact-card h3{
    font-size:24px;
  }

  .impact-card p{
    font-size:13px;
    line-height:1.7;
  }

  /* CTA */
  .impact-cta{
    margin-top:35px;
  }

  .impact-cta p{
    font-size:15px;
    line-height:1.7;
  }

  .btn-white{
    display:inline-block;
    width:100%;
    text-align:center;
    padding:13px 20px;
    font-size:14px;
  }

  /* PROGRAMS */
  .programs{
    padding:70px 0;
  }

  /* FILTER TABS */
  .program-tabs{
    gap:10px;
    margin:25px 0 40px;
  }

  .program-tabs .filter-btn{
    width:100%;
    padding:12px 18px;
    font-size:14px;
  }

  /* PROGRAM GRID */
  .program-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  /* CARD */
  .project-card{
    border-radius:20px;
  }

  .project-card img{
    height:230px;
  }

  .program-tag{
    width:calc(100% - 30px);
    text-align:center;
    font-size:13px;
    padding:10px 16px;
  }

  /* TESTIMONIALS */
  .testimonials{
    padding:60px 0;
  }

  .testimonial-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .testimonial-card{
    padding:22px 18px;
    border-radius:18px;
  }

  .testimonial-top{
    align-items:flex-start;
  }

  .testimonial-top img{
    width:55px;
    height:55px;
  }

  .testimonial-card h4{
    font-size:16px;
  }

  .testimonial-card span{
    font-size:12px;
  }

  .testimonial-card p{
    font-size:13px;
    line-height:1.7;
  }

  .quote{
    top:16px;
    right:16px;
    font-size:18px;
  }
}

/* =======================
   MOBILE RESPONSIVE
======================= */
@media (max-width:768px){

  /* BLOGS / NEWS */
  .blogs,
  .news{
    padding:60px 0;
  }

  .blog-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .blog-card{
    padding-bottom:10px;
  }

  .blog-img{
    border-radius:16px;
  }

  .blog-img img{
    height:220px;
  }

  .blog-content{
    padding-top:14px;
    padding-bottom:10px;
  }

  .blog-content .date{
    font-size:12px;
  }

  .blog-content h3{
    font-size:18px;
    line-height:1.5;
  }

  .tag{
    font-size:11px;
    padding:5px 9px;
  }

  /* BUTTONS */
  .center-btn{
    margin-top:35px;
  }

  .btn,
  .btn-primary{
    width:100%;
    padding:13px 20px;
    font-size:14px;
  }

  /* NEWSLETTER */
  .newsletter{
    padding:50px 0;
  }

  .newsletter h2{
    font-size:26px;
    line-height:1.3;
  }

  .newsletter p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:20px;
    padding:0 10px;
  }

  /* FORM */
  .newsletter-form{
    flex-direction:column;
    gap:12px;
    border-radius:20px;
    padding:18px;
    max-width:100%;
  }

  .newsletter-form i{
    margin-right:0;
  }

  .newsletter-form input{
    width:100%;
    padding:12px;
    text-align:center;
  }

  .newsletter-form button{
    width:100%;
    padding:12px 18px;
    border-radius:14px;
    font-size:14px;
  }

  /* FOOTER */
  .footer{
    padding:60px 0 0;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .footer-logo{
    height:52px;
    margin-bottom:18px;
  }

  .footer p{
    font-size:14px;
    line-height:1.8;
  }

  .footer-col h4{
    font-size:18px;
    margin-bottom:18px;
  }

  .footer-col ul li{
    margin-bottom:12px;
  }

  /* CONTACT */
  .footer-contact p{
    margin-bottom:14px;
  }

  /* SOCIALS */
  .footer-socials{
    gap:10px;
    flex-wrap:wrap;
  }

  .footer-socials a{
    width:40px;
    height:40px;
    border-radius:10px;
  }

  /* BOTTOM */
  .footer-bottom{
    margin-top:40px;
    padding:18px 0;
  }

  .footer-bottom p{
    font-size:13px;
    line-height:1.6;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width:768px){

  /* PAGE HERO */
  .page-hero{
    padding:80px 0;
    background-position:center;
  }

  .page-hero h1{
    font-size:34px;
    line-height:1.3;
    margin-bottom:12px;
  }

  .page-hero p{
    font-size:15px;
    line-height:1.8;
    padding:0 10px;
  }

  /* ABOUT PAGE */
  .about-page{
    padding:70px 0;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-image{
    text-align:center;
  }

  .about-image img{
    width:100%;
    max-width:420px;
    border-radius:18px;
  }

  .about-content{
    text-align:center;
  }

  .about-content h2{
    font-size:30px;
    line-height:1.3;
    margin:15px 0;
  }

  .about-content p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:18px;
  }

  /* FEATURES */
  .about-features{
    margin-top:25px;
  }

  .feature{
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
    text-align:left;
  }

  .feature i{
    margin-top:4px;
  }

  /* INTRODUCTION SECTION */
  .introduction-section{
    padding:70px 0;
  }

  .intro-content p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:20px;
  }

  /* HIGHLIGHT BOX */
  .highlight-box{
    padding:24px 20px;
    border-radius:18px;
  }

  .highlight-box h3{
    font-size:22px;
    line-height:1.4;
    margin-bottom:12px;
  }

  .highlight-box p{
    font-size:14px;
    line-height:1.8;
  }

  /* INTRO LIST */
  .intro-list{
    grid-template-columns:1fr;
    gap:16px;
    margin-top:30px;
  }

  .intro-item{
    padding:16px 18px;
    border-radius:14px;
    gap:12px;
  }

  .intro-item i{
    font-size:16px;
  }

  .intro-item span{
    font-size:14px;
    line-height:1.5;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width:768px){

  /* MISSION SECTION */
  .mission-section{
    padding:70px 0;
  }

  .mission-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .mission-card{
    padding:30px 22px;
    border-radius:18px;
  }

  .mission-icon{
    width:70px;
    height:70px;
    font-size:26px;
    margin-bottom:18px;
  }

  .mission-card h3{
    font-size:22px;
    margin-bottom:12px;
  }

  .mission-card p{
    font-size:14px;
    line-height:1.8;
  }

  /* TEAM SECTION */
  .team-section{
    padding:70px 0;
  }

  .team-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .team-card{
    border-radius:18px;
  }

  .team-card img{
    height:340px;
  }

  .team-card h3{
    font-size:22px;
    margin-top:18px;
  }

  .team-card p{
    font-size:14px;
    margin:8px 0 18px;
  }

  /* SOCIALS */
  .team-socials{
    padding-bottom:20px;
  }

  .team-socials i{
    width:38px;
    height:38px;
    line-height:38px;
    margin:0 4px;
    font-size:14px;
  }

  /* ABOUT CTA */
  .about-cta{
    padding:70px 0;
  }

  .about-cta h2{
    font-size:30px;
    line-height:1.3;
    margin-bottom:16px;
  }

  .about-cta p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:25px;
    padding:0 10px;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width:768px){

  /* PROJECTS PAGE */
  .projects-page{
    padding:70px 0;
  }

  /* FILTERS */
  .project-filters{
    gap:10px;
    margin-bottom:40px;
  }

  .filter-btn{
    width:100%;
    padding:12px 18px;
    font-size:14px;
  }

  /* GRID */
  .projects-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  /* CARD */
  .project-card{
    border-radius:18px;
  }

  .project-image img{
    height:240px;
  }

  .project-tag{
    top:16px;
    left:16px;
    font-size:12px;
    padding:7px 14px;
  }

  /* CONTENT */
  .project-content{
    padding:22px 18px;
  }

  .project-content h3{
    font-size:22px;
    line-height:1.4;
    margin-bottom:12px;
  }

  .project-content p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
  }

  /* PROGRESS */
  .progress-info{
    font-size:13px;
  }

  /* FOOTER */
  .project-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .project-footer strong{
    font-size:18px;
  }

  .project-footer span{
    font-size:13px;
  }

  /* PROJECT DETAILS */
  .project-details{
    padding:70px 0;
  }

  .details-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  /* IMAGE */
  .details-image img{
    border-radius:18px;
    margin-bottom:24px;
  }

  /* TEXT */
  .details-text h2{
    font-size:30px;
    line-height:1.3;
    margin:15px 0;
  }

  .details-text p{
    font-size:14px;
    line-height:1.9;
    margin-bottom:18px;
  }

  /* GALLERY */
  .details-gallery{
    grid-template-columns:1fr;
    gap:16px;
    margin-top:30px;
  }

  .details-gallery img{
    height:240px;
    border-radius:14px;
  }

  /* IMPACT STATS */
  .impact-stats{
    grid-template-columns:1fr;
    gap:18px;
    margin-top:35px;
  }

  .impact-box{
    padding:24px 20px;
    border-radius:18px;
  }

  .impact-box i{
    font-size:28px;
    margin-bottom:12px;
  }

  .impact-box h3{
    font-size:24px;
  }

  /* SIDEBAR */
  .donation-card{
    padding:24px 20px;
    border-radius:18px;
    position:relative;
    top:auto;
  }

  .donation-card h3{
    font-size:22px;
    margin-bottom:20px;
  }

  /* GOAL INFO */
  .goal-info{
    font-size:13px;
    gap:10px;
    flex-wrap:wrap;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width:768px){

  /* CONTACT INFO SECTION */
  .contact-info-section{
    padding:70px 0 40px;
  }

  .contact-cards{
    grid-template-columns:1fr;
    gap:20px;
  }

  .contact-card{
    padding:30px 22px;
    border-radius:18px;
  }

  .contact-icon{
    width:70px;
    height:70px;
    font-size:24px;
    margin-bottom:18px;
  }

  .contact-card h3{
    font-size:22px;
    margin-bottom:8px;
  }

  .contact-card p{
    font-size:14px;
    line-height:1.7;
  }

  /* CONTACT FORM SECTION */
  .contact-form-section{
    padding:70px 0;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-form-content{
    text-align:center;
  }

  .contact-form-content h2{
    font-size:30px;
    line-height:1.3;
    margin:15px 0;
  }

  .contact-form-content p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:24px;
  }

  /* FORM */
  .contact-form{
    gap:16px;
  }

  .form-group input,
  .form-group textarea{
    padding:14px;
    font-size:14px;
    border-radius:10px;
  }

  .submit-btn{
    width:100%;
  }

  /* IMAGE */
  .contact-image img{
    border-radius:18px;
  }

  /* MAP */
  .map-section iframe{
    height:320px;
  }

  /* FAQ */
  .faq-section{
    padding:70px 0;
  }

  .faq-item{
    border-radius:16px;
    margin-bottom:16px;
  }

  .faq-question{
    padding:20px 18px;
    gap:15px;
    align-items:flex-start;
  }

  .faq-question h3{
    font-size:16px;
    line-height:1.5;
  }

  .faq-question i{
    font-size:14px;
    margin-top:4px;
  }

  .faq-answer p{
    padding:0 18px 20px;
    font-size:14px;
    line-height:1.8;
  }

  .faq-item.active .faq-answer{
    max-height:320px;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width:768px){

  /* GALLERY PAGE */
  .gallery-section{
    padding:70px 0;
  }

  .gallery-filters{
    gap:10px;
    margin-bottom:35px;
  }

  .gallery-btn{
    width:100%;
    padding:12px 18px;
    font-size:14px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .gallery-item{
    border-radius:18px;
  }

  .gallery-item img{
    height:260px;
  }

  .gallery-overlay i{
    font-size:28px;
  }

  /* VIDEO SECTION */
  .video-section{
    padding:70px 0;
  }

  .video-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .video-card{
    border-radius:18px;
  }

  .video-thumb img{
    height:240px;
  }

  .video-play{
    width:65px;
    height:65px;
    font-size:22px;
  }

  .video-card h3{
    padding:20px 18px;
    font-size:18px;
    line-height:1.5;
  }

  /* LIGHTBOX */
  .lightbox-img{
    max-width:95%;
    max-height:80%;
    border-radius:12px;
  }

  .close-lightbox{
    top:20px;
    right:25px;
    font-size:40px;
  }

  /* BLOG PAGE */
  .blog-page{
    padding:70px 0;
  }

  .blog-layout{
    grid-template-columns:1fr;
    gap:30px;
  }

  .blog-post-card{
    border-radius:18px;
    margin-bottom:30px;
  }

  .blog-post-image img{
    height:240px;
  }

  .blog-post-content{
    padding:22px 18px;
  }

  .blog-meta{
    flex-wrap:wrap;
    gap:12px;
    font-size:13px;
    margin-bottom:16px;
  }

  .blog-post-content h2{
    font-size:26px;
    line-height:1.4;
    margin-bottom:16px;
  }

  .blog-post-content p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
  }

  /* SIDEBAR */
  .blog-sidebar{
    gap:22px;
  }

  .sidebar-widget{
    padding:22px 18px;
    border-radius:18px;
  }

  .sidebar-widget h3{
    margin-bottom:18px;
    font-size:22px;
  }

  .search-box{
    border-radius:10px;
  }

  .search-box input{
    padding:13px;
    font-size:14px;
  }

  .search-box button{
    width:55px;
  }

  /* RECENT POSTS */
  .recent-post{
    gap:12px;
    margin-bottom:18px;
  }

  .recent-post img{
    width:70px;
    height:70px;
    border-radius:10px;
  }

  .recent-post h4{
    font-size:15px;
    line-height:1.5;
  }

  .recent-post span{
    font-size:12px;
  }

  /* PAGINATION */
  .pagination{
    gap:10px;
    margin-top:35px;
    flex-wrap:wrap;
  }

  .page-btn{
    width:42px;
    height:42px;
  }

  /* BLOG DETAILS */
  .blog-details-page{
    padding:70px 0;
  }

  .details-feature-image img{
    border-radius:18px;
    margin-bottom:25px;
  }

  .blog-details-content{
    margin-top:25px;
  }

  .blog-details-content p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:20px;
  }

  .blog-details-content h3{
    font-size:24px;
    line-height:1.4;
    margin:30px 0 16px;
  }

  .blog-details-content ul li{
    font-size:14px;
    line-height:1.8;
  }

  /* BLOCKQUOTE */
  blockquote{
    padding:24px 20px;
    margin:30px 0;
    border-radius:14px;
    font-size:18px;
    line-height:1.7;
  }

  blockquote span{
    font-size:14px;
    margin-top:12px;
  }

  /* BLOG BOTTOM */
  .blog-bottom{
    flex-direction:column;
    align-items:flex-start;
    margin:40px 0;
  }

  .blog-tags{
    gap:10px;
  }

  .blog-tags a{
    padding:9px 14px;
    font-size:13px;
  }

  .share-post{
    gap:10px;
    flex-wrap:wrap;
  }

  .share-post a{
    width:38px;
    height:38px;
  }

  /* AUTHOR */
  .author-box{
    flex-direction:column;
    text-align:center;
    gap:18px;
    padding:24px 20px;
    border-radius:18px;
    margin-bottom:40px;
  }

  .author-box img{
    width:85px;
    height:85px;
  }

  .author-box p{
    font-size:14px;
    line-height:1.8;
  }

  /* COMMENTS */
  .comments-section{
    margin-bottom:40px;
  }

  .comments-section h2{
    margin-bottom:24px;
    font-size:26px;
  }

  .comment{
    flex-direction:column;
    gap:16px;
    padding:20px 18px;
    border-radius:18px;
  }

  .comment img{
    width:60px;
    height:60px;
  }

  .comment-content span{
    font-size:12px;
    margin:6px 0 12px;
  }

  .comment-content p{
    font-size:14px;
    line-height:1.8;
  }

  /* COMMENT FORM */
  .comment-form-box{
    padding:24px 20px;
    border-radius:18px;
    margin-bottom:60px;
  }

  .comment-form-box h2{
    margin-bottom:22px;
    font-size:26px;
  }

  .comment-form{
    gap:16px;
  }

  /* VOLUNTEER PAGE */
  .volunteer-benefits,
  .opportunities-section,
  .volunteer-form-section,
  .volunteer-testimonials{
    padding:70px 0;
  }

  .benefits-grid,
  .opportunity-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .benefit-card,
  .opportunity-card{
    padding:28px 22px;
    border-radius:18px;
  }

  .benefit-card i{
    font-size:34px;
    margin-bottom:16px;
  }

  .benefit-card p,
  .opportunity-card p{
    font-size:14px;
    line-height:1.8;
  }

  /* VOLUNTEER FORM */
  .volunteer-layout{
    grid-template-columns:1fr;
    gap:35px;
  }

  .volunteer-content{
    text-align:center;
  }

  .volunteer-content h2{
    font-size:30px;
    line-height:1.3;
  }

  .volunteer-content p{
    font-size:14px;
    line-height:1.8;
  }

  .volunteer-content img{
    width:100%;
  }

  .volunteer-form-wrapper{
    padding:28px 22px;
    border-radius:20px;
  }

  .volunteer-form{
    gap:16px;
  }

  .volunteer-form select,
  .volunteer-form textarea,
  .volunteer-form input{
    padding:14px;
    font-size:14px;
    border-radius:10px;
  }

  /* FAQ PAGE */
  .faq-page{
    padding:70px 0;
  }

  .faq-layout{
    grid-template-columns:1fr;
    gap:30px;
  }

  .faq-sidebar{
    position:relative;
    top:auto;
  }

  .faq-sidebar-box,
  .support-box{
    padding:24px 20px;
    border-radius:18px;
  }

  .faq-sidebar-box h3,
  .support-box h3{
    margin-bottom:18px;
    font-size:22px;
  }

  .support-box i{
    font-size:34px;
    margin-bottom:16px;
  }

  .support-box p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
  }

  .faq-main{
    gap:35px;
  }

  .faq-search input{
    padding:16px 50px 16px 18px;
    border-radius:12px;
    font-size:14px;
  }

  .faq-search i{
    right:16px;
  }

  .faq-category h2{
    margin-bottom:22px;
    font-size:26px;
  }

  /* COMPLAINT PAGE */
  .complaint-intro,
  .complaint-types,
  .complaint-form-section,
  .complaint-cta{
    padding:70px 0;
  }

  .complaint-grid,
  .complaint-form-grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .complaint-image{
    text-align:center;
  }

  .complaint-image img{
    width:100%;
    border-radius:18px;
  }

  .complaint-content h2,
  .complaint-form-wrapper h2,
  .complaint-info-box h2{
    font-size:30px;
    line-height:1.3;
  }

  .complaint-content p,
  .complaint-info-box p{
    font-size:14px;
    line-height:1.9;
  }

  .complaint-features{
    gap:14px;
    margin-top:22px;
  }

  .complaint-cards{
    grid-template-columns:1fr;
    gap:20px;
    margin-top:35px;
  }

  .complaint-card{
    padding:28px 22px;
    border-radius:18px;
  }

  .complaint-card i{
    width:70px;
    height:70px;
    font-size:28px;
    margin-bottom:20px;
  }

  .complaint-card p{
    font-size:14px;
    line-height:1.8;
  }

  .complaint-info-box,
  .complaint-form-wrapper{
    padding:28px 22px;
    border-radius:20px;
  }

  .info-item{
    gap:14px;
    margin-top:22px;
  }

  .info-item i{
    width:52px;
    height:52px;
    font-size:18px;
    border-radius:14px;
  }

  .complaint-form{
    margin-top:22px;
  }

  .complaint-form input,
  .complaint-form select,
  .complaint-form textarea{
    padding:14px 16px;
    font-size:14px;
    border-radius:12px;
  }

  .submit-btn{
    padding:14px;
    font-size:15px;
  }

  .cta-box{
    padding:45px 22px;
    border-radius:20px;
  }

  .cta-box h2{
    font-size:28px;
    line-height:1.3;
  }

  .cta-box p{
    font-size:14px;
    line-height:1.8;
  }

  /* VERIFICATION */
  .volunteer-check{
    padding:70px 0;
  }

  .verification-box{
    padding:28px 22px;
    border-radius:20px;
  }

  .verification-input{
    flex-direction:column;
    gap:14px;
  }

  .verification-input input,
  .verification-input button{
    width:100%;
    padding:14px 16px;
    font-size:14px;
    border-radius:12px;
    justify-content:center;
  }

  .verification-result{
    margin-top:22px;
    padding:20px;
    font-size:16px;
    border-radius:16px;
  }
}