/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Bar */
.navbar {
    background: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    margin: 0 auto;
    padding: 10px 20px 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Left Side */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 80px;
    width: 150px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo a:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 8px rgba(255, 215, 0, 0.5));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;

    /* ⭐ ADDED → Ensures menu stays right */
    margin-left: auto;
}

.nav-item {
    position: relative;
}

/* Dropdown Menu for Home1 */
.home-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    list-style: none;
    padding: 10px 0;
    margin: 5px 0 0 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1001;
}

.home-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: transparent;
    color: #ffd700;
    padding-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    display: block;
    border-radius: 25px;
    background: transparent;
}

.nav-link:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 70px;
        width: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        margin: 5px 20px;
        border-radius: 10px;
    }

    .nav-link:hover {
        background: transparent;
        color: #ffd700;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .home-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 10px 40px;
        font-size: 14px;
    }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

main h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

main p {
    font-size: 18px;
    color: #666;
}

/* Video Hero Section */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26, 26, 46, 0.85), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 20px;
}

.video-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    color: #ffb703;
    margin-bottom: 16px;
}

.video-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.video-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.hero-cta {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .video-hero {
        height: 100vh;
    }

    .video-description {
        font-size: 16px;
    }
}

.solutions-section {
    padding: 120px 20px;
    background: #f5f7fb;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #007bff;
    margin-bottom: 10px;
}

.solutions-section h2 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.solutions-section p {
    font-size: 18px;
    color: #5c5f6b;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(26, 26, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.solution-card p {
    font-size: 16px;
    color: #5c5f6b;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    margin-top: 24px;
    background: #ffb703;
    color: #1a1a2e;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 35px rgba(255, 183, 3, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(255, 183, 3, 0.4);
}

@media screen and (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .solutions-section {
        padding: 80px 16px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

.why-us-section {
    padding: 120px 20px;
    background: #ffffff;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-intro {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-intro .section-label {
    margin-bottom: 12px;
}

.why-us-intro h2 {
    font-size: 40px;
    color: #1a1a2e;
    margin-bottom: 18px;
}

.why-us-intro p {
    font-size: 18px;
    color: #5c5f6b;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 40px;
    align-items: center;
}

.why-us-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(140deg, #1a1a2e, #433d8b);
    padding: 40px;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(26, 26, 46, 0.3);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-value {
    font-size: 48px;
    font-weight: 700;
}

.highlight-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.why-us-list {
    display: grid;
    gap: 24px;
}

.why-us-card {
    background: #f8f9fd;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(26, 26, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.why-us-card p {
    font-size: 16px;
    color: #5c5f6b;
    line-height: 1.7;
}

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 992px) {
    .why-us-content {
        grid-template-columns: 1fr;
    }

    .why-us-highlights {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (max-width: 600px) {
    .why-us-section {
        padding: 80px 16px;
    }

    .why-us-highlights {
        flex-direction: column;
        text-align: center;
    }

    .highlight-value {
        font-size: 38px;
    }

    .why-us-card {
        padding: 24px;
    }
}

.network-section {
    padding: 120px 20px;
    background: #0f172a;
    color: #f8fafc;
}

.network-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.network-text h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #ffffff;
}

.network-text p {
    font-size: 18px;
    color: #cbd5f5;
    line-height: 1.7;
}

.network-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    color: #fbbf24;
    margin-bottom: 14px;
}

.network-checklist {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.network-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.network-checklist li::before {
    content: "✓";
    color: #34d399;
    font-weight: 700;
    font-size: 18px;
}

.network-checklist span {
    font-size: 16px;
    color: #e2e8f0;
}

.network-cta {
    margin-top: 30px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.network-tag {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 6px;
}

.network-cta h3 {
    color: #ffffff;
    font-size: 22px;
    margin: 0;
}

.network-visual {
    display: grid;
    gap: 20px;
}

.route-card {
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.4);
}

.route-card.primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.route-card.secondary {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.route-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.route-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.route-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.route-status {
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.65);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #fbbf24;
    margin-bottom: 14px;
}

.status-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.status-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.status-text {
    display: block;
    font-size: 14px;
    color: #cbd5f5;
}

@media screen and (max-width: 992px) {
    .network-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .network-section {
        padding: 90px 16px;
    }

    .network-text h2 {
        font-size: 32px;
    }

    .status-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dashboard-section {
    padding: 120px 20px;
    background: #f4f6fb;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: #2563eb;
    margin-bottom: 10px;
}

.dashboard-header h2 {
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 8px;
}

.dashboard-header p {
    color: #475569;
    line-height: 1.6;
}

.dashboard-refresh {
    border: none;
    background: #0ea5e9;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
    transition: transform 0.2s ease;
}

.dashboard-refresh:hover {
    transform: translateY(-2px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.kpi-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.dashboard-card h3 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 8px;
}

.kpi-trend {
    font-size: 14px;
    margin-bottom: 18px;
}

.kpi-trend.positive {
    color: #22c55e;
}

.kpi-trend.neutral {
    color: #fbbf24;
}

.kpi-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.kpi-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #34d399, #22c55e);
}

.kpi-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.kpi-tags span {
    padding: 6px 12px;
    background: #e2e8f0;
    border-radius: 999px;
    font-size: 12px;
    color: #0f172a;
    font-weight: 600;
}

.timeline .card-title,
.tickets .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0f172a;
}

.timeline ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.timeline li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.timeline li p {
    font-weight: 600;
    margin-bottom: 4px;
    color: #0f172a;
}

.timeline li span {
    color: #64748b;
    font-size: 14px;
}

.status-pill {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-pill.on-time {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
}

.status-pill.attention {
    background: rgba(251, 191, 36, 0.2);
    color: #b45309;
}

.tickets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ticket-count {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fbbf24;
    color: #0f172a;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ticket-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-item {
    padding: 16px;
    border-radius: 16px;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ticket-item p {
    font-weight: 600;
    color: #0f172a;
}

.ticket-item span {
    display: block;
    font-size: 14px;
    color: #64748b;
}

.ticket-item button {
    border: none;
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

@media screen and (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .dashboard-section {
        padding: 90px 16px;
    }

    .dashboard-header h2 {
        font-size: 28px;
    }
}

.reviews-section {
    padding: 120px 20px;
    background: #0b1120;
    color: #e5e7eb;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: #38bdf8;
    margin-bottom: 10px;
}

.reviews-header h2 {
    font-size: 36px;
    color: #f9fafb;
    margin-bottom: 12px;
}

.reviews-header p {
    font-size: 17px;
    color: #9ca3af;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    position: relative;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 50%), #020617;
    border-radius: 20px;
    padding: 26px 24px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
    transform-origin: center;
    transform: translateY(0) scale(1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    animation: reviewFloat 6s ease-in-out infinite alternate;
}

.review-card:nth-child(2) {
    animation-delay: 0.8s;
}

.review-card:nth-child(3) {
    animation-delay: 1.6s;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.9);
    border-color: rgba(56, 189, 248, 0.5);
}

@keyframes reviewFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-6px) scale(1.01);
    }
}

.review-rating span {
    color: #facc15;
    letter-spacing: 2px;
    font-size: 16px;
}

.review-text {
    margin: 14px 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #e5e7eb;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.review-name {
    font-weight: 600;
    color: #f9fafb;
}

.review-role {
    font-size: 13px;
    color: #9ca3af;
}

@media screen and (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .reviews-section {
        padding: 90px 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
/* -------------------------
   FOOTER BASE STYLES
------------------------- */
.site-footer {
    background: #0f172a; /* Dark navy logistics theme */
    color: #e2e8f0;
    padding: 60px 20px 30px;
    font-family: "Poppins", sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* -------------------------
   BRAND + ABOUT SECTION
------------------------- */
.footer-brand {
    flex: 1.6;
    min-width: 280px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* -------------------------
   EMAIL SUBSCRIBE
------------------------- */
.footer-subscribe {
    margin-top: 20px;
}

.subscribe-label {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 10px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.subscribe-button {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
}

.subscribe-button:hover {
    background: #1d4ed8;
}

.subscribe-hint {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* -------------------------
   FOOTER LINKS
------------------------- */
.footer-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    min-width: 250px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

/* -------------------------
   FOOTER BOTTOM
------------------------- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 25px;
    display: flex;
    flex-direction: column;   /* Stack items */
    align-items: center;      /* Center horizontally */
    justify-content: center;  
    text-align: center;       /* Center text */
    gap: 12px;
   
}

.footer-bottom-left p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 12px;
    margin-top: 6px;
     justify-content: center;
}

.footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #fff;
}

/* -------------------------
   SOCIAL ICONS
------------------------- */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icon:hover {
    background: #2563eb;
}

/* -------------------------
   RESPONSIVE STYLES
------------------------- */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-columns {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
