/* ==========================================
   CSS Variables
   ========================================== */
:root {
    --primary-color: #128C76;
    --secondary-color: #F56B8D;
    --bg-white: #ffffff;
    --bg-light-blue: #ECF4FD;
    --bg-gray: #ECECEC;
    --text-dark: #2d3748;
    --text-gray: #718096;
    --text-light: #a0aec0;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   Global Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Josefin Sans", sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   Utility Classes
   ========================================== */
.section-padding {
    padding: 100px 0;
}

.bg-light-blue {
    background-color: var(--bg-light-blue);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ==========================================
   Header
   ========================================== */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-text:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 45, 37, 0.85) 0%, rgba(9, 70, 59, 0.65) 50%, rgba(39, 77, 114, 0.8) 100%);
    z-index: 2;
}

.hero-shape {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(91, 142, 193, 0.4);
    z-index: 3;
}

.hero-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--secondary-color) 0%, transparent 70%);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.fact-item {
    font-weight: 500;
}

.fact-divider {
    color: rgba(255, 255, 255, 0.6);
}

.btn-hero {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #0f7461;
    border-color: #0f7461;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s ease;
}

.btn-link:hover {
    color: #0f7461;
    gap: 0.5rem;
}

/* ==========================================
   Content Boxes
   ========================================== */
.content-box {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.text-main {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.stats-highlight {
    background-color: var(--bg-light-blue);
    padding: 2.5rem;
    border-radius: 4px;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.stats-list {
    list-style: none;
    padding-left: 0;
}

.stats-list li {
    font-size: 1.125rem;
    color: var(--text-gray);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.stats-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ==========================================
   Service Cards
   ========================================== */
.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-color: var(--bg-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon .material-icons-outlined {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.image-wrapper img {
    transition: transform 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.fact-highlight {
    font-size: 1.125rem;
    color: var(--text-dark);
    padding: 1.5rem;
    background-color: white;
    border-radius: 4px;
    border-left: 4px solid var(--secondary-color);
}

/* ==========================================
   Process Steps
   ========================================== */
.process-step {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid var(--primary-color);
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.process-quote {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-dark);
    font-style: italic;
    padding: 2rem;
    background-color: var(--bg-light-blue);
    border-radius: 4px;
    border-left: 4px solid var(--secondary-color);
}

.process-quote p {
    margin-bottom: 0;
    color: var(--text-dark);
}

/* ==========================================
   Impact Stats
   ========================================== */
.impact-stat {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-text {
    padding: 2rem;
    background-color: white;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.impact-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonial-content {
    padding: 2rem;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-author {
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-image {
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* ==========================================
   Blog Cards
   ========================================== */
.blog-card {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-image {
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.75rem;
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-excerpt {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

/* ==========================================
   FAQ / Accordion
   ========================================== */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: white;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-light-blue);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-body {
    font-size: 1rem;
    color: var(--text-gray);
    padding: 1.5rem;
    line-height: 1.7;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: #1a202c;
    padding: 4rem 0 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact .material-icons-outlined {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==========================================
   Cookie Popup
   ========================================== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    padding: 1.5rem;
    border-top: 3px solid var(--primary-color);
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.cookie-link {
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

/* ==========================================
   Page Header (Secondary Pages)
   ========================================== */
.page-header {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 140, 118, 0.3) 0%, rgba(91, 142, 193, 0.2) 100%);
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-header-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.page-header-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   Team Cards
   ========================================== */
.team-member {
    margin-bottom: 3rem;
}

.team-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-info-box {
    background-color: var(--bg-light-blue);
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .material-icons-outlined {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.contact-details h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.contact-details a {
    color: var(--text-gray);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(18, 140, 118, 0.1);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ==========================================
   Article Pages
   ========================================== */
.article-content {
    background-color: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.article-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.article-text ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-text li {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* ==========================================
   Thank You Page
   ========================================== */
.thank-you-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 4rem 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-icon .material-icons-outlined {
    font-size: 3rem;
    color: white;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ==========================================
   Legal Pages
   ========================================== */
.legal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-shape {
        width: 350px;
        height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header-title {
        font-size: 2.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .article-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-facts {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .fact-divider {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-shape {
        width: 250px;
        height: 250px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .page-header-title {
        font-size: 2rem;
    }
    
    .page-header-subtitle {
        font-size: 1.125rem;
    }
}

