/* ==========================================================================
   Page Specific Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Index Page
   -------------------------------------------------------------------------- */

/* Hero Section */
.hero-index {
    padding: 220px 0 160px;
    background: linear-gradient(135deg, rgba(10,58,102,0.65) 0%, rgba(44,169,77,0.55) 100%), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
}
.hero-index-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
    text-align: center;
    justify-content: center;
}
.hero-index-content {
    flex: 1;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}
.hero-title {
    color: var(--white);
    font-size: clamp(3rem, 8vw, 5rem);
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.4rem;
    margin: 0 auto 3rem;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-hero-primary {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.btn-hero-secondary {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    display: inline-block;
    transition: all 0.3s;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

/* Trust Ribbon */
.trust-ribbon-wrapper {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
}
.trust-icon-img {
    width: 36px;
    height: 36px;
}

/* Section Common */
.section-padding {
    padding: 8rem 0;
    background-color: transparent;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-tag {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-top: 0.5rem;
}
.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Nodes */
.node-card {
    padding: 3rem 2rem;
    text-align: center;
}
.node-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}
.node-icon-wrapper.border-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(10,58,102,0.15);
}
.node-icon-wrapper.border-secondary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(44,169,77,0.15);
}
.node-icon {
    width: 50px;
    height: 50px;
}
.node-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.node-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services Overview */
.bento-card-large {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bento-card-large-alt {
    align-items: flex-end;
    text-align: right;
    background: rgba(10, 58, 102, 0.02);
}
.bento-card-medium {
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bento-card-small {
    padding: 2rem;
    text-align: center;
}
.bento-icon-lg { width: 80px; height: 80px; margin-bottom: 1.5rem; }
.bento-icon-md { width: 64px; height: 64px; margin-bottom: 1.5rem; }
.bento-icon-sm { width: 48px; height: 48px; margin-bottom: 1.5rem; }
.btn-view-all {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(44, 169, 77, 0.2);
}

/* Coverage Area */
.coverage-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}
.coverage-content {
    flex: 1;
    min-width: 300px;
}
.coverage-list {
    list-style: none;
    padding: 0;
}
.coverage-list-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.coverage-check-icon {
    width: 20px;
    height: 20px;
}
.coverage-map-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}
.coverage-map-card {
    background: linear-gradient(135deg, var(--primary-color), #1a5c9e);
    border-radius: 20px;
    padding: 4rem;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}
.coverage-blob {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(30px);
}
.coverage-globe {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Why Choose Us */
.why-section {
    padding: 8rem 0;
    background-color: var(--bg-color); /* Light gray background */
    position: relative;
    overflow: hidden;
}
.why-blob {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(40px);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.why-card {
    padding: 3rem;
    text-align: center;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 0;
    background-color: transparent;
    overflow: hidden;
    position: relative;
}
.testimonial-card {
    padding: 3rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-quote-icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.testimonial-text {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
    flex-grow: 1;
    font-style: italic;
}
.testimonial-author {
    color: var(--primary-color);
    display: block;
    font-size: 1.2rem;
}
/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */

/* Hero About */
.hero-about {
    padding: 220px 0 160px;
    background: linear-gradient(135deg, rgba(10,58,102,0.62) 0%, rgba(44,169,77,0.55) 100%), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    color: white;
    position: relative;
    overflow: visible;
}
.hero-about-content {
    max-width: 800px;
    text-align: left;
}
.hero-about-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-about-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}
.btn-about-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(44,169,77,0.3);
    border-radius: 50px;
}
.about-floating-img-container {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 10;
}
.about-floating-img-wrapper {
    display: flex;
    justify-content: flex-start;
    padding-left: 15px;
}
.about-floating-img {
    background: url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') center/cover;
    width: 400px;
    height: 250px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 4px solid #fff;
    position: relative;
}
.about-floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    padding: 15px 20px;
    max-width: 250px;
    border-radius: 12px;
}
.about-floating-text {
    margin: 0;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
}

/* Mission & Stats */
.about-mission-section {
    padding: 200px 0 100px;
    background-color: #fff;
}
.about-mission-title-wrapper {
    max-width: 900px;
    margin-bottom: 80px;
}
.about-mission-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0A3A66;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    align-items: center;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.about-stat-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(44,169,77,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.about-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #0A3A66;
    margin-bottom: 5px;
}
.about-stat-desc {
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .form-group-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Terms Page
   -------------------------------------------------------------------------- */

.terms-content-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}
.terms-container {
    max-width: 860px;
    margin: 0 auto;
}
.terms-card {
    background: var(--white);
    padding: 4rem 5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    color: var(--text-color);
    border-top: 5px solid var(--secondary-color);
}
.terms-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.terms-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}
.about-img-1 {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-top: 40px;
}
.about-img-2 {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Banner Section */
.about-banner-section {
    padding: 0;
    margin: 100px 0;
    position: relative;
}
.about-banner-bg {
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1920&auto=format&fit=crop') center/cover;
    height: 400px;
    width: 100%;
}
.about-banner-card {
    background: #2CA94D;
    padding: 50px 60px;
    border-radius: 24px;
    max-width: 500px;
    color: white;
    position: absolute;
    right: 15px;
    bottom: -80px;
    box-shadow: 0 30px 60px rgba(44,169,77,0.3);
}
.about-banner-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-banner-desc {
    margin-bottom: 30px;
    opacity: 0.9;
}
.btn-about-banner {
    background: var(--text-color);
    color: #2CA94D;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 700;
}

/* Core Values Section */
.about-values-section {
    padding: 120px 0 100px;
    background-color: #f9fbfd; /* Subtle light background */
}
.about-values-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.about-values-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0A3A66;
    margin-bottom: 1rem;
}
.about-values-subtitle {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.6;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.value-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border-top: 5px solid #2CA94D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44,169,77,0.1);
}
.value-card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(44,169,77,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.value-card-icon {
    width: 40px;
    height: 40px;
}
.value-card-title {
    color: #0A3A66;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.value-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials About */
.about-testimonials-section {
    padding: 100px 0 140px;
    background-color: #fff;
}
.about-testimonials-header {
    text-align: left;
    margin-bottom: 60px;
}
.about-testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0A3A66;
}
.about-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}
.about-testimonial-card {
    padding: 40px;
    background: #f9fbfd;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.about-testimonial-icon {
    color: #2CA94D;
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
}
.about-testimonial-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}
.about-testimonial-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-testimonial-author-name {
    font-size: 1.1rem;
    color: #0A3A66;
    margin-bottom: 2px;
}
.about-testimonial-author-role {
    color: #888;
    font-size: 0.9rem;
}
.about-testimonial-stars {
    color: #f39c12;
    font-size: 1.1rem;
}

/* Bottom CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A3A66 0%, #06223d 100%);
    color: white;
    border-radius: 40px;
    margin: 0 20px 40px 20px;
    position: relative;
    overflow: hidden;
}
.about-cta-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.about-cta-content {
    max-width: 500px;
}
.about-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.about-cta-desc {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.btn-about-cta {
    background: #2CA94D;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}
.about-cta-img-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}
.about-cta-img {
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    max-width: 100%;
}
.about-cta-blob {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44,169,77,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Services Page
   -------------------------------------------------------------------------- */

/* Hero Services */
.hero-services {
    padding: 200px 0 140px;
    background: linear-gradient(135deg, rgba(10,58,102,0.62) 0%, rgba(44,169,77,0.55) 100%), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    text-align: center;
}
.hero-services-title {
    color: var(--white);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-services-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Services Content */
.services-category {
    margin-bottom: 5rem;
}
.services-category-title {
    color: var(--white);
    background: var(--primary-color);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(10,58,102,0.2);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}
.service-card,
.service-card-tall {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover,
.service-card-tall:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44,169,77,0.12);
}
.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(44,169,77,0.08);
    border-radius: 50%;
}
.service-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.service-desc {
    color: var(--text-light);
    line-height: 1.6;
}
.service-desc-tall {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

/* Before After Section */
.before-after-wrapper {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3352 100%);
    text-align: center;
}
.before-after-wrapper h2 {
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.before-after-wrapper p {
    color: rgba(255,255,255,0.75);
}

/* --------------------------------------------------------------------------
   Partners Page
   -------------------------------------------------------------------------- */

/* Hero Partners */
.hero-partners {
    padding: 200px 0 140px;
    background: linear-gradient(135deg, rgba(10,58,102,0.62) 0%, rgba(44,169,77,0.55) 100%), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    text-align: center;
}
.hero-partners-title {
    color: var(--white);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-partners-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Partners Content */
.partners-content-section {
    padding: 5rem 0;
    background-color: var(--bg-color);
}
.partner-card-wrapper {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.partner-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.partner-card-body {
    padding: 3rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.partner-card-title {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.partner-card-icon {
    width: 28px;
    height: 28px;
}
.partner-card-desc {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    flex: 1;
}

/* Gallery Section */

.gallery-section-wrapper {
    padding: 5rem 0;
    background-color: var(--bg-color);
}
.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}
.masonry-gallery {
    column-count: 3;
    column-gap: 1.5rem;
    width: 100%;
}
.gallery-item {
    margin-bottom: 1.5rem;
    break-inside: avoid;
}
.gallery-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-img {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .masonry-gallery { column-count: 2 !important; }
}
@media (max-width: 480px) {
    .masonry-gallery { column-count: 1 !important; }
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */

/* Hero Contact */
.hero-contact {
    padding: 200px 0 140px;
    background: linear-gradient(135deg, rgba(10,58,102,0.62) 0%, rgba(44,169,77,0.55) 100%), url('https://images.unsplash.com/photo-1534536281715-e28d76689b4d?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}
.hero-contact-title {
    color: var(--white);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-contact-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}
.contact-info-col {
    flex: 1;
    min-width: 300px;
}
.contact-info-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
.contact-info-desc {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.7;
}
.contact-detail-block {
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--secondary-color);
    background: var(--white);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.contact-detail-title {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-detail-icon {
    width: 28px;
    height: 28px;
}
.contact-detail-text {
    color: var(--text-color);
    font-weight: 500;
}
.contact-form-col {
    flex: 2;
    min-width: 300px;
    padding: 3rem 4rem;
    border-radius: 24px;
    margin-top: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.contact-form-title {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* --------------------------------------------------------------------------
   Careers Page
   -------------------------------------------------------------------------- */

/* Hero Careers */
.hero-careers {
    padding: 200px 0 140px;
    background: linear-gradient(135deg, rgba(10,58,102,0.62) 0%, rgba(44,169,77,0.55) 100%), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}
.hero-careers-title {
    color: var(--white);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-careers-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Careers Content */
.careers-content-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
}
.careers-container {
    max-width: 800px;
    margin: 0 auto;
}
.careers-form-card {
    max-width: 800px;
    margin: -80px auto 0;
    padding: 4rem;
    border-radius: 20px;
}
.careers-form-title {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
    font-size: 1.8rem;
}
.careers-form {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.careers-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.careers-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.careers-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(44,169,77,0.1);
}
.careers-select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: inherit;
    background: var(--white);
}
.careers-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: inherit;
    resize: vertical;
}
.btn-careers-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .form-group-grid {
        grid-template-columns: 1fr;
    }
}
/* --------------------------------------------------------------------------
   Blog Page
   -------------------------------------------------------------------------- */

/* Hero Blog */
.hero-blog {
    padding: 200px 0 140px;
    background: linear-gradient(135deg, rgba(10,58,102,0.62) 0%, rgba(44,169,77,0.55) 100%), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    text-align: center;
}
.hero-blog-title {
    color: var(--white);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-blog-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Blog Content */
.blog-content-section {
    padding: 5rem 0;
    background-color: var(--bg-color);
    position: relative;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-card-img-wrapper {
    position: relative;
    overflow: hidden;
}
.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.blog-card-views {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(10,58,102,0.8);
    backdrop-filter: blur(5px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.blog-card-views-icon {
    width: 12px;
}
.blog-card-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-title {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    color: var(--secondary-color);
    line-height: 1.4;
}
.blog-card-link {
    color: inherit;
    text-decoration: none;
}
.blog-card-excerpt {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}
/* Article Page */
.hero-article {
    padding: 220px 0 120px;
    background-size: cover !important;
    background-position: center !important;
    text-align: center;
    position: relative;
}
.hero-article-container {
    max-width: 860px;
    margin: 0 auto;
}
.article-category-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-article-title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 600;
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.article-meta-icon {
    width: 1.8rem;
    height: 1.8rem;
}
.article-content-section {
    padding: 4rem 0 6rem;
    background-color: var(--bg-color);
}
.article-container {
    max-width: 860px;
    margin: 0 auto;
}
.article-card {
    border-radius: 24px;
    overflow: hidden;
}
.article-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
/* Article Typography */
.article-body-wrapper {
    padding: 3rem 4rem;
}
.article-formatted-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}
.article-formatted-content p {
    margin-bottom: 1.5rem;
}
.article-formatted-content h3, 
.article-formatted-content strong {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}
.article-divider {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 3rem 0 2rem;
}
.btn-blog-read {
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(44,169,77,0.2);
}
.blog-empty {
    text-align: center;
    width: 100%;
    color: var(--text-light);
}

/* Language Switcher Styling */
.lang-switcher-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lang-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.lang-link.active {
    color: var(--secondary-color) !important;
}
.site-header.transparent .lang-link {
    color: var(--white);
}
.site-header.transparent .lang-link.active {
    color: var(--secondary-color) !important;
}
.lang-divider {
    color: rgba(0,0,0,0.2);
}
.site-header.transparent .lang-divider {
    color: rgba(255,255,255,0.3);
}

/* Hero contrast improvements */
.hero-title, .hero-subtitle,
.hero-about-title, .hero-about-subtitle,
.hero-services-title, .hero-services-subtitle,
.hero-partners-title, .hero-partners-subtitle,
.hero-contact-title, .hero-contact-subtitle,
.hero-careers-title, .hero-careers-subtitle,
.hero-blog-title, .hero-blog-subtitle,
.hero-article-title {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45), 0 2px 5px rgba(0, 0, 0, 0.25) !important;
}
