
/* Professional About Page CSS */
:root {
    /* Align with the site's formal Navy/Green/Cream theme */
    --primary-color: #0d4d4d;
    --primary-dark: #001f3f;
    --dark-text: #0F172A;
    --body-text: #475569;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body.about-page {
    font-family: var(--font-body);
    background-color: #faf8f5;
}

body.about-page .text-primary {
    color: var(--primary-color) !important;
}

body.about-page .btn-primary {
    background: linear-gradient(135deg, #0d4d4d, #1a5f5f) !important;
    border-color: #0d4d4d !important;
}

body.about-page .btn-primary:hover {
    background: linear-gradient(135deg, #1a5f5f, #2d7f7f) !important;
    border-color: #1a5f5f !important;
}

/* Parallax Hero - Cinematic */
.about-hero {
    height: 70vh;
    min-height: 500px;
    background-image: var(--about-hero-image, url('../../img/carousel-1.jpg'));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    /* Mobile browsers often struggle with fixed backgrounds */
    .about-hero {
        background-attachment: scroll;
        height: 60vh;
        min-height: 420px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: auto;
        min-height: 380px;
        padding: 72px 0 56px;
    }

    body.about-page .about-hero .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Fix: heading going off-screen on mobile */
    body.about-page .about-hero h1,
    body.about-page .about-hero h1.display-3,
    body.about-page .about-hero h1.display-4 {
        font-size: clamp(1.75rem, 6.2vw, 2.2rem) !important;
        line-height: 1.12 !important;
        letter-spacing: -0.5px;
        max-width: 22ch;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
    }
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
}

.about-hero h1 {
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

/* About Intro Section - Modern Layout */
.about-intro-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
}

@media (max-width: 768px) {
    .about-intro-section {
        padding: 3rem 0;
    }
}

.about-header-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.1), rgba(26, 95, 95, 0.15));
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(13, 77, 77, 0.2);
}

.about-main-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--body-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 31, 63, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2d7f7f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 31, 63, 0.15);
    border-color: transparent;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.1), rgba(26, 95, 95, 0.15));
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), #2d7f7f);
    color: white;
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--body-text);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Feature Card with Image */
.feature-card-image {
    padding: 0;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card-image:hover img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 31, 63, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-image:hover .feature-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.feature-card-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h5 {
    font-weight: 700;
    margin: 0;
}

/* Action Buttons */
.about-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-btn i {
    font-size: 1.125rem;
}

.action-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #2d7f7f);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 77, 77, 0.3);
}

.action-btn-primary:hover {
    background: linear-gradient(135deg, #2d7f7f, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 77, 77, 0.4);
    color: white;
}

.action-btn-outline {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.action-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 77, 77, 0.3);
}

/* Mission & Vision Section - Enhanced */
.mission-vision-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 3rem 0;
    }
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--body-text);
    margin: 0;
}

/* Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.mv-card {
    position: relative;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-card-inner {
    padding: 3rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 576px) {
    .mv-card-inner {
        padding: 2rem;
    }
}

/* Mission Card Styling */
.mv-card-mission {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid rgba(13, 77, 77, 0.15);
    box-shadow: 0 15px 40px rgba(13, 77, 77, 0.12);
}

.mv-card-mission:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(13, 77, 77, 0.2);
}

/* Vision Card Styling */
.mv-card-vision {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.12);
}

.mv-card-vision:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.2);
}

/* Icon Wrapper */
.mv-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
}

.mv-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.mv-card-mission .mv-icon {
    color: var(--primary-color);
}

.mv-card-vision .mv-icon {
    color: #f59e0b;
}

.mv-card:hover .mv-icon {
    transform: rotate(360deg) scale(1.1);
}

.mv-icon-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 90px;
    height: 90px;
    border-radius: 22px;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.mv-card-mission .mv-icon-bg {
    background: var(--primary-color);
}

.mv-card-vision .mv-icon-bg {
    background: #f59e0b;
}

.mv-card:hover .mv-icon-bg {
    transform: translate(-5px, -5px);
    opacity: 0.5;
}

/* Title & Description */
.mv-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.875rem;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.mv-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--body-text);
    margin: 0;
    flex-grow: 1;
}

/* Decoration Element */
.mv-decoration {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin-top: 2rem;
    transition: width 0.4s ease;
}

.mv-card-mission .mv-decoration {
    background: linear-gradient(90deg, var(--primary-color), #2d7f7f);
}

.mv-card-vision .mv-decoration {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.mv-card:hover .mv-decoration {
    width: 100px;
}

/* Stats Section - Animated Numbers would require JS, we style the container here */
.bg-light.py-5 {
    background: white !important;
    position: relative;
}

.bg-light.py-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #E2E8F0, transparent);
}

/* Story Section */
.story-section img {
    border-radius: 24px;
    filter: brightness(1.05); /* Enhance image slightly */
}

/* Leadership Cards - Team Profile Style */
.group-hover-effect {
    background: white !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #F1F5F9;
    transition: all 0.3s ease;
}

.group-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.group-hover-effect i.fa-user-tie,
.group-hover-effect i.fa-user-circle, 
.group-hover-effect i.fa-user-md {
    transition: color 0.3s ease, transform 0.3s ease;
}

.group-hover-effect:hover i {
    color: var(--primary-color) !important;
    opacity: 1 !important;
    transform: scale(1.1);
}

.group-hover-effect h4 {
    color: var(--dark-text);
}

/* Call to Action */
section.bg-primary {
    background: linear-gradient(135deg, #001f3f 0%, #0d4d4d 100%) !important;
}

section.bg-primary .btn-light {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.story-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #334155;
}

.story-image {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Stats Counter */
.stats-banner {
    background: #0F172A;
    padding: 5rem 0;
    color: white;
}

.stat-item-lg {
    text-align: center;
}

.stat-number-lg {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #93c5fd, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* About story images (bigger, professional) */
.about-story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    min-height: 520px;
}

.about-story-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .about-story-image { min-height: 340px; }
    .about-story-image img { height: 340px; }
}

@media (max-width: 576px) {
    .about-story-image { min-height: 280px; }
    .about-story-image img { height: 280px; }
}

.stat-label-lg {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Cards */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 4rem;
    height: 4rem;
    background: #FFF1F2;
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .mission-cards {
        grid-template-columns: 1fr;
    }
    .hero-text-box h1 {
        font-size: 2.5rem;
    }
}

/* Process Section - Modern Timeline Design */
.process-card {
    background: white !important;
    padding: 2.5rem 2rem !important;
    border-radius: 20px !important;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f1f5f9 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

.process-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(13, 77, 77, 0.15) !important;
    border-color: var(--primary-color) !important;
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2d7f7f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    box-shadow: 0 8px 20px rgba(13, 77, 77, 0.3);
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.1), rgba(26, 95, 95, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, var(--primary-color), #2d7f7f);
    color: white;
    transform: scale(1.1) rotate(360deg);
}

.process-card h5 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.process-card p {
    color: var(--body-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Process Line - Connecting Cards */
.process-line {
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(to right, 
        var(--primary-color) 0%, 
        var(--primary-color) 25%, 
        #e2e8f0 25%, 
        #e2e8f0 50%, 
        #e2e8f0 50%, 
        #e2e8f0 75%, 
        #e2e8f0 75%, 
        #e2e8f0 100%
    );
    z-index: 1;
}

@media (max-width: 991px) {
    .process-line {
        display: none !important;
    }
}

/* Badge Styling */
.badge.bg-primary.bg-opacity-10 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.25rem;
}



/* CTA Section - Modern White Background */
.cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    padding: 5rem 0 !important;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 991px) {
    .cta-section {
        padding: 3rem 0 !important;
    }
}

/* CTA Content */
.cta-content {
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .cta-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.1), rgba(26, 95, 95, 0.15));
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(13, 77, 77, 0.2);
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary-dark);
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--body-text);
    max-width: 500px;
}

@media (max-width: 991px) {
    .cta-description {
        max-width: 100%;
    }
}

/* CTA Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-color), #2d7f7f);
    color: white;
    box-shadow: 0 8px 20px rgba(13, 77, 77, 0.25);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #2d7f7f, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13, 77, 77, 0.35);
    color: white;
}

.btn-cta-outline {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-cta-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 77, 77, 0.25);
}

/* Newsletter Card */
.newsletter-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2d7f7f, #f59e0b);
}

@media (max-width: 576px) {
    .newsletter-card {
        padding: 2rem 1.5rem;
    }
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.1), rgba(26, 95, 95, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 0.95rem;
    color: var(--body-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Newsletter Form */
.newsletter-form {
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-input {
    border: 2px solid #e2e8f0;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px 0 0 50px !important;
    border-right: none !important;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--primary-color), #2d7f7f);
    color: white;
    border: 2px solid var(--primary-color);
    border-left: none;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0 50px 50px 0 !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #2d7f7f, var(--primary-color));
    transform: translateX(3px);
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.newsletter-privacy i {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cta-content .d-flex {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .newsletter-input {
        border-radius: 16px !important;
        border-right: 2px solid #e2e8f0 !important;
        margin-bottom: 0.75rem;
    }
    
    .btn-newsletter {
        border-radius: 16px !important;
        border-left: 2px solid var(--primary-color);
        width: 100%;
    }
}


/* Newsletter Section - About Page */
.newsletter-section-about {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 !important;
}

@media (max-width: 991px) {
    .newsletter-section-about {
        padding: 3rem 0 !important;
    }
}

/* Left Side - Content */
.newsletter-content-about {
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .newsletter-content-about {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.newsletter-icon-box-about {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2d7f7f);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(13, 77, 77, 0.3);
}

@media (max-width: 991px) {
    .newsletter-icon-box-about {
        margin-left: auto;
        margin-right: auto;
    }
}

.newsletter-icon-box-about i {
    font-size: 2.5rem;
    color: white;
}

.newsletter-badge-about {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 77, 77, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 2px solid rgba(13, 77, 77, 0.2);
}

.newsletter-badge-about i {
    font-size: 0.9rem;
    animation: ring 2s ease-in-out infinite;
}

.newsletter-title-about {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-subtitle-about {
    font-size: 1.125rem;
    color: var(--body-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.newsletter-features-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 991px) {
    .newsletter-features-about {
        align-items: center;
    }
}

.feature-item-about {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
}

.feature-item-about i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Right Side - Form Card */
.newsletter-form-card-about {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(13, 77, 77, 0.1);
}

@media (max-width: 576px) {
    .newsletter-form-card-about {
        padding: 2rem 1.5rem;
    }
}

.form-header-about {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header-about h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-header-about p {
    font-size: 1rem;
    color: var(--body-text);
    margin: 0;
}

/* Newsletter Form */
.newsletter-form-about {
    margin-bottom: 1.5rem;
}

.newsletter-input-group-about {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 6px;
    transition: all 0.3s ease;
}

.newsletter-input-group-about:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 77, 77, 0.1);
}

.input-icon-about {
    position: absolute;
    left: 20px;
    color: #94a3b8;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
}

.newsletter-input-about {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 20px 16px 50px;
    font-size: 1rem;
    color: var(--dark-text);
    outline: none;
    font-weight: 500;
}

.newsletter-input-about::placeholder {
    color: #94a3b8;
}

.newsletter-btn-about {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), #2d7f7f);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 77, 77, 0.3);
    white-space: nowrap;
}

.newsletter-btn-about:hover {
    background: linear-gradient(135deg, #2d7f7f, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 77, 77, 0.4);
}

.newsletter-btn-about i {
    transition: transform 0.3s ease;
}

.newsletter-btn-about:hover i {
    transform: translateX(5px);
}

.newsletter-privacy-about {
    text-align: center;
    font-size: 0.875rem;
    color: var(--body-text);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-privacy-about i {
    color: #10b981;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter-input-group-about {
        flex-direction: column;
        padding: 12px;
    }
    
    .input-icon-about {
        position: static;
        margin-bottom: 8px;
    }
    
    .newsletter-input-about {
        padding: 14px 20px;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .newsletter-btn-about {
        width: 100%;
        justify-content: center;
    }
}
