/* ========================================
   Logiron - Vanilla CSS (Exact Replica)
   Pixel-perfect recreation of original design
   ======================================== */

/* CSS Variables - Exact from original */
:root {
    --accent-color: rgba(0,38,153,1);
    --accent-color-2: rgba(0,38,153,1);
    --heading-color: rgba(1,14,55,1);
    --text-color: rgba(52,62,95,1);
    --white-color: #ffffff;
    --white-bg: #ffffff;
    
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Cabin', sans-serif;
    
    --container-width: 1200px;
    --section-padding: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

p {
    margin-bottom: 1rem;
}

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

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

/* ========================================
   BUTTONS - Ultra Premium
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    letter-spacing: 0.5px;
}

/* Header CTA Button - Premium Style */
.header-cta .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--accent-color);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.header-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.header-cta .btn-primary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
    color: var(--heading-color);
    box-shadow: 0 6px 25px rgba(255,215,0,0.4);
    transform: translateY(-2px);
}

.header-cta .btn-primary:hover::before {
    left: 100%;
}

.btn-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--accent-color);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
    box-shadow: 0 8px 30px rgba(255,215,0,0.4);
    transform: translateY(-3px);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Top Bar - Dark Navy */
.top-bar {
    background: linear-gradient(135deg, #010E37 0%, #0a1a4a 50%, #010E37 100%);
    padding: 12px 0;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 1024px) {
    .top-bar {
        display: block;
    }
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-list,
.social-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 10px;
    border-radius: 20px;
}

.contact-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.contact-icon i {
    font-size: 14px;
    color: #FFD700;
}

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

.social-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 14px;
    color: currentColor;
}

/* Main Header - Ultra Premium */
.main-header {
    background: rgba(0, 38, 153, 0.95);
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
}

/* Elegant white line under navbar */
.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.3) 20%, 
        rgba(255,255,255,0.5) 50%, 
        rgba(255,255,255,0.3) 80%, 
        transparent 100%
    );
}

.main-header.scrolled {
    background: rgba(1, 14, 55, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Premium Styling */
.site-branding {
    position: relative;
}

.site-branding::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    right: -15px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 10px;
    pointer-events: none;
}

.site-branding:hover::before {
    opacity: 1;
}

.site-branding .logo-img {
    max-width: 130px;
    height: auto;
    transition: transform 0.3s ease;
}

.site-branding:hover .logo-img {
    transform: scale(1.02);
}

/* Hide mobile logo on desktop */
.site-branding.mobile-version {
    display: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

@media (max-width: 1115px) {
    .site-branding.mobile-version {
        display: block;
    }
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .menu-item a {
    display: block;
    padding: 12px 24px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    position: relative;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.navbar-nav > .menu-item > a:hover,
.navbar-nav > .menu-item.current-menu-item > a {
    color: #fff;
}

.navbar-nav > .menu-item > a:hover,
.navbar-nav > .menu-item.current-menu-item > a {
    background: rgba(255,255,255,0.08);
}

/* Desktop: Yellow underline for all active nav items and hover */
@media (min-width: 1024px) {
    .navbar-nav > .menu-item.current-menu-item > a,
    .navbar-nav > .menu-item > a:hover {
        box-shadow: 0 2px 0 #FFD700;
        background: rgba(255,255,255,0.08);
        color: #fff;
    }
    
    .navbar-nav > .menu-item > a::after {
        display: none !important;
    }
}

/* Mobile: Default underline style */
@media (max-width: 1023px) {
    .navbar-nav > .menu-item > a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        width: 0;
        height: 2px;
        background: #FFD700;
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }
    
    .navbar-nav > .menu-item > a:hover::after,
    .navbar-nav > .menu-item.current-menu-item > a::after {
        width: 60%;
    }
}

/* Hide underline on dropdown menu items */
.navbar-nav .sub-menu .menu-item a::after {
    display: none !important;
}

.navbar-nav .sub-menu .menu-item a:hover::after {
    display: none !important;
}

/* Dropdown Menu Styles */
.navbar-nav .menu-item-has-children {
    position: relative;
}

.navbar-nav .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-nav .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 8px;
    border: 1px solid rgba(0,38,153,0.1);
}

.navbar-nav .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0,38,153,0.1);
    border-top: 1px solid rgba(0,38,153,0.1);
}

.navbar-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .sub-menu .menu-item a {
    color: var(--heading-color);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    display: block;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.navbar-nav .sub-menu .menu-item:last-child a {
    border-bottom: none;
}

.navbar-nav .sub-menu .menu-item a:hover,
.navbar-nav .sub-menu .menu-item.current-menu-item a {
    background: linear-gradient(135deg, rgba(0,38,153,0.08) 0%, rgba(0,38,153,0.03) 100%);
    opacity: 1;
    color: var(--accent-color);
    padding-left: 25px;
}

.navbar-nav .sub-menu .menu-item a:hover::after,
.navbar-nav .sub-menu .menu-item.current-menu-item a::after {
    width: 60%;
}

.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }
}

/* Mobile Menu Toggle */
.navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar-toggler-icon svg {
    width: 24px;
    height: 18px;
}

.open-menu {
    display: flex;
    position: relative;
    z-index: 100;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.open-menu:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1020;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
}

.close-menu:hover {
    background: rgba(255,255,255,0.2);
}

@media (min-width: 1116px) {
    .open-menu {
        display: none;
    }
}

/* Mobile Menu Panel */
.navbar-inner {
    display: flex;
    align-items: center;
}

@media (max-width: 1115px) {
    .header-inner {
        height: 70px;
    }
    
    .navbar-inner {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #010E37 0%, #0a1a4a 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1010;
        overflow-y: auto;
        box-shadow: -10px 0 50px rgba(0,0,0,0.5);
    }
    
    .navbar-inner.active {
        right: 0;
    }
    
    .navbar-inner.active .close-menu {
        display: flex;
    }
    
    .navbar-inner .site-branding.mobile-version {
        margin-bottom: 40px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    
    .navbar-inner .site-branding.mobile-version img {
        max-width: 140px;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 20px;
        gap: 5px;
    }
    
    .navbar-nav .menu-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .navbar-nav .menu-item a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        font-size: 17px;
        font-weight: 500;
        border-radius: 0;
    }
    
    .navbar-nav .menu-item a:hover {
        background: transparent;
        padding-left: 10px;
    }
    
    .navbar-nav .menu-item a::after {
        display: none;
    }
    
    /* Mobile dropdown styles */
    .navbar-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,38,153,0.2);
        box-shadow: none;
        border: none;
        border-radius: 8px;
        margin: 10px 0;
        padding: 10px;
        display: none;
    }
    
    .navbar-nav .sub-menu::before {
        display: none;
    }
    
    .navbar-nav .menu-item-has-children.active > .sub-menu {
        display: block;
    }
    
    .navbar-nav .sub-menu .menu-item a {
        color: rgba(255,255,255,0.8);
        padding: 12px 15px;
        font-size: 15px;
    }
    
.navbar-nav .sub-menu .menu-item a {
    position: relative;
}

.navbar-nav .sub-menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .sub-menu .menu-item a:hover {
    background: rgba(0,38,153,0.05);
    color: var(--accent-color);
}

.navbar-nav .sub-menu .menu-item a:hover::after {
    width: 60%;
}
    
    .mobile-menu-cta {
        display: block !important;
        width: 100%;
        text-align: center;
        background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
        color: var(--accent-color);
        padding: 18px 32px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        margin-top: 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .mobile-menu-cta:hover {
        background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
        transform: translateY(-2px);
    }
    
    /* Remove rotation animation on mobile close button */
    .close-menu:hover {
        transform: none;
        background: rgba(255,255,255,0.15);
    }
}

.mobile-menu-cta {
    display: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1,14,55,0.8);
    backdrop-filter: blur(8px);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 120px;
    overflow: hidden;
}

.hero-section .container {
    overflow: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0,38,153);
    opacity: 0.9;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    color: var(--white-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 2.75rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    position: relative;
}

.hero-image img {
    width: 185%;
    max-width: none;
    height: auto;
    object-fit: contain;
    position: relative;
    right: -10%;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        order: -1;
        justify-content: center;
        width: 100%;
    }

    .hero-image img {
        width: 78%;
        max-width: none;
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

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

    .hero-image img {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        width: 105%;
        max-width: none;
    }
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: var(--section-padding) 0;
    background-color: var(--white-bg);
}

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

.stats-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.stats-content .section-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.stats-content .section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.stats-content .section-description {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.counter-box {
    text-align: center;
    padding: 20px;
}

.counter-icon {
    margin-bottom: 15px;
}

.counter-icon img {
    margin: 0 auto;
}

.counter-title {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.counter-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
}

.counter-prefix,
.counter-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========================================
   USAGE SECTION
   ======================================== */
.usage-section {
    padding: var(--section-padding) 0;
    background-color: #f8f9fa;
}

.usage-section .section-header {
    margin-bottom: 3rem;
}

.usage-section .section-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.usage-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.usage-column {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-height: 0;
}

.usage-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.usage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.usage-icon {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.usage-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.usage-content {
    padding: 14px;
    flex: 1;
}

.usage-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--heading-color);
    line-height: 1.3;
}

.usage-description {
    font-size: 0.85rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .usage-grid {
        grid-template-columns: 1fr;
    }

    .usage-column {
        grid-template-rows: none;
    }
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */
.experience-section {
    padding: var(--section-padding) 0;
    background-color: var(--white-bg);
}

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

.experience-content .section-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.experience-content .section-title {
    font-size: 2.25rem;
    color: var(--heading-color);
}

.experience-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}

.experience-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-image {
        display: none;
    }
    
    .experience-image-mobile {
        display: block;
        margin-top: 2rem;
    }
    
    .experience-image-mobile img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background-color: var(--accent-color);
    color: var(--white-color);
}

.how-it-works .section-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.how-it-works .section-title {
    color: var(--white-color);
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

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

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--white-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    color: var(--white-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.step-description {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    padding: var(--section-padding) 0;
    background-color: var(--white-bg);
}

.benefits-header {
    margin-bottom: 50px;
}

.benefits-header .section-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefits-header .section-title {
    font-size: 2.5rem;
    color: var(--heading-color);
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-collage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 500px;
}

.collage-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.collage-item:hover img {
    transform: scale(1.05);
}

.collage-large {
    grid-row: span 2;
}

.collage-small-top,
.collage-small-bottom {
    background: #f0f4ff;
}

.benefits-content {
    padding-left: 20px;
}

.benefits-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: #f0f4ff;
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    margin-top: 2px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.benefit-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.benefit-text strong {
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .benefits-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-collage {
        max-width: 600px;
        margin: 0 auto;
        height: 400px;
    }

    .benefits-content {
        max-width: 700px;
        margin: 0 auto;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .benefits-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .collage-large {
        grid-row: span 1;
    }

    .collage-item img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .benefits-header .section-title {
        font-size: 2rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background-color: #f5f5f5;
}

/* Footer Top */
.footer-top {
    background-color: var(--white-bg);
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.footer-top-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-top-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer-top-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-top-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.footer-top-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.footer-top-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Main */
.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.footer-brand .footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-brand .footer-logo img {
    max-width: 115px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
}

.footer-links ul,
.footer-social ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-social a,
.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-social i,
.footer-contact i {
    font-size: 16px;
    color: var(--accent-color);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright,
.credit {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

.credit a {
    color: var(--accent-color);
}

.credit a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ========================================
   WHATSAPP BUTTON - Clean
   ======================================== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* WhatsApp Chat Popup */
.wa-chat-widget {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 2200;
}

.wa-chat-widget.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wa-chat-card {
    position: absolute;
    right: 20px;
    bottom: 90px;
    width: 370px;
    max-width: calc(100vw - 24px);
    border-radius: 16px;
    background: #f5f6f7;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    transform: translateY(12px);
    transition: transform 0.25s ease;
}

.wa-chat-widget.active .wa-chat-card {
    transform: translateY(0);
}

.wa-chat-header {
    position: relative;
    background: linear-gradient(135deg, #0d6153 0%, #0a4b43 100%);
    padding: 20px 22px 18px;
    color: #fff;
}

.wa-chat-brand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wa-chat-subtitle {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.wa-chat-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.wa-chat-body {
    padding: 24px 20px 22px;
    background: #efece8;
}

.wa-chat-bubble {
    width: 100%;
    max-width: 300px;
    background: #ddf7c8;
    border-radius: 14px;
    padding: 16px 18px;
}

.wa-chat-bubble p {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 500;
    color: #2f3a33;
}

.wa-chat-bubble p:last-child {
    margin-bottom: 0;
}

.wa-chat-footer {
    background: #ffffff;
    padding: 16px;
}

.wa-chat-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border-radius: 999px;
    padding: 14px 16px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #34d46a 0%, #23be5d 100%);
}

.wa-chat-action i {
    font-size: 24px;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #002699 0%, #010E37 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 38, 153, 0.3);
    transition: all 0.3s ease;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 38, 153, 0.4);
    background: linear-gradient(135deg, #0033cc 0%, #010E37 100%);
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-top {
        width: 44px;
        height: 44px;
        font-size: 16px;
        bottom: 75px;
        right: 15px;
    }

    .wa-chat-card {
        right: 12px;
        bottom: 78px;
        width: min(96vw, 370px);
    }

    .wa-chat-bubble p {
        font-size: 17px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Floating animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 1115px) {
    .navbar-nav .menu-item a {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Disabled navigation link (temporary) */
.disabled-link {
    pointer-events: none;
    opacity: 0.4;
    cursor: default;
}
