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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Text Me One', sans-serif;
    color: #1a2f3f;
    overflow-x: hidden;
    background: #fff;
    line-height: 1.6;
}

/* ===================================
   2. HEADER & NAVIGATION
   =================================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
     padding: 40px 5% ; 
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #1f3b4d 0%, #2d4f62 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand img {
    height: 150px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 32px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 450px;
    height: 100vh;
    background: #fafafa;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 30px 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    padding: 5px 10px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: black;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 10px;
    transition: background 0.3s ease;
    font-size: 1.1rem;
}

.sidebar-nav a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.sidebar-nav img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ===================================
   3. HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #1f3b4d 0%, #2d4f62 100%);
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
}

/* ===================================
   4. SOLUTIONS SECTION
   =================================== */
.solutions-section {
    padding: 120px 5%;
    background: #fff;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Solution Card */
.solution-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.solution-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

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

.solution-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

/* Section Number Background */
.section-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 12rem;
    font-weight: 700;
    color: rgba(46, 196, 182, 0.06);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Solution Header */
.solution-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.icon-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2ec4b6 0%, #20a89a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 16px rgba(46, 196, 182, 0.3);
}

.solution-title-block {
    flex: 1;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2f3f;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 400;
}

/* Solution Content Grid */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.solution-card.reverse .solution-content {
    direction: rtl;
}

.solution-card.reverse .solution-text {
    direction: ltr;
}

/* Solution Text */
.solution-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.text-block {
    padding: 20px 0;
    border-left: 3px solid transparent;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.text-block:hover {
    border-left-color: #2ec4b6;
}

.text-block.highlight {
    background: linear-gradient(90deg, rgba(46, 196, 182, 0.05) 0%, transparent 100%);
    border-left-color: #2ec4b6;
}

.text-block.impact {
    background: linear-gradient(90deg, rgba(31, 59, 77, 0.05) 0%, transparent 100%);
    border-left-color: #1f3b4d;
}

.block-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2ec4b6;
    margin-bottom: 8px;
}

.text-block.impact .block-label {
    color: #1f3b4d;
}

.text-block p {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
}

/* Stat Chips */
.stat-chips {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.stat-chip {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-chip:hover {
    border-color: #2ec4b6;
    box-shadow: 0 4px 12px rgba(46, 196, 182, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2ec4b6;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Solution Image */
.solution-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.solution-image img {
    width: 100%;
    height: 440px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.solution-card:hover .image-overlay {
    opacity: 1;
}

/* Learn More Link */
.learn-more {
    display: none;
    align-items: center;
    gap: 8px;
    color: #2ec4b6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.learn-more:hover {
    gap: 12px;
}

/* ===================================
   5. HIGHLIGHT SECTIONS
   =================================== */
.highlight-section {
    background: linear-gradient(135deg, #f0fdfc 0%, #e0f2f1 100%);
    border-radius: 24px;
    padding: 80px 60px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.highlight-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(31, 59, 77, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.highlight-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.highlight-content h3 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a2f3f;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.highlight-content p {
    font-size: 1.3rem;
    color: #475569;
    line-height: 1.8;
    font-weight: 400;
}

/* ===================================
   6. CTA FINAL SECTION
   =================================== */
.cta-final {
    background: linear-gradient(135deg, #2c4a5e 0%, #3a5a70 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(46, 196, 182, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(46, 196, 182, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-final-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-size: 3.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-intro {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 300;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    font-size: 1.15rem;
    text-align: left;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.benefit-item svg {
    color: #2ec4b6;
    flex-shrink: 0;
}

.cta-primary-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2ec4b6 0%, #20a89a 100%);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 50px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(46, 196, 182, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(46, 196, 182, 0.4);
}

/* ===================================
   7. FOOTER
   =================================== */
.main-footer {
    background: linear-gradient(135deg, #2c4a5e 0%, #3a5a70 100%);
    color: white;
    padding: 60px 5% 30px;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-office {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-center {
    flex: 1;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 10px;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 20px;
}

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

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.social-icons img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   8. MEDIA QUERIES
   =================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .solution-card {
        padding: 40px;
    }

    .solution-content {
        gap: 40px;
    }

    .section-number {
        font-size: 8rem;
    }

    .solution-title {
        font-size: 2rem;
    }

    .highlight-content h3 {
        font-size: 2.2rem;
    }

    .cta-final h2 {
        font-size: 2.5rem;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .main-header {
        padding: 20px 20px;
        width: 100%;
    }



    /* Mobile Sidebar */
    .mobile-sidebar {
        width: 300px;
        right: -300px;
    }

    /* Hero */
    .hero-section {
        padding: 80px 20px 60px;
        width: 100%;
    }

    .hero-container {
        padding: 0 10px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Solutions */
    .solutions-section {
        padding: 60px 20px;
    }

    .solution-card {
        padding: 20px 15px;
        margin-bottom: 50px;
        width: 100%;
    }

    .solution-content,
    .solution-card.reverse .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .solution-card.reverse .solution-content {
        direction: ltr;
    }

    /* Image always on top on mobile */
    .solution-image {
        order: -1;
    }

    .section-number {
        font-size: 4rem;
        top: 20px;
        right: 10px;
    }

    .solution-header {
        flex-direction: column;
        gap: 16px;
    }

    .icon-badge {
        width: 56px;
        height: 56px;
    }

    .solution-title {
        font-size: 1.8rem;
    }

    .solution-subtitle {
        font-size: 1rem;
    }

    .text-block p {
        font-size: 1rem;
    }

    .stat-chips {
        flex-direction: column;
    }

    .stat-chip {
        width: 100%;
    }

    /* Highlight Section */
    .highlight-section {
        padding: 50px 30px;
        margin-bottom: 50px;
    }

    .highlight-content h3 {
        font-size: 1.8rem;
    }

    .highlight-content p {
        font-size: 1.1rem;
    }

    /* CTA */
    .cta-final {
        padding: 60px 20px;
    }

    .cta-final h2 {
        font-size: 2rem;
    }

    .cta-intro {
        font-size: 1.1rem;
    }

    .benefit-item {
        font-size: 1rem;
        padding: 14px 20px;
    }

    .benefit-item:hover {
        transform: translateX(0);
    }

    .cta-primary-btn {
        font-size: 1rem;
        padding: 16px 40px;
        width: 80%;
    }

    /* Footer */
    .main-footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        justify-content: flex-start;
    }

    .footer-logo {
        height: 50px;
    }

    .learn-more {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .solution-title {
        font-size: 1.5rem;
    }

    .highlight-content h3 {
        font-size: 1.5rem;
    }

    .cta-final h2 {
        font-size: 1.6rem;
    }

    .section-number {
        font-size: 4rem;
    }
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ec4b6 0%, #25a89d 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(-45deg);
    margin-top: 5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top::before {
        width: 10px;
        height: 10px;
        border-width: 2.5px;
    }
}