/********** Template CSS **********/
:root {
    --primary: #0b6623;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
    --light-shadow: rgba(0, 0, 0, 0);

    --bg: #f7fbff;
    --text: #0b1220;
    --muted: rgba(11, 18, 32, 0.72);
    --surface: rgba(255, 255, 255, 0.62);
    --surface-strong: rgba(255, 255, 255, 0.78);
    --border: rgba(16, 24, 40, 0.14);
    --shadow: 0 18px 60px rgba(2, 10, 30, 0.18);
    --blur: 14px;
}

html[data-theme="dark"] {
    --bg: #070b13;
    --text: #eaf1ff;
    --muted: rgba(234, 241, 255, 0.72);
    --surface: rgba(10, 16, 28, 0.58);
    --surface-strong: rgba(10, 16, 28, 0.72);
    --border: rgba(255, 255, 255, 0.16);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

body {
    color: var(--text);
    background: radial-gradient(1200px 600px at 10% 0%, rgba(253, 106, 2, 0.22), transparent 60%),
        radial-gradient(900px 520px at 90% 20%, rgba(11, 102, 35, 0.22), transparent 55%),
        radial-gradient(1000px 700px at 50% 110%, rgba(6, 163, 218, 0.16), transparent 55%),
        var(--bg);
}

.text-dark {
    color: var(--text) !important;
}

.text-body {
    color: var(--muted) !important;
}

.glass,
.banner-home-text,
.project-section .card,
.service-section .card,
.awards-section .award-item .card,
.testimonial-carousel {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}

.contact-section .contact-form {
    /* background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow); */
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}

.navbar {
    background: var(--surface-strong);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.navbar .navbar-brand h1 {
    margin: 0;
    line-height: 1;
}

.navbar.bg-white,
.bg-white {
    background: var(--surface-strong) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fd6a02 !important;
}

.btn.btn-dark {
    background-color: rgba(0, 22, 56, 0.92);
    border-color: rgba(0, 22, 56, 0.92);
}

html[data-theme="dark"] .btn.btn-dark {
    background-color: rgba(0, 22, 56, 0.78);
    border-color: rgba(255, 255, 255, 0.16);
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.text-primary {
    color: #ffcc33 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: #0b6623;
    transform: skew(40deg);
}

.navbar .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    outline: none;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
    background: rgba(11, 102, 35, 0.08);
}

.navbar .navbar-nav .nav-link.active {
    color: #fd6a02;
    font-weight: 600;
}

.img-logo {
    height: 48px;
    width: auto;
    min-width: 140px;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transform: scale(1.4);
    transform-origin: left center;
}

.top-left-nav {
    color: #FFFFFF;
    font-weight: 300;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 5px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fd6a02 !important;
}

.bg-light {
    background-color: #fd6a02 !important;
}

.bg-primary {
    background-color: #0b6623 !important;
}

.btn-navbar {
    color: #fff;
    background-color: #0b6623;
    border-color: #0b6623;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-navbar:hover {
    color: #fff;
    background-color: #fd6a02;
    border-color: #fd6a02;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 106, 2, 0.35);
}

#themeToggle {
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--surface);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#themeToggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .img-logo {
        height: 60px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border);
    }

    .navbar .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-collapse {
        background: var(--surface-strong);
        border-radius: 8px;
        margin-top: 0.5rem;
        padding: 0.5rem;
        border: 1px solid var(--border);
    }

    .btn-navbar,
    #themeToggle {
        margin-top: 0.5rem;
        margin-left: 0 !important;
    }
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('../images/1.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 11, 19, 0.95) 0%,
        rgba(11, 102, 35, 0.85) 50%,
        rgba(253, 106, 2, 0.7) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(253, 106, 2, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(11, 102, 35, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
    animation: particleMove 20s ease-in-out infinite;
}

@keyframes particleMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(10px) translateY(-10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.min-vh-75 {
    min-height: 100%;
}

.hero-text-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(253, 106, 2, 0.15);
    border: 1px solid rgba(253, 106, 2, 0.3);
    color: #fd6a02;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.text-gradient {
    background: linear-gradient(135deg, #fd6a02, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0b6623, #0d7a2b);
    color: #fff;
    padding: 1rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 102, 35, 0.3);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #fd6a02, #ff8534);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 106, 2, 0.4);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #0b6623;
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat:last-child {
    border-right: none;
    padding-right: 0;
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fd6a02;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image Section */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(253, 106, 2, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: #070b13;
}

.hero-floating-card i {
    font-size: 1.1rem;
}

.hero-floating-card-1 {
    top: 10%;
    left: -10%;
    animation: floatCard1 5s ease-in-out infinite;
}

.hero-floating-card-1 i {
    color: #fd6a02;
}

.hero-floating-card-2 {
    bottom: 15%;
    right: -5%;
    animation: floatCard2 5s ease-in-out infinite 0.5s;
}

.hero-floating-card-2 i {
    color: #0b6623;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
}

/* Hero Responsive Styles */
@media (max-width: 991px) {
    .hero-banner {
        min-height: 500px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat {
        padding-right: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-stat {
        padding-right: 1rem;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }
}

/* About Section */
.about-section {
    background: var(--bg);
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    padding: 1rem 0;
}

.about-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fd6a02;
    margin-bottom: 0.5rem;
}

.about-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text);
}

.about-features li i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-features li span {
    line-height: 1.5;
}

.btn-about {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: #fd6a02;
    border-color: #fd6a02;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253, 106, 2, 0.35);
}

@media (max-width: 991px) {
    .about-image-wrapper {
        margin-bottom: 2rem;
    }

    .about-image-accent {
        bottom: -10px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-features li {
        font-size: 0.9rem;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .85);
    z-index: 1;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.my-5-top {
    /* margin-top: 3rem !important; */
    margin-bottom: 3rem !important;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}


@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}


.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../images/1.png) center center no-repeat;
    background-size: cover;
}

/* Services Section */
.services-section {
    background: var(--surface);
}

.section-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fd6a02;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.service-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.service-card-horizontal {
    flex-direction: row;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-horizontal .service-img-wrapper {
    width: 220px;
    min-width: 220px;
    height: 220px;
    min-height: 220px;
    flex-shrink: 0;
}

.service-card-horizontal .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-card-horizontal .service-content {
    padding: 1.5rem;
    justify-content: center;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    padding: 0;
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.btn-service:hover {
    color: #fd6a02;
    gap: 0.75rem;
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .service-card-horizontal {
        flex-direction: column;
    }

    .service-card-horizontal .service-img-wrapper {
        width: 100%;
        min-width: 100%;
        height: 200px;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .service-img-wrapper {
        height: 180px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }
}

/* Subscription Section */
.subscription-section {
    background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.subscription-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.subscription-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.subscription-card-featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(11, 102, 35, 0.05) 0%, var(--bg) 100%);
}

.subscription-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscription-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.subscription-icon i {
    font-size: 1.75rem;
    color: #fff;
}

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

.subscription-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.subscription-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.subscription-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.subscription-features li:last-child {
    border-bottom: none;
}

.subscription-features li i {
    color: var(--primary);
    font-size: 1rem;
}

.btn-subscription {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-subscription:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-subscription-featured {
    background: var(--primary);
    color: #fff;
}

.btn-subscription-featured:hover {
    background: #fd6a02;
    border-color: #fd6a02;
}

@media (max-width: 768px) {
    .subscription-card {
        padding: 1.5rem;
    }

    .subscription-title {
        font-size: 1.25rem;
    }
}

/* Awards Section */
.awards-section {
    background: var(--bg);
}

.award-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.award-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Award Modal Styles */
.award-modal-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.award-modal-content .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
}

.award-modal-content .modal-title {
    font-weight: 700;
    color: var(--text);
}

.award-modal-content .modal-body {
    padding: 1.5rem;
}

.award-modal-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-modal-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.award-modal-year,
.award-modal-org {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.award-modal-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 1rem;
}

@media (max-width: 576px) {
    .award-card {
        height: 120px;
        padding: 0.75rem;
    }

    .award-img {
        max-height: 100px;
    }
}

/* Partners Section */
.partners-section {
    background: var(--surface);
}

.partner-logo-wrapper {
    background: var(--bg);
    border-radius: 12px;
    padding: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.partner-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.partner-logo-wrapper:hover .partner-name {
    transform: translateY(0);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-wrapper:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .partner-logo-wrapper {
        height: 100px;
        padding: 1rem;
    }

    .partner-logo {
        max-height: 60px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg);
}

.testimonial-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }
}

/* Footer Section */
.footer-section {
    background: #0a1628;
    color: #fff;
}

.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fd6a02;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 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.9rem;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fd6a02;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-copyright {
        text-align: center;
    }
}

/* Page Banner Section */
.page-banner {
    position: relative;
    padding: 1.5rem 0;
    background: url('../images/1.png') center center / cover no-repeat;
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7, 11, 19, 0.92) 0%,
        rgba(11, 102, 35, 0.8) 50%,
        rgba(253, 106, 2, 0.7) 100%
    );
    z-index: 1;
}

.page-banner-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fd6a02;
    margin-bottom: 0.25rem;
}

.page-banner-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.page-banner-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 1.25rem 0;
    }

    .page-banner-title {
        font-size: 1.25rem;
    }

    .page-banner-subtitle {
        font-size: 0.85rem;
    }
}

/* Contact Section */
.contact-section {
    background: var(--bg);
}

.contact-info-wrapper {
    height: 100%;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-info-description {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(8px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 1.25rem;
    color: #fff;
}

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

.contact-info-details p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.contact-info-details p:last-child {
    margin-bottom: 0;
}

.contact-social h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--surface);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #fd6a02 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(11, 102, 35, 0.3);
}

.form-header-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* Floating Label Input Groups */
.form-floating-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 1.1rem;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.textarea-wrapper .input-icon {
    top: 1.25rem;
    transform: none;
}

.form-control-icon {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
    width: 100%;
}

.form-select.form-control-icon {
    padding-right: 2.5rem;
}

.floating-label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--muted);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 0.25rem;
}

.textarea-wrapper .floating-label {
    top: 1.25rem;
    transform: none;
}

.form-control-icon:focus,
.form-select.form-control-icon:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 102, 35, 0.1);
    outline: none;
}

.input-icon-wrapper.focused .input-icon,
.form-control-icon:focus ~ .input-icon {
    color: var(--primary);
}

.form-control-icon:focus + .floating-label,
.form-control-icon:not(:placeholder-shown) + .floating-label,
.form-control-icon.has-value + .floating-label,
.form-select.form-control-icon:focus + .floating-label,
.form-select.form-control-icon:not([value=""]) + .floating-label {
    top: 0;
    left: 2.5rem;
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--bg);
    padding: 0 0.5rem;
    transform: translateY(-50%);
}

.textarea-wrapper .form-control-icon:focus + .floating-label,
.textarea-wrapper .form-control-icon:not(:placeholder-shown) + .floating-label {
    top: -0.5rem;
    transform: none;
}

.form-control-icon::placeholder {
    color: transparent;
}

.form-control-icon:focus::placeholder {
    color: var(--muted);
    opacity: 0.5;
}

textarea.form-control-icon {
    resize: vertical;
    min-height: 140px;
    padding-top: 1.25rem;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.char-counter.text-danger {
    color: #dc3545 !important;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-checkbox:hover {
    border-color: var(--primary);
}

.custom-checkbox .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    background-color: var(--bg);
    cursor: pointer;
    margin-top: 0;
    flex-shrink: 0;
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox .form-check-label {
    font-size: 0.9rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1.5;
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #0a5a1f 100%);
    border: none;
    color: #fff;
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fd6a02 0%, #e55a00 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit .btn-text,
.btn-submit .btn-loading,
.btn-submit .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(253, 106, 2, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px) rotate(-20deg);
}

.btn-submit .btn-loading {
    align-items: center;
}

/* Form Footer */
.form-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.secure-badge i {
    color: var(--primary);
    font-size: 1rem;
}

/* Form Validation Styles */
.was-validated .form-control-icon:invalid,
.form-control-icon.is-invalid {
    border-color: #dc3545;
}

.was-validated .form-control-icon:invalid:focus,
.form-control-icon.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.was-validated .form-control-icon:valid,
.form-control-icon.is-valid {
    border-color: var(--primary);
}

.invalid-feedback {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .form-header-icon {
        width: 60px;
        height: 60px;
    }

    .form-header-icon i {
        font-size: 1.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .form-control-icon {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }

    .input-icon {
        left: 0.875rem;
        font-size: 1rem;
    }

    .floating-label {
        left: 2.75rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .contact-info-card {
        padding: 1rem;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .contact-info-icon i {
        font-size: 1.1rem;
    }
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    pointer-events: none;
}

.custom-toast {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 350px;
    max-width: 450px;
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon i {
    font-size: 1.5rem;
}

.toast-success .toast-icon {
    background: rgba(11, 102, 35, 0.15);
}

.toast-success .toast-icon i {
    color: var(--primary);
}

.toast-error .toast-icon {
    background: rgba(220, 53, 69, 0.15);
}

.toast-error .toast-icon i {
    color: #dc3545;
}

.toast-warning .toast-icon {
    background: rgba(255, 193, 7, 0.15);
}

.toast-warning .toast-icon i {
    color: #ffc107;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: var(--surface);
    color: var(--text);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--primary);
    animation: toastProgress 5s linear forwards;
}

.toast-success .toast-progress {
    background: var(--primary);
}

.toast-error .toast-progress {
    background: #dc3545;
}

.toast-warning .toast-progress {
    background: #ffc107;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

@media (max-width: 576px) {
    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .custom-toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}

/* Map Section */
.map-section {
    background: var(--surface);
}

.map-header {
    background: var(--bg);
}

.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

/* Values Section */
.values-section {
    background: var(--surface);
}

.value-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: #fff;
}

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

.value-description {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: var(--bg);
}

.mission-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mission-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.mission-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.mission-description {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .mission-card {
        padding: 1.5rem;
    }

    .mission-title {
        font-size: 1.25rem;
    }

    .mission-description {
        font-size: 0.9rem;
    }
}

/* Team Section */
.team-section {
    background: var(--bg);
}

.team-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.team-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.1) 0%, rgba(253, 106, 2, 0.1) 100%);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
    display: block;
}

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

.team-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-placeholder i {
    font-size: 4rem;
    color: #fff;
}

.team-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-img-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 0.5rem;
}

.team-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.team-info {
    padding: 0.75rem 1rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.team-role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0;
}

.btn-team-profile {
    position: absolute;
    bottom: 0.75rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--primary);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-team-profile span {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-team-profile:hover {
    width: auto;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    gap: 0.35rem;
}

.btn-team-profile:hover span {
    max-width: 100px;
    opacity: 1;
}

.btn-team-profile i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.btn-team-profile:hover i {
    transform: translateX(2px);
}

/* Team Modal Styles */
.team-modal-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.team-modal-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.team-modal-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.team-modal-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

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

.team-modal-bio {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Solutions Page Styles */
.solutions-overview {
    background: var(--bg);
}

.solution-detail {
    padding: 2rem 0;
}

.solution-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

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

.solution-content {
    padding: 1rem 0;
}

.solution-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #fd6a02 100%);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

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

.solution-description {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text);
}

.solution-features li i {
    color: var(--primary);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a5a1f 50%, #fd6a02 100%);
}

.cta-card {
    padding: 3rem 2rem;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Subscription Form Section */
.subscription-form-section {
    background: var(--bg);
}

.subscription-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

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

.form-subtitle {
    color: var(--muted);
    margin-bottom: 0;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.form-section-title i {
    color: var(--primary);
}

.subscription-form-card .form-control,
.subscription-form-card .form-select {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.subscription-form-card .form-control:focus,
.subscription-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 102, 35, 0.15);
}

.subscription-form-card .form-label {
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* Plan Options */
.plan-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.plan-option {
    flex: 1;
    min-width: 150px;
}

.plan-option-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.plan-option-label:hover {
    border-color: var(--primary);
    background: rgba(11, 102, 35, 0.05);
}

.btn-check:checked + .plan-option-label {
    border-color: var(--primary);
    background: rgba(11, 102, 35, 0.1);
}

.plan-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #fd6a02);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.plan-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.plan-price {
    font-size: 0.8rem;
    color: var(--muted);
}

.plan-check {
    color: var(--primary);
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-check:checked + .plan-option-label .plan-check {
    opacity: 1;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.additional-services .form-check {
    background: var(--bg);
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin: 0;
    transition: all 0.3s ease;
}

.additional-services .form-check:hover {
    border-color: var(--primary);
}

.additional-services .form-check-input:checked ~ .form-check-label {
    color: var(--primary);
}

/* Data Interest Options */
.data-interest-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.data-interest-options .data-option {
    background: var(--bg);
    padding: 1rem 1.25rem;
    padding-left: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.data-interest-options .data-option:hover {
    border-color: var(--primary);
    background: rgba(11, 102, 35, 0.05);
}

.data-interest-options .form-check-input:checked ~ .form-check-label {
    color: var(--primary);
}

.data-interest-options .form-check-input:checked + .form-check-label strong {
    color: var(--primary);
}

.data-interest-options .data-option:has(.form-check-input:checked) {
    border-color: var(--primary);
    background: rgba(11, 102, 35, 0.1);
}

/* JSON Preview Card */
.json-preview-card {
    background: #1e2432;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.json-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #161b26;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.json-preview-header h5 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.json-preview-header .btn {
    padding: 0.25rem 0.5rem;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.json-preview-header .btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.json-preview-body {
    padding: 1rem;
    max-height: 450px;
    overflow-y: auto;
}

.json-preview-body pre {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
}

.json-preview-body code {
    color: #a5d6ff;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.json-preview-footer {
    padding: 0.75rem 1.25rem;
    background: #161b26;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.json-preview-footer small {
    color: rgba(255, 255, 255, 0.5);
}

/* Form Preview Card - Modern UI */
.preview-card {
    background: linear-gradient(165deg, #1e2538 0%, #121620 50%, #0a0d12 100%);
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.preview-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.12) 0%, rgba(253, 106, 2, 0.08) 50%, rgba(6, 163, 218, 0.06) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.preview-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.preview-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #15803d 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    box-shadow: 
        0 8px 20px rgba(11, 102, 35, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.preview-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.preview-card-header h5 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.preview-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    margin: 0.25rem 0 0 0;
}

/* Completion Badge */
.completion-badge {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.375rem 0.875rem;
    transition: all 0.3s ease;
}

.completion-badge.complete {
    background: rgba(74, 222, 128, 0.15);
    border-color: rgba(74, 222, 128, 0.3);
}

.completion-percent {
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Header Progress Bar */
.header-progress-wrapper {
    height: 5px;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.header-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, #22c55e 40%, #4ade80 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
    border-radius: 0 3px 3px 0;
}

.header-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
}

.header-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: progressShimmer 1.5s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-80px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(80px); opacity: 0; }
}

.preview-card-body {
    padding: 1.25rem 1.5rem;
    max-height: 380px;
    overflow-y: auto;
}

.preview-card-body::-webkit-scrollbar {
    width: 4px;
}

.preview-card-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.preview-card-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.preview-section {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.preview-section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.preview-section:last-child {
    margin-bottom: 0;
}

.preview-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-section-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-section-header h6 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-status {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.section-status.complete {
    color: #4ade80;
    animation: checkPop 0.3s ease;
}

@keyframes checkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.preview-items {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.625rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    gap: 0.75rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.preview-item:hover {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.04);
}

.preview-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.preview-value {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    text-align: right;
    word-break: break-word;
    font-weight: 500;
    transition: all 0.25s ease;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-value.empty {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    font-weight: 400;
    font-size: 0.75rem;
}

.preview-value.filled {
    color: #93c5fd;
}

.preview-card-footer {
    padding: 1rem 1.5rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-tip {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.footer-tip i {
    color: #fbbf24;
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4));
}

@media (max-width: 991px) {
    .preview-card {
        position: static;
        margin-top: 2rem;
    }
}

/* API Info Card */
.api-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.api-info-card h6 {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.api-endpoint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.api-endpoint .method {
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.api-endpoint code {
    color: var(--text);
    font-size: 0.85rem;
}

/* Success Modal */
.subscription-modal-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(11, 102, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.response-preview pre {
    background: #1e2432;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
}

.response-preview code {
    color: #a5d6ff;
}

@media (max-width: 991px) {
    .json-preview-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .subscription-form-card {
        padding: 1.5rem;
    }

    .plan-options {
        flex-direction: column;
    }

    .plan-option {
        min-width: 100%;
    }

    .additional-services {
        grid-template-columns: 1fr;
    }
}

/* Solutions Vertical Tabs */
.solutions-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: sticky;
    top: 100px;
}

.solution-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-tab-btn i {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.solution-tab-btn span {
    flex: 1;
}

.solution-tab-btn:hover {
    background: var(--surface-strong);
    border-color: var(--primary);
    transform: translateX(4px);
}

.solution-tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #0d7a2b 100%);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(11, 102, 35, 0.3);
}

.solution-tab-btn.active i {
    color: #fff;
}

.solutions-tab-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    min-height: 450px;
}

.solution-tab-pane {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.solution-tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-tab-pane .solution-img-wrapper img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.solution-tab-pane .solution-img-wrapper:hover img {
    transform: scale(1.02);
}

.solution-tab-pane .solution-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(11, 102, 35, 0.1), rgba(253, 106, 2, 0.1));
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

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

.solution-tab-pane .solution-description {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.solution-tab-pane .solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.solution-tab-pane .solution-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text);
}

.solution-tab-pane .solution-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .solutions-tabs-nav {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
        margin-bottom: 1.5rem;
    }

    .solution-tab-btn {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 150px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .solution-tab-btn i {
        font-size: 1rem;
    }

    .solution-tab-btn:hover {
        transform: translateY(-2px);
    }

    .solutions-tab-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .solution-tab-btn {
        flex: 1 1 100%;
    }

    .solution-tab-btn span {
        display: block;
    }

    .solutions-tab-content {
        padding: 1rem;
    }

    .solution-tab-pane .solution-title {
        font-size: 1.25rem;
    }
}

/* Smooth Scroll & Animations */
html {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 768px) {
    .solution-title {
        font-size: 1.5rem;
    }

    .cta-card {
        padding: 2rem 1rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

