/* ==========================================
           COLOR CONFIGURATION
           Update these CSS variables to change colors throughout the site
        ========================================== */
:root {
    /* Primary Colors */
    --primary-color: #6B1411;
    --primary-dark: #4A0E0D;
    --primary-light: #8B1C1C;

    /* Accent Colors */
    --accent-gold: #E06A26;
    --accent-blue: #435EE4;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light-gray: #F7F7F7;
    --bg-dark: #1A1A1A;

    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #6B6B6B;
    --text-blue: #435EE4;
    --text-light: #999999;
    --text-white: #FFFFFF;

    /* Border Colors */
    --border-color: #E0E0E0;
    --border-gray: #D0CFCF;

    /* Status Colors */
    --success-color: #28A745;
    --info-color: #17A2B8;
}


.mb-2x {
    margin-bottom: 20px;
}

/* ==========================================
           GLOBAL STYLES
        ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

button {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

/* ==========================================
           HEADER / NAVIGATION
        ========================================== */
header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    position: relative;
}


.logo,
.logo-footer {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--primary-color);
}

.logo img {
    max-width: 84px;
    height: 42px;
    float: left;
    display: inline-flex;
    align-items: center;
}

.logo-footer img {
    max-width: 84px;
    height: 29.35px;
    float: left;
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-gold);
    padding: 2px;
    border-radius: 6px;
}

.logo-text span.logo-title {
    line-height: 0.8;
}

.logo-text span.logo-subtitle {
    line-height: 0.8;
    font-size: 14px;
    font-weight: 400;
}

.logo-footer span.logo-title-footer {
    line-height: 1;
    font-size: 16px;
    color: var(--text-white);
    font-weight: 500;
}

.logo-footer span.logo-subtitle-footer {
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.badge {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    font-weight: 400;
    transition: all 0.3s;
}

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

/* ==========================================
           HERO SECTION
        ========================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* height: 740px; */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/banner.jpg');
    background-size: cover;
    background-position: top;
    /* opacity: 0.3; */
}

.text-16 {
    font-size: 16px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 51px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px !important;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 100;
}

/* .hero p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
} */

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.stat-icon i {
    color: var(--text-white);
    opacity: 0.9;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 24px;
    font-weight: 100;
    line-height: 1;
    color: var(--text-white);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.3;
    color: var(--text-white);
}

/* ==========================================
           WHY CLOUDNATE SECTION
        ========================================== */
.why-cloudnate {
    background: var(--bg-white);
}

.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-header .view-all {
    position: absolute;
    bottom: 0;
    right: 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
}

.section-title-l {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: left;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle-l {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    padding: 20px;
    background: var(--bg-white);
    transition: all 0.3s;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-radius: 10px;
}

.feature-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
    border-left: 2px solid #E06A26;
}

.feature-icon-left {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(107, 20, 17, 0.1), rgba(107, 20, 17, 0.05));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-left i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-content {
    flex: 1;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-arrow {
    color: var(--primary-color);
    margin-left: 10px;
    flex-shrink: 0;
}

.feature-arrow i {
    font-size: 16px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-image {
    text-align: center;
    /* padding: 40px; */
}

.placeholder-image {
    background: var(--bg-light-gray);
    border-radius: 10px;
    /* padding: 100px; */
    color: var(--text-light);
    /* border: 2px dashed var(--border-color); */
}

/* ==========================================
           SERVICES SECTION
        ========================================== */
.services {
    background: var(--bg-light-gray);
    background-size: cover;
    position: relative;
    padding-top: 80px;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 432px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 432px;
    background: url('./images/services-bg.png') center/cover no-repeat;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services .section-title,
.services .section-subtitle {
    color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.service-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 80px;
    background: var(--bg-light-gray);
    border-radius: 10px;
    padding: 20px;
}

.service-image img {
    max-width: 80px;
    height: auto;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
           SUCCESS STORIES / CASE STUDIES
        ========================================== */
.success-stories {
    background: var(--bg-light-gray);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-image-wrapper {
    position: relative;
    width: 100%;
}

.story-image {
    width: 100%;
    height: 245px;
    background: var(--bg-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.story-content .read-more {
    width: 100%;
    justify-content: space-between;
}

.story-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.story-card h3 {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 16px;
    line-height: 1.4;
}

.story-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.metric {
    /* text-align: center; */
    padding: 15px;
    background: #EFF6FF;
    border-radius: 6px;
    border: 1px solid #A3BDDE;
}

.metric-value {
    font-size: 16px;
    font-weight: 100;
    color: #000;
    display: block;
}

.metric-value img {
    margin-right: 9px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.read-more {
    color: var(--accent-gold);
    font-weight: 200;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    /* text-decoration: underline; */
}

.read-more span {
    text-decoration: underline;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(4px);
}

/* ==========================================
           PARTNERS SECTION
        ========================================== */
.partners {
    background: #F3F4F6;
}

.partner-category {
    margin-bottom: 20px;
    background: var(--bg-white);
    padding: 25px 30px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
}

.partner-category:last-child {
    margin-bottom: 0;
}

.partner-category h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
    text-align: left;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.partner-logo {
    background: #F9FAFB;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
    white-space: nowrap;
}

.partner-logo:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ==========================================
           ARTICLES/BLOG SECTION
        ========================================== */
.articles {
    background: var(--bg-white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-image-wrapper {
    position: relative;
    width: 100%;
}

.article-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-secondary);
}

.article-meta i {
    margin-right: 5px;
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 200;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.article-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-blue);
}

.article-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 23px;
}

.article-card hr {
    margin-bottom: 23px;
    color: var(--border-gray);
    border: 0.8px solid var(--border-gray);
}

.view-all {
    color: var(--accent-gold);
    font-weight: 200;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    /* text-decoration: underline; */
}

.view-all span {
    text-decoration: underline;
}

.view-all i {
    font-size: 12px;
    transition: transform 0.3s;
}

.view-all:hover {
    color: var(--primary-dark);
}

.view-all:hover i {
    transform: translateX(4px);
}

/* ==========================================
           CONTACT FORM SECTION
========================================== */

.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}


.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 432px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: 0;
}


.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/contact-bg.png') center/cover no-repeat;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--text-white);
}

.contact-form {
    max-width: 800px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 100;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: right;
}

.btn-submit {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 12px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 300;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.contact-info {
    margin-top: 30px;
    display: flex;
    justify-content: left;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    opacity: 0.9;
    font-weight: 200;
}

.contact-info a i {
    font-size: 16px;
    font-weight: 200;
}

.contact-info a:hover {
    opacity: 1;
}

.btn-submit i {
    margin-left: 8px;
}

/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.field-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Loader */
.form-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    backdrop-filter: blur(4px);
}

.loader-overlay {
    text-align: center;
    color: var(--text-white);
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-overlay p {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

/* Form Notifications */
.form-notification {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #FFFFFF;
    padding: 18px 24px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 101;
    max-width: 500px;
    width: 90%;
    opacity: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.form-notification.success {
    border-left: 5px solid #28a745;
    background: linear-gradient(to right, rgba(40, 167, 69, 0.08), #FFFFFF);
}

.form-notification.error {
    border-left: 5px solid #dc3545;
    background: linear-gradient(to right, rgba(220, 53, 69, 0.08), #FFFFFF);
}

.form-notification.info {
    border-left: 5px solid #17a2b8;
    background: linear-gradient(to right, rgba(23, 162, 184, 0.08), #FFFFFF);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.notification-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.form-notification.success .notification-icon {
    background: #28a745;
    color: #FFFFFF;
}

.form-notification.error .notification-icon {
    background: #dc3545;
    color: #FFFFFF;
}

.form-notification.info .notification-icon {
    background: #17a2b8;
    color: #FFFFFF;
}

.notification-message {
    flex: 1;
    font-size: 15px;
    color: #1A1A1A;
    line-height: 1.6;
    font-weight: 400;
}

/* Mobile responsive for notifications */
@media (max-width: 768px) {
    .form-notification {
        width: 85%;
        padding: 16px 20px;
        top: 60px;
    }

    .notification-message {
        font-size: 14px;
    }

    .notification-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

/* ==========================================
           FOOTER
        ========================================== */
footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
    border-bottom: 8px solid var(--accent-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-badge {
    background: #EFF6FF33;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #7D7D7D;
}

.footer-badge i {
    margin-right: 6px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    /* text-align: center; */
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom a {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 1;
}

/* ==========================================
           RESPONSIVE DESIGN
        ========================================== */
@media (max-width: 1024px) {

    .services-grid,
    .stories-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation adjustments */
    nav {
        position: relative;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
    }

    .logo {
        order: 1;
        z-index: 1002;
    }

    /* Mobile menu styles */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1000;
        order: 3;
        margin: 0;
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        padding: 10px 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

    .nav-menu .btn-primary {
        width: calc(100% - 40px);
        margin: 10px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .stories-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .partner-category {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
