/* =====================
   GLOBAL STYLES
===================== */
:root {
    --dark: #0B0E14;
    --dark-lighter: #151922;
    --neon-orange: #ef874c;
    --neon-cyan: #00E5FF;
    --neon-purple: #7C7CFF;
    --text-primary: #FFFFFF;
    --text-secondary: #B5B5B5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #ef874c 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 30px rgba(239, 135, 76, 0.5);
}

/* =====================
   BUTTONS
===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: 'Urbanist', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #ef874c;
    color: white;
    box-shadow: 0 0 20px rgba(239, 135, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(239, 135, 76, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 124, 255, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

/* =====================
   SECTION HEADERS
===================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

/* =====================
   HERO SLIDER SECTION
===================== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 90px;
}

.hero-slider-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =====================
   NAVBAR
===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(239, 135, 76, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    background: rgba(11, 14, 20, 0.98);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    transition: all 0.3s ease;
}

.site-logo {
    max-width: 85px;
    height: auto;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(239, 135, 76, 0.5));
    transition: all 0.3s ease;
}

.logo-container:hover .site-logo {
    filter: drop-shadow(0 0 20px rgba(239, 135, 76, 0.8));
    transform: scale(1.05);
}

/* Desktop Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ef874c;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ef874c;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: rgba(239, 135, 76, 0.15);
    border: 1px solid rgba(239, 135, 76, 0.3);
    border-radius: 8px;
    color: #ef874c !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: rgba(239, 135, 76, 0.25);
    transform: translateY(-2px);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #ef874c;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover .hamburger-line {
    background: #ff9c52;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Side Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--dark-lighter);
    border-left: 2px solid rgba(239, 135, 76, 0.3);
    z-index: 1100;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu-header {
    padding: 30px 20px;
    border-bottom: 1px solid #2a2e38;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-logo {
    max-width: 120px;
    height: auto;
    border-radius: 50%;
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(239, 135, 76, 0.15);
    border: 1px solid rgba(239, 135, 76, 0.3);
    color: #ef874c;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close:hover {
    background: rgba(239, 135, 76, 0.25);
    transform: rotate(90deg);
}

.mobile-menu-content {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 30px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: #ef874c;
    background: rgba(239, 135, 76, 0.1);
    border-left-color: #ef874c;
}

.mobile-menu-link i {
    font-size: 1.3rem;
    width: 24px;
}

.mobile-menu-link.highlight {
    margin: 10px 20px;
    border-radius: 8px;
    background: rgba(239, 135, 76, 0.15);
    border: 1px solid rgba(239, 135, 76, 0.3);
    color: #ef874c;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #2a2e38;
}

.mobile-menu-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.scroll-arrow {
    color: #ef874c;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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


/* =====================
   ABOUT SECTION
===================== */
.about-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 135, 76, 0.1), transparent);
    filter: blur(100px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #2a2e38;
    transition: all 0.5s ease;
}

.about-image-wrapper:hover {
    border-color: rgba(239, 135, 76, 0.5);
    box-shadow: 0 20px 60px rgba(239, 135, 76, 0.3);
    transform: translateY(-10px);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(239, 135, 76, 0.1) 0%, 
        rgba(0, 229, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

.about-text {
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(239, 135, 76, 0.15);
    border: 1px solid rgba(239, 135, 76, 0.3);
    border-radius: 30px;
    color: #ef874c;
    font-size: 0.95rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.about-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
    padding: 40px 0;
    border-top: 1px solid #2a2e38;
    border-bottom: 1px solid #2a2e38;
}

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

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 8px;
}

.feature-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.about-btn {
    margin-top: 16px;
}

/* =====================
   SERVICES SECTION
===================== */
.services {
    padding: 120px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    position: relative;
    background: var(--dark-lighter);
    background-size: cover;
    background-position: center;
    border: 1px solid #2a2e38;
    border-radius: 16px;
    padding: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(11, 14, 20, 0.7) 0%, 
        rgba(11, 14, 20, 0.85) 50%, 
        rgba(11, 14, 20, 0.95) 100%);
    transition: all 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, 
        rgba(239, 135, 76, 0.15) 0%, 
        rgba(11, 14, 20, 0.8) 50%, 
        rgba(11, 14, 20, 0.95) 100%);
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ef874c;
    box-shadow: 0 10px 40px rgba(239, 135, 76, 0.3);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card:hover::after {
    transform: scale(1.1);
}

.service-icon {
    color: var(--neon-cyan);
    margin-bottom: 24px;
    transition: all 0.3s ease;
    font-size: 3rem;
}

.service-icon i {
    display: block;
}

.service-card:hover .service-icon {
    color: #ef874c;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    text-shadow: 0 0 20px rgba(239, 135, 76, 0.4);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================
   SLIDER IMAGE SECTION
===================== */
.slider-section {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

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

/* =====================
   SHOWCASE SECTION
===================== */
.showcase {
    padding: 120px 0;
    background: var(--dark-lighter);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.showcase-item {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.5s ease;
}

.showcase-item:hover {
    border-color: rgba(239, 135, 76, 0.5);
    transform: scale(1.02);
}

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

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 14, 20, 0.95), rgba(11, 14, 20, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: all 0.5s ease;
}

.showcase-item:hover .showcase-overlay {
    background: linear-gradient(to top, rgba(11, 14, 20, 0.85), rgba(11, 14, 20, 0.2));
}

.showcase-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.2);
    border: 1px solid rgba(0, 229, 255, 0.5);
    border-radius: 20px;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 16px;
}

.showcase-tag i {
    font-size: 1rem;
}

.showcase-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-title {
    text-shadow: 0 0 20px rgba(239, 135, 76, 0.6);
}

.showcase-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef874c;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.showcase-link i {
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-link {
    opacity: 1;
    transform: translateX(0);
}

.showcase-item:hover .showcase-link i {
    transform: translateX(5px);
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* =====================
   DIGITAL SERVICES
===================== */
.digital-services {
    padding: 120px 0;
}

.digital-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(124, 124, 255, 0.2);
    border: 1px solid var(--neon-purple);
    border-radius: 20px;
    color: var(--neon-purple);
    font-size: 0.9rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    margin-bottom: 24px;
}

.digital-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.2;
}

.digital-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-lighter);
    border: 1px solid #2a2e38;
    border-radius: 12px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    color: var(--neon-cyan);
}

.feature-icon i {
    display: block;
}

.feature-item:hover .feature-icon {
    background: rgba(239, 135, 76, 0.2);
    border-color: #ef874c;
    box-shadow: 0 0 20px rgba(239, 135, 76, 0.3);
    color: #ef874c;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: #ef874c;
}

.feature-content p {
    color: var(--text-secondary);
}

/* Mockups */
.digital-right {
    position: relative;
}

.browser-mockup {
    background: var(--dark-lighter);
    border: 1px solid #2a2e38;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.browser-bar {
    background: var(--dark);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #2a2e38;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA42; }

.browser-url {
    flex: 1;
    background: var(--dark-lighter);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.browser-content {
    padding: 32px;
    background: linear-gradient(135deg, var(--dark-lighter), var(--dark));
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mockup-logo {
    width: 100px;
    height: 32px;
    background: linear-gradient(135deg, #ef874c, var(--neon-cyan));
    border-radius: 4px;
}

.mockup-nav {
    display: flex;
    gap: 8px;
}

.mockup-nav span {
    width: 60px;
    height: 8px;
    background: #2a2e38;
    border-radius: 4px;
}

.mockup-hero {
    margin-bottom: 24px;
}

.mockup-line {
    height: 12px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
    border-radius: 4px;
    margin-bottom: 12px;
}

.line-1 { width: 75%; }
.line-2 { width: 100%; height: 10px; background: #2a2e38; }
.line-3 { width: 66%; height: 10px; background: #2a2e38; }

.mockup-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.mockup-btn {
    width: 100px;
    height: 40px;
    border-radius: 8px;
}

.btn-orange {
    background: #ef874c;
    box-shadow: 0 0 20px rgba(239, 135, 76, 0.4);
}

.btn-cyan {
    border: 2px solid var(--neon-cyan);
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-card {
    height: 80px;
    background: var(--dark-lighter);
    border: 1px solid #2a2e38;
    border-radius: 8px;
}

/* Phone mockup */
.phone-mockup {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    background: var(--dark-lighter);
    border: 1px solid #2a2e38;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: float 6s ease-in-out infinite;
}

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

.phone-notch {
    background: var(--dark);
    height: 24px;
    border-radius: 24px 24px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-notch::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #2a2e38;
    border-radius: 2px;
}

.phone-content {
    background: linear-gradient(135deg, rgba(124, 124, 255, 0.1), rgba(0, 229, 255, 0.1));
    height: 280px;
    border-radius: 24px;
    padding: 16px;
}

.phone-post {
    background: var(--dark-lighter);
    border-radius: 12px;
    padding: 12px;
}

.post-header {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ef874c;
}

.post-info {
    flex: 1;
}

.post-line {
    height: 8px;
    background: #2a2e38;
    border-radius: 4px;
    margin-bottom: 4px;
}

.post-line.small { width: 60%; }
.post-line.medium { width: 75%; }

.post-image {
    height: 140px;
    background: var(--dark);
    border-radius: 8px;
    margin-bottom: 12px;
}

.post-text .post-line {
    margin-bottom: 6px;
}

/* =====================
   WHY US SECTION
===================== */
.whyus {
    padding: 120px 0;
    background: var(--dark-lighter);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.reason-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-8px);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.1), rgba(0, 229, 255, 0.1));
    border: 1px solid #2a2e38;
    border-radius: 16px;
    color: var(--neon-cyan);
    transition: all 0.6s ease;
    font-size: 2rem;
}

.reason-icon i {
    display: block;
}

.reason-item:hover .reason-icon {
    transform: rotate(360deg) scale(1.1);
    color: #ef874c;
    border-color: rgba(239, 135, 76, 0.5);
}

.reason-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.reason-item:hover .reason-title {
    text-shadow: 0 0 20px rgba(239, 135, 76, 0.4);
}

.reason-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.divider-line {
    margin-top: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #ef874c, transparent);
}

/* =====================
   CTA SECTION
===================== */
.cta {
    padding: 120px 0;
}

.cta-box {
    background: var(--dark-lighter);
    border: 2px solid #ef874c;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(239, 135, 76, 0.2), inset 0 0 40px rgba(239, 135, 76, 0.05);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(239, 135, 76, 0.15), transparent);
    border-radius: 50%;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    position: relative;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    position: relative;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    position: relative;
}

/* =====================
   FOOTER
===================== */
.footer {
    background: var(--dark-lighter);
    background-image: url('https://images.unsplash.com/photo-1541961017774-22349e4a1262?w=1600&h=900&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid #2a2e38;
    padding: 80px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(11, 14, 20, 0.95) 0%, 
        rgba(11, 14, 20, 0.97) 100%);
    z-index: 1;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border: 1px solid #2a2e38;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ef874c;
    border-color: #ef874c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(239, 135, 76, 0.4);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ef874c;
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: #ef874c;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(42, 46, 56, 0.5);
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* =====================
   STICKY CONTACT BUTTONS
===================== */
.sticky-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: pulse-btn 2s infinite;
}

.sticky-whatsapp {
    background: #25D366;
    color: white;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.sticky-phone {
    background: #ef874c;
    color: white;
}

.sticky-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(239, 135, 76, 0.6);
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(239, 135, 76, 0.6);
    }
}

/* =====================
   MOBILE BOTTOM NAVBAR
===================== */
.mobile-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-lighter);
    border-top: 1px solid #2a2e38;
    padding: 12px 0;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-navbar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 12px;
}

.nav-item i {
    font-size: 1.3rem;
}

.nav-item:hover,
.nav-item.active {
    color: #ef874c;
    background: rgba(239, 135, 76, 0.1);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
    .digital-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .phone-mockup {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 40px auto 0;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar-container {
        padding: 15px 20px;
    }
    
    .site-logo {
        max-width: 120px;
    }
    
    .hero-slider {
        margin-top: 70px;
    }
    
    .mobile-menu {
        width: 85%;
        max-width: 320px;
    }
    
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 32px 0;
        padding: 32px 0;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .hero-slider .logo-container {
        top: 20px;
        right: 20px;
        padding: 10px 16px;
        width: 100%;
    }
    
    .site-logo {
        max-width: 70px;
        position: absolute;
        left: 41px;
        top: -7px;
    }
    
    .hero-slider .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        font-size: 1.5rem;
    }
    
    .hero-slider-image {
        width: 100%;
        height: auto;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid,
    .showcase-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-height: 280px;
        padding: 32px 24px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .cta-box {
        padding: 60px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Show mobile navbar on mobile */
    .mobile-navbar {
        display: block;
    }
    
    /* Hide sticky buttons on mobile (navbar handles it) */
    .sticky-contact {
        display: none;
    }
    
    /* Add padding to sections for mobile navbar */
    .footer {
        padding-bottom: 80px;
    }
    
    /* Slider section mobile */
    .slider-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card,
    .showcase-item {
        border-radius: 12px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* =====================
   SCROLL ANIMATIONS
===================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

