@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap);

:root {
    --primary: #18534f;
    --secondary: #01998a;
    --accent: #d7955b;
    --light: #feeaa1;
    --white: #ffffff;
    --text: #2b2b2b;
    --text-light: #666;
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
    --radius: 20px;
    --transition: 0.35s ease
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    opacity: 0;
    transition: opacity .6s ease;
    font-family: Inter, sans-serif;
    color: var(--text);
    background: #fafafa;
    overflow: hidden
}

body.loaded {
    opacity: 1;
    overflow: auto
}

img {
    width: 100%;
    display: block
}

a {
    text-decoration: none
}

ul {
    list-style: none
}

.container {
    width: min(1100px, 90%);
    margin: auto
}

section {
    padding: 100px 0
}

#splash-screen {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity .6s ease, visibility .6s ease
}

#splash-screen.loaded {
    opacity: 0;
    visibility: hidden
}

.loader-dots {
    display: flex;
    gap: 12px
}

.loader-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: bounce 1s infinite ease-in-out
}

.loader-dots span:first-child {
    background: var(--primary);
    animation-delay: 0s
}

.loader-dots span:nth-child(2) {
    background: var(--secondary);
    animation-delay: .15s
}

.loader-dots span:nth-child(3) {
    background: var(--primary);
    animation-delay: .3s
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .4
    }

    50% {
        transform: translateY(-14px);
        opacity: 1
    }
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .4)
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px
}

.logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1
}

.logo-main {
    font-family: Poppins;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary)
}

.logo-main span {
    color: var(--secondary)
}

.logo small {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    font-style: italic;
    margin-top: -2px;
    letter-spacing: 1px;
    align-self: center
}

.nav-menu {
    display: flex;
    gap: 35px
}

.nav-menu a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition)
}

.nav-menu a:hover {
    color: var(--secondary)
}

.nav-btn {
    border: none;
    cursor: pointer;
    background: var(--secondary);
    color: #fff;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition)
}

.nav-btn:hover {
    background: var(--primary)
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary)
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .05)
}

.nav-container {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary)
}

.logo span {
    color: var(--secondary)
}

.nav-menu {
    display: flex;
    gap: 35px
}

.nav-menu a {
    font-weight: 600;
    color: var(--primary);
    transition: .3s
}

.nav-menu a:hover {
    color: var(--secondary)
}

.nav-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer
}

.menu-toggle {
    display: none;
    border: none;
    background: 0 0;
    cursor: pointer
}

.menu-toggle i {
    font-size: 2rem;
    color: var(--primary)
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    transition: .4s ease;
    display: none;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .15)
}

.mobile-drawer.active {
    display: flex;
    right: 0
}

.drawer-header {
    height: 90px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.drawer-close {
    border: none;
    background: 0 0;
    cursor: pointer
}

.drawer-close i {
    font-size: 2rem;
    color: var(--primary)
}

.drawer-menu {
    padding: 25px;
    display: flex;
    flex-direction: column
}

.drawer-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 15px;
    border-radius: 15px;
    color: var(--primary);
    font-weight: 600;
    transition: .3s
}

.drawer-menu a:hover {
    background: rgba(1, 153, 138, .08);
    color: var(--secondary)
}

.drawer-menu i {
    font-size: 1.25rem
}

.drawer-footer {
    margin-top: auto;
    padding: 25px
}

.drawer-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1001;
    backdrop-filter: blur(4px)
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible
}

@media (max-width:992px) {

    .nav-btn,
    .nav-menu {
        display: none
    }

    .menu-toggle {
        display: block
    }
}

@media (max-width:480px) {
    .mobile-drawer {
        width: 100%;
        max-width: 100%
    }
}

.hero {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../logos/hero-section.jpg");
    background-size: cover;
    background-position: center
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(1, 153, 138, .326) 0, rgba(1, 153, 138, .35) 25%, rgba(1, 153, 138, .6) 50%, rgba(24, 83, 79, .85) 75%, #18534f 100%)
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 100%;
    text-align: center;
    color: #fff
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 30px
}

.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #feeaa1
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px
}

.hero p {
    max-width: 760px;
    margin: auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .92)
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap
}

.btn-outline,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 600;
    transition: .35s ease
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 15px 35px rgba(254, 234, 161, .25)
}

.btn-primary:hover {
    transform: translateY(-5px)
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    color: #fff
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary)
}

@media (max-width:1100px) {
    .hero h1 {
        font-size: 3.2rem
    }
}

@media (max-width:768px) {
    .hero h1 {
        font-size: 2.6rem
    }

    .hero p {
        font-size: 1rem
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        max-width: 320px
    }
}

@media (max-width:480px) {
    .hero h1 {
        font-size: 2.1rem
    }

    .badge {
        font-size: .85rem
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-header span {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.section-header h2 {
    font-family: Poppins;
    font-size: 2.4rem;
    color: var(--primary)
}

.about {
    padding: 100px 0;
    background: #fff
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 80px;
    align-items: center
}

.about-content {
    max-width: 750px
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px
}

.section-subtitle::before {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--secondary)
}

.about-content h2 {
    font-family: Poppins, sans-serif;
    font-size: 2.4rem;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 25px
}

.about-content p {
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 18px
}

.about-brand {
    display: flex;
    flex-direction: column;
    align-items: center
}

.about-logo-card {
    width: 450px;
    height: 295px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px
}

.about-logo {
    width: 160px;
    position: relative;
    z-index: 2
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 35px 0
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(1, 153, 138, .08);
    padding: 12px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary)
}

.highlight i {
    color: var(--secondary);
    font-size: 1.2rem
}

.about-btn {
    width: 100%;
    text-align: center
}

@media (max-width:992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .about-content {
        text-align: center;
        max-width: 100%
    }

    .about-brand {
        width: 100%
    }

    .about-highlights {
        align-items: center
    }

    .section-subtitle {
        justify-content: center
    }
}

@media (max-width:768px) {
    .about {
        padding: 90px 0
    }

    .about-content h2 {
        font-size: 2rem
    }

    .about-logo-card {
        width: 240px;
        height: 240px
    }

    .about-logo {
        width: 140px
    }

    .hero-stats {
        display: none
    }
}

@media (max-width:480px) {
    .about-content h2 {
        font-size: 1.75rem
    }

    .about-logo-card {
        width: 210px;
        height: 210px
    }

    .about-logo {
        width: 120px
    }

    .hero-stats {
        display: none
    }

    .about-logo-card {
        width: 100%
    }
}

.domains {
    background: #f9fbfb
}

.section-header p {
    max-width: 750px;
    margin: 20px auto 0;
    color: var(--text-light);
    line-height: 1.9
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.domain-card {
    position: relative;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    transition: .4s ease;
    display: flex;
    flex-direction: column;
    height: 100%
}

.domain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
    z-index: 10
}

.domain-card:hover::before {
    transform: scaleX(1)
}

.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .1)
}

.domain-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative
}

.domain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s ease
}

.domain-card:hover .domain-image img {
    transform: scale(1.08)
}

.domain-content {
    position: relative;
    padding: 35px;
    padding-top: 55px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.domain-icon {
    position: absolute;
    top: -38px;
    left: 35px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: var(--secondary);
    border: 6px solid #fff;
    transition: .4s;
    z-index: 5
}

.domain-card:hover .domain-icon {
    background: var(--secondary)
}

.domain-icon i {
    font-size: 2rem;
    color: #fff;
    transition: .4s
}

.domain-card:hover .domain-icon i {
    color: #fff
}

@media (max-width:992px) {
    .domains-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .domains-grid {
        grid-template-columns: 1fr
    }

    .domain-content {
        padding: 30px
    }
}

@media (max-width:992px) {
    .domains-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .domains-grid {
        grid-template-columns: 1fr
    }

    .domain-image {
        height: 220px
    }

    .domain-content {
        padding: 30px;
        padding-top: 55px
    }

    .domain-icon {
        left: 30px
    }
}

.blog {
    background: #fff
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px
}

.blog-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .4s ease;
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12)
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 260px
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s ease
}

.blog-card:hover .blog-image img {
    transform: scale(1.08)
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(24, 83, 79, .95);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    backdrop-filter: blur(10px)
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-size: .9rem;
    font-weight: 500
}

.blog-meta i {
    font-size: 1rem
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 15px
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1
}

.blog-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 700;
    transition: .3s ease
}

.blog-content a i {
    transition: .3s ease
}

.blog-card:hover a i {
    transform: translateX(6px)
}

.blog-action {
    text-align: center;
    margin-top: 60px
}

@media (max-width:1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .blog-grid {
        grid-template-columns: 1fr
    }

    .blog-image {
        height: 240px
    }

    .blog-content {
        padding: 25px
    }
}

@media (max-width:480px) {
    .blog-content h3 {
        font-size: 1.15rem
    }

    .blog-meta {
        gap: 12px
    }
}

.faq {
    background: #f9fbfb
}

.faq-grid {
    display: flex;
    flex-direction: column
}

.faq-info h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin: 15px 0 20px
}

.faq-info p {
    line-height: 1.9;
    color: var(--text-light)
}

.faq-icon {
    width: 90px;
    height: 90px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(1, 153, 138, .08)
}

.faq-icon i {
    font-size: 2.5rem;
    color: var(--secondary)
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    overflow: hidden;
    transition: .35s ease
}

.faq-item:hover {
    transform: translateY(-2px)
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left
}

.faq-question span {
    max-width: 90%
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: .4s ease
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease, padding .35s ease;
    padding: 0 30px
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.9
}

.faq-item.active {
    border-left: 5px solid var(--secondary)
}

.faq-item.active .faq-question {
    background: rgba(1, 153, 138, .04)
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px
}

.faq-item.active .faq-question i {
    transform: rotate(45deg)
}

@media (max-width:992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .faq-info {
        text-align: center
    }

    .faq-icon {
        margin: 35px auto 0
    }
}

@media (max-width:768px) {
    .faq-info h2 {
        font-size: 2rem
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem
    }

    .faq-answer {
        padding: 0 20px
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px
    }
}

.cta {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    text-align: center;
    color: #fff;
    background: radial-gradient(circle at top left, rgba(254, 234, 161, .25), transparent 35%), radial-gradient(circle at bottom right, rgba(215, 149, 91, .2), transparent 30%), linear-gradient(135deg, #18534f 0, #0f6b63 50%, #01998a 100%)
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .08) 2px, transparent 2px);
    background-size: 35px 35px;
    opacity: .5;
    pointer-events: none
}

.cta::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -250px;
    right: -150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    filter: blur(80px)
}

.cta .container {
    position: relative;
    z-index: 5
}

.cta-subtitle {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px
}

.cta h2 {
    max-width: 900px;
    margin: auto auto 25px;
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700
}

.cta p {
    max-width: 750px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .9)
}

.cta-buttons {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: #fff;
    color: var(--primary);
    border-radius: 60px;
    font-weight: 700;
    transition: .4s
}

.cta-btn-primary:hover {
    transform: translateY(-5px)
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 600;
    transition: .4s
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, .15)
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: rgba(254, 234, 161, .12);
    top: 80px;
    left: 6%;
    animation: float 8s ease-in-out infinite
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, .08);
    bottom: 80px;
    left: 20%;
    animation: float 10s ease-in-out infinite
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(215, 149, 91, .12);
    right: 8%;
    bottom: -60px;
    animation: float 12s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

@media (max-width:992px) {
    .cta h2 {
        font-size: 2.8rem
    }
}

@media (max-width:768px) {
    .cta {
        padding: 100px 0
    }

    .cta h2 {
        font-size: 2.1rem
    }

    .cta p {
        font-size: 1rem
    }
}

@media (max-width:480px) {
    .cta h2 {
        font-size: 1.8rem
    }

    .cta-buttons {
        flex-direction: column
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center
    }
}

.contact {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0, #f8fffd 100%);
    overflow: hidden
}

.contact::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 300px;
    height: 300px;
    background: rgba(1, 153, 138, .08);
    border-radius: 50%
}

.contact::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(215, 149, 91, .08);
    border-radius: 50%
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.contact-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .35s ease
}

.contact-card:hover {
    transform: translateY(-6px)
}

.contact-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff
}

.contact-icon i {
    font-size: 1.6rem
}

.contact-card h4 {
    color: var(--primary);
    margin-bottom: 6px
}

.contact-card p {
    color: #777;
    line-height: 1.6
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px
}

.contact-socials a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s
}

.contact-socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px)
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.input-group {
    display: flex;
    flex-direction: column
}

.input-group label {
    margin-bottom: 7px;
    color: var(--primary);
    font-weight: 600
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    font-family: inherit;
    font-size: 1rem;
    transition: .3s
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(1, 153, 138, .12)
}

.contact-form textarea {
    min-height: 120px;
    resize: none
}

.contact-btn {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    border-radius: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: .35s ease
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(24, 83, 79, .25)
}

@media (max-width:992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contact-info {
        order: 1
    }

    .contact-form-wrapper {
        order: 2
    }
}

@media (max-width:768px) {
    .contact {
        padding: 90px 0
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-form-wrapper {
        padding: 30px
    }
}

@media (max-width:480px) {
    .contact-card {
        padding: 18px
    }

    .contact-form-wrapper {
        padding: 25px;
        border-radius: 24px
    }

    .contact-btn {
        width: 100%
    }
}

.footer {
    background: #103f3c;
    color: #fff;
    padding: 90px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--light)
}

.footer-brand p {
    line-height: 1.9;
    opacity: .85
}

.footer-contact h4,
.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--light)
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-links a {
    color: rgba(255, 255, 255, .85);
    transition: .3s
}

.footer-links a:hover {
    color: var(--light);
    padding-left: 5px
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    opacity: .9
}

.footer-contact i {
    color: var(--accent)
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px
}

.footer-socials a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 1.2rem;
    transition: .3s
}

.footer-socials a:hover {
    background: var(--secondary);
    transform: translateY(-4px)
}

.language-switcher {
    display: flex;
    gap: 10px;
    margin-top: 25px
}

.lang-btn {
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: .3s
}

.lang-btn.active {
    background: var(--secondary)
}

.lang-btn:hover {
    background: var(--secondary)
}

.footer-newsletter {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 35px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .05)
}

.footer-newsletter h4 {
    margin-bottom: 10px;
    color: var(--light)
}

.footer-newsletter p {
    opacity: .8
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.footer-newsletter input {
    width: 320px;
    padding: 15px 20px;
    border: none;
    outline: 0;
    border-radius: 50px
}

.footer-newsletter button {
    border: none;
    cursor: pointer;
    padding: 15px 25px;
    border-radius: 50px;
    background: var(--secondary);
    color: #fff;
    font-weight: 600
}

.footer-newsletter button:hover {
    background: var(--accent)
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.footer-bottom p {
    opacity: .8
}

.footer-bottom a {
    color: rgba(255, 255, 255, .8);
    font-weight: 600
}

.footer-bottom a:hover {
    color: var(--light)
}

@media (max-width:992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .footer-newsletter form {
        width: 100%
    }

    .footer-newsletter input {
        width: 100%
    }
}

@media (max-width:480px) {
    .footer {
        padding-top: 70px
    }

    .footer-newsletter {
        padding: 25px
    }

    .footer-brand h3 {
        font-size: 1.7rem
    }
}

@media (max-width:992px) {
    .hero h1 {
        font-size: 3.2rem
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .domains-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .project-grid {
        grid-template-columns: 1fr
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .hero-stats {
        position: relative;
        margin-top: 50px;
        bottom: 0;
        flex-wrap: wrap
    }
}

@media (max-width:768px) {
    .menu-toggle {
        display: block
    }

    .nav-btn {
        display: none
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 40px;
        transition: .4s
    }

    .nav-menu.active {
        right: 0
    }

    .hero h1 {
        font-size: 2.5rem
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .domains-grid {
        grid-template-columns: 1fr
    }

    .section-header h2 {
        font-size: 2rem
    }

    .cta h2 {
        font-size: 2rem
    }
}

@media (max-width:480px) {
    .hero h1 {
        font-size: 2rem
    }

    .container {
        width: 92%
    }

    section {
        padding: 80px 0
    }

    .stat-card {
        width: 100%
    }

    .about-content h2 {
        font-size: 2rem
    }

    .section-header h2 {
        font-size: 1.8rem
    }
}

.projects-showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0, #f8fcfb 100%);
    position: relative
}

.projects-showcase::before {
    content: "";
    position: absolute;
    top: 80px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: rgba(1, 153, 138, .06);
    border-radius: 50%
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px
}

.project-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
    transition: .4s ease;
    position: relative
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12)
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 260px
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s ease
}

.project-card:hover img {
    transform: scale(1.08)
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700
}

.project-content {
    padding: 30px
}

.project-category {
    display: inline-flex;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(1, 153, 138, .08);
    color: var(--secondary);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 18px
}

.project-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 15px
}

.project-content p {
    color: #7b7b7b;
    line-height: 1.8
}

.project-footer {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: .95rem
}

.project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    transition: .3s
}

.project-link:hover {
    color: var(--secondary)
}

.project-link i {
    transition: .3s
}

.project-link:hover i {
    transform: translateX(4px)
}

.projects-action {
    text-align: center;
    margin-top: 60px
}

.article-page {
    padding: 120px 0;
    background: #f8fafb
}

.article-header {
    max-width: 100%;
    margin: 0 auto 50px;
    text-align: center
}

.article-meta-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px
}

.article-meta-top span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(1, 153, 138, .08);
    color: var(--primary);
    font-weight: 600
}

.article-header h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 25px
}

.article-excerpt {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #6b7280;
    max-width: 800px;
    margin: auto
}

.article-author {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px
}

.article-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover
}

.article-author div {
    display: flex;
    flex-direction: column;
    text-align: left
}

.article-author span {
    color: #7c7c7c;
    font-size: .9rem
}

.article-cover {
    margin-bottom: 60px
}

.article-cover img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px
}

.article-content {
    max-width: 100%;
    margin: auto;
    border-radius: 30px
}

.article-content h2 {
    margin-bottom: 5px;
    color: var(--primary)
}

.article-content p {
    color: #555;
    margin-bottom: 20px
}

.article-content blockquote {
    margin: 10px 0;
    padding: 20px;
    border-left: 5px solid var(--secondary);
    background: rgba(1, 153, 138, .05);
    border-radius: 20px;
    font-style: italic;
    color: var(--primary)
}

.article-footer {
    max-width: 100%;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.article-tags span {
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(1, 153, 138, .08);
    color: var(--primary);
    font-weight: 600
}

.article-share {
    display: flex;
    gap: 15px
}

.article-share a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--primary);
    transition: .3s
}

.article-share a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-4px)
}

.related-articles {
    padding: 120px 0;
    background: #fff
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px
}

.related-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .4s
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover)
}

.related-image {
    overflow: hidden
}

.related-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .7s
}

.related-card:hover img {
    transform: scale(1.08)
}

.related-content {
    padding: 25px
}

.related-content span {
    color: var(--secondary);
    font-weight: 600
}

.related-content h3 {
    margin: 15px 0;
    line-height: 1.5;
    color: var(--primary)
}

.related-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700
}

@media (max-width:992px) {
    .related-grid {
        grid-template-columns: 1fr 1fr
    }

    .article-header h1 {
        font-size: 2.5rem
    }

    .article-content {
        padding: 40px
    }

    .article-cover img {
        height: 420px
    }
}

@media (max-width:768px) {
    .related-grid {
        grid-template-columns: 1fr
    }

    .article-header h1 {
        font-size: 2rem
    }

    .article-content {
        padding: 30px
    }

    .article-cover img {
        height: 300px
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width:480px) {
    .article-content {
        padding: 25px;
        border-radius: 20px
    }

    .article-header h1 {
        font-size: 1.7rem
    }

    .article-meta-top {
        gap: 10px
    }

    .article-meta-top span {
        font-size: .85rem
    }
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    z-index: 9999;
    background: linear-gradient(90deg, var(--secondary), var(--primary))
}

.documents {
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(1, 153, 138, .08), transparent 30%), radial-gradient(circle at bottom left, rgba(24, 83, 79, .06), transparent 35%), #f8fafb;
    position: relative;
    overflow: hidden
}

.documents::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(1, 153, 138, .05)
}

.documents::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(215, 149, 91, .06)
}

.documents .container {
    position: relative;
    z-index: 2
}

.documents .section-header {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center
}

.documents .section-header h2 {
    color: var(--primary)
}

.documents .section-header p {
    margin-top: 15px;
    line-height: 1.8;
    color: #6b7280
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.document-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
    transition: all .4s ease
}

.document-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary))
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12)
}

.document-icon {
    width: 85px;
    height: 85px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(1, 153, 138, .2)
}

.document-icon i {
    font-size: 2.6rem
}

.document-type {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(1, 153, 138, .08);
    color: var(--secondary);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 18px
}

.document-content {
    display: flex;
    flex-direction: column;
    height: 100%
}

.document-content h3 {
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--primary);
    margin-bottom: 15px
}

.document-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1
}

.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    margin-bottom: 25px
}

.document-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7c7c7c;
    font-size: .9rem
}

.document-meta i {
    color: var(--secondary)
}

.document-actions {
    display: flex;
    gap: 12px;
    margin-top: auto
}

.doc-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all .3s ease
}

.doc-btn i {
    font-size: 1.2rem
}

.doc-btn.view {
    background: rgba(1, 153, 138, .08);
    color: var(--primary)
}

.doc-btn.download {
    background: var(--primary);
    color: #fff
}

.doc-btn:hover {
    transform: translateY(-4px)
}

.doc-btn.view:hover {
    background: rgba(1, 153, 138, .15)
}

.doc-btn.download:hover {
    background: var(--secondary)
}

.documents-footer {
    margin-top: 70px;
    text-align: center
}

@media (max-width:1100px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .documents {
        padding: 100px 0
    }

    .documents-grid {
        grid-template-columns: 1fr
    }

    .document-card {
        padding: 30px 25px
    }

    .document-content h3 {
        font-size: 1.2rem
    }

    .document-icon {
        width: 75px;
        height: 75px
    }

    .document-icon i {
        font-size: 2.2rem
    }
}

@media (max-width:480px) {
    .documents {
        padding: 90px 0
    }

    .document-card {
        border-radius: 24px;
        padding: 25px
    }

    .document-actions {
        gap: 10px
    }

    .doc-btn {
        width: 45px;
        height: 45px
    }
}

.donate {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0, rgba(1, 153, 138, .03) 100%)
}

.donate-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 500px;
    gap: 70px;
    align-items: center
}

.donate-content h2 {
    font-size: 3rem;
    color: var(--primary);
    line-height: 1.2;
    margin: 20px 0
}

.donate-content p {
    color: var(--text-light);
    line-height: 1.9
}

.donate-impact {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.impact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow)
}

.impact-card i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary))
}

.impact-card h4 {
    color: var(--primary);
    margin-bottom: 5px
}

.impact-card span {
    color: var(--text-light);
    font-size: .95rem
}

.donate-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.btn-outline2 {
    padding: 15px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600
}

.donate-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden
}

.donate-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(1, 153, 138, .08)
}

.donate-card-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(1, 153, 138, .08);
    padding: 10px 16px;
    border-radius: 50px;
    color: var(--secondary);
    font-weight: 600
}

.donate-card h3 {
    margin: 25px 0 15px;
    color: var(--primary);
    font-size: 2rem
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0
}

.donation-options button {
    border: none;
    padding: 18px;
    border-radius: 15px;
    background: #f8f9fb;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: .3s
}

.donation-options button:hover {
    background: var(--secondary);
    color: #fff
}

.donate-btn {
    width: 100%;
    border: none;
    padding: 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .3s
}

.donate-btn:hover {
    transform: translateY(-3px)
}

@media (max-width:992px) {
    .donate-wrapper {
        grid-template-columns: 1fr
    }

    .donate-content h2 {
        font-size: 2.3rem
    }
}

@media (max-width:576px) {
    .donate {
        padding: 90px 0
    }

    .donate-content h2 {
        font-size: 2rem
    }

    .donation-options {
        grid-template-columns: 1fr
    }

    .donate-card {
        padding: 30px
    }
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 0, 0, .1);
    border-top: 4px solid #01998a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto
}

.hidden {
    display: none
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    flex-wrap: wrap
}

.pagination button {
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #01998a, #18534f);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .1)
}

.pagination button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
    opacity: .95
}

.pagination button:disabled {
    background: #cfd8d6;
    color: #7a7a7a;
    cursor: not-allowed;
    box-shadow: none;
    transform: none
}

#pageInfo {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #18534f;
    background: rgba(1, 153, 138, .08);
    border: 1px solid rgba(1, 153, 138, .2);
    border-radius: 8px
}

@media (max-width:480px) {
    .pagination {
        gap: 8px
    }

    .pagination button {
        padding: 8px 14px;
        font-size: 13px
    }

    #pageInfo {
        font-size: 13px
    }
}

#formResponse {
    margin-top: 1rem
}

.form-alert {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 500;
    animation: fadeIn .3s ease
}

.form-alert i {
    font-size: 1.2rem
}

.form-alert-success {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac
}

.form-alert-error {
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fca5a5
}

.form-alert-info {
    color: #1e40af;
    background: #dbeafe;
    border: 1px solid #93c5fd
}

.ri-spin {
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}