/*
   Klin Cart Landing Page Styles
   Colors:
   - Primary Green: #279b48
   - Accent Red: #ff3131
*/

/* Base Styles */
:root {
    --primary-color: #279b48;
    --accent-color: #ff3131;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 10px 25px rgba(39, 155, 72, 0.2);
    --shadow-accent: 0 10px 25px rgba(255, 49, 49, 0.2);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #279b48, #1a7a35);
    --gradient-accent: linear-gradient(135deg, #ff3131, #e62020);
    --gradient-light: linear-gradient(135deg, #f8f9fa, #e9ecef);
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

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

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2 .highlight,
.section-header h2 .app-name {
    position: relative;
}

.section-header h2 .klin {
    color: #ff3131;
}

.section-header h2 .cart {
    color: #279b48;
}

.section-header h2 .highlight::after,
.section-header h2 .app-name::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, rgba(255, 49, 49, 0.3), rgba(39, 155, 72, 0.2));
    z-index: -1;
}

.section-header p {
    color: var(--gray-color);
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}

/* Header Styles */
header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(39, 155, 72, 0.1);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 30px;
}

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 2000;
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

/* Hero Section */
.hero-section {
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    color: #333;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(39, 155, 72, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 49, 49, 0.05) 0%, transparent 50%);
    opacity: 0.8;
}

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

.hero-text {
    flex: 1;
    padding-right: 40px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 5;
    max-width: 550px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.modern-badge {
    display: inline-block;
    background: linear-gradient(90deg, #279b48, #34c85d);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(39, 155, 72, 0.2);
    letter-spacing: 0.5px;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-badge span {
    position: relative;
}


.hero-text h1 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 15px;
    position: relative;
    font-weight: 800;
    display: inline-block;
    letter-spacing: -0.5px;
    color: #222;
}

.hero-text h1 .app-name {
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.hero-text h1 .klin {
    color: #ff3131;
}

.hero-text h1 .cart {
    color: #279b48;
}

.hero-text h1 .app-name::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, rgba(255, 49, 49, 0.6), rgba(39, 155, 72, 0.3));
    z-index: -1;
    border-radius: 4px;
}

.hero-text p {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
    max-width: 90%;
    line-height: 1.5;
    font-weight: 400;
}

.hero-text p:last-of-type {
    margin-bottom: 20px;
}

.hero-platform-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.hero-platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(39, 155, 72, 0.1);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 155, 72, 0.2);
}

.hero-platform-icon i {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.hero-platform-icon span {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.hero-platform-icon:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(39, 155, 72, 0.2);
}

.hero-platform-icon:hover i,
.hero-platform-icon:hover span {
    color: white;
}

.hero-app-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-app-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    padding: 8px 15px;
    position: relative;
    overflow: hidden;
}

.hero-app-badge img {
    height: 45px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-app-badge:hover {
    transform: translateY(-5px);
}

.hero-app-badge:hover img {
    transform: scale(1.05);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, #279b48, #34c85d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.2), rgba(255, 49, 49, 0.05));
    top: 15%;
    right: 10%;
    animation: floatAnimation 8s ease-in-out infinite;
    border: 1px solid rgba(255, 49, 49, 0.1);
    box-shadow: 0 10px 30px rgba(255, 49, 49, 0.1);
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(39, 155, 72, 0.2), rgba(39, 155, 72, 0.05));
    bottom: 15%;
    left: 8%;
    animation: floatAnimation 12s ease-in-out infinite 1s;
    border: 1px solid rgba(39, 155, 72, 0.1);
    box-shadow: 0 10px 30px rgba(39, 155, 72, 0.1);
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    top: 35%;
    left: 15%;
    animation: floatAnimation 10s ease-in-out infinite 2s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-screens {
    position: relative;
    height: 600px;
    width: 500px;
    max-width: 100%;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    animation: fadeInRight 1s ease-out;
    overflow: visible;
}

.hero-screen {
    position: absolute;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 10px solid white;
    height: 520px;
    max-height: 80vh;
    max-width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.hero-screen.screen-1 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    animation: heroScreen1Float 6s ease-in-out infinite;
}

.hero-screen.screen-2 {
    right: 0;
    top: 50%;
    transform: translate(20%, -50%) rotate(15deg) translateZ(-50px);
    z-index: 3;
    filter: brightness(0.95);
    opacity: 0.95;
    height: 480px;
    animation: heroScreen2Float 6s ease-in-out infinite 0.5s;
}

.hero-screen.screen-3 {
    left: 0;
    top: 50%;
    transform: translate(-20%, -50%) rotate(-15deg) translateZ(-50px);
    z-index: 3;
    filter: brightness(0.95);
    opacity: 0.95;
    height: 480px;
    animation: heroScreen3Float 6s ease-in-out infinite 1s;
}

.hero-screen.screen-4 {
    left: 50%;
    top: 60%;
    transform: translate(-50%, 0%) translateZ(-100px);
    z-index: 2;
    filter: brightness(0.9);
    opacity: 0.9;
    height: 440px;
    animation: heroScreen4Float 6s ease-in-out infinite 1.5s;
}

@keyframes heroScreen1Float {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -60%);
    }
}

@keyframes heroScreen2Float {
    0%, 100% {
        transform: translate(20%, -50%) rotate(15deg) translateZ(-50px);
    }
    50% {
        transform: translate(20%, -55%) rotate(18deg) translateZ(-40px);
    }
}

@keyframes heroScreen3Float {
    0%, 100% {
        transform: translate(-20%, -50%) rotate(-15deg) translateZ(-50px);
    }
    50% {
        transform: translate(-20%, -55%) rotate(-18deg) translateZ(-40px);
    }
}

@keyframes heroScreen4Float {
    0%, 100% {
        transform: translate(-50%, 0%) translateZ(-100px);
    }
    50% {
        transform: translate(-50%, -5%) translateZ(-90px);
    }
}

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    perspective: 1000px;
}

.floating-veg {
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.veg1 {
    top: 10%;
    left: 10%;
    width: 60px;
    animation-delay: 0s;
    animation-name: float1;
}

.veg2 {
    top: 60%;
    right: 15%;
    width: 80px;
    animation-delay: 1s;
    animation-name: float2;
}

.veg3 {
    bottom: 20%;
    left: 20%;
    width: 70px;
    animation-delay: 2s;
    animation-name: float3;
}

.veg4 {
    top: 30%;
    left: 5%;
    width: 50px;
    animation-delay: 1.5s;
    animation-name: float4;
}

.veg5 {
    bottom: 10%;
    right: 10%;
    width: 60px;
    animation-delay: 0.5s;
    animation-name: float5;
}

.shape {
    position: absolute;
    z-index: 0;
    opacity: 0.05;
}

.shape1 {
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape2 {
    bottom: 15%;
    left: 15%;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.shape3 {
    top: 60%;
    right: 25%;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.shape4 {
    top: 30%;
    left: 20%;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: rotate(45deg);
}

.shape5 {
    bottom: 30%;
    right: 15%;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@keyframes float1 {
    0% {
        transform: translateY(0) rotate(0deg) translateZ(0);
    }
    50% {
        transform: translateY(-25px) rotate(8deg) translateZ(20px);
    }
    100% {
        transform: translateY(0) rotate(0deg) translateZ(0);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0) rotate(0deg) translateZ(0);
    }
    50% {
        transform: translateY(20px) rotate(-5deg) translateZ(30px);
    }
    100% {
        transform: translateY(0) rotate(0deg) translateZ(0);
    }
}

@keyframes float3 {
    0% {
        transform: translateY(0) rotate(0deg) translateZ(0);
    }
    50% {
        transform: translateY(-15px) rotate(10deg) translateZ(15px);
    }
    100% {
        transform: translateY(0) rotate(0deg) translateZ(0);
    }
}

@keyframes float4 {
    0% {
        transform: translateX(0) rotate(0deg) translateZ(0);
    }
    50% {
        transform: translateX(20px) rotate(15deg) translateZ(25px);
    }
    100% {
        transform: translateX(0) rotate(0deg) translateZ(0);
    }
}

@keyframes float5 {
    0% {
        transform: translateX(0) rotate(0deg) translateZ(0);
    }
    50% {
        transform: translateX(-25px) rotate(-12deg) translateZ(20px);
    }
    100% {
        transform: translateX(0) rotate(0deg) translateZ(0);
    }
}

@keyframes deviceFloat {
    0% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
    }
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
}

/* Simplified animations */

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Download Section */
.download-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.download-text {
    flex: 1;
    max-width: 600px;
}

.download-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
}

.download-text h2 .klin {
    color: #ff3131;
}

.download-text h2 .cart {
    color: #279b48;
}

.download-text p {
    color: var(--gray-color);
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.6;
}

.download-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    flex: 1;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(39, 155, 72, 0.08);
}

.stat h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.stat p {
    font-size: 15px;
    margin-bottom: 0;
    color: #666;
}

.download-qr {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.qr-box {
    text-align: center;
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 200px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.qr-box:first-child {
    border-top: 4px solid #ff3131;
}

.qr-box:last-child {
    border-top: 4px solid #279b48;
}

.qr-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.qr-box h4 {
    font-weight: 600;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.qr-box:first-child h4 {
    color: #ff3131;
}

.qr-box:last-child h4 {
    color: #279b48;
}

.qr-code {
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.platform-logo-container {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qr-box:first-child .platform-logo-container {
    background: linear-gradient(135deg, #ff3131, #ff6b6b);
}

.qr-box:last-child .platform-logo-container {
    background: linear-gradient(135deg, #279b48, #3dc56b);
}

.platform-logo {
    font-size: 20px !important;
    color: white;
}

.qr-box:hover .platform-logo-container {
    transform: scale(1.1);
}

/* Features Section */
.features-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(39, 155, 72, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 49, 49, 0.03) 0%, transparent 50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 5;
}

.feature-card {
    background-color: var(--white-color);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transition: height 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(39, 155, 72, 0.15);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(39, 155, 72, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(39, 155, 72, 0.2);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-card:hover .feature-icon i {
    color: var(--white-color);
}



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

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    transition: var(--transition);
}

.feature-card p {
    color: var(--gray-color);
    font-size: 15px;
    transition: var(--transition);
}

/* App Screens Showcase Section */
.app-screens-showcase {
    background-color: #ffffff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.app-screens-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(39, 155, 72, 0.03), transparent);
    opacity: 0.5;
}

.app-screens-slider-container {
    position: relative;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.app-screens-slider {
    width: 100%;
    margin: 0 auto;
    display: flex;
    animation: scrollScreens 30s linear infinite;
}

.screen-item {
    flex: 0 0 auto;
    width: 250px;
    text-align: center;
    padding: 0 15px;
    outline: none;
    max-width: 100%;
}

.screen-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 500px; /* Fixed height for all screens */
}

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



/* Slick slider custom styles */
.slick-slide {
    margin: 0 15px;
}

.slick-list {
    margin: 0 -15px;
}

.slick-track {
    display: flex;
    align-items: center;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.3;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background-color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .screen-wrapper {
        height: 450px;
    }

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

@media (max-width: 768px) {
    .screen-wrapper {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .screen-wrapper {
        height: 350px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

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

    .feature-card h3 {
        font-size: 20px;
    }
}

/* App Showcase Section */
.app-showcase-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.app-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(39, 155, 72, 0.03), transparent 70%),
        linear-gradient(225deg, rgba(255, 49, 49, 0.03), transparent 70%);
    z-index: 1;
}

.app-showcase-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
    gap: 60px;
    overflow: visible;
    padding: 0;
}

.app-text {
    flex: 0 0 45%;
    position: relative;
    max-width: 45%;
    min-width: 300px;
    padding-right: 40px;
}

.app-text-badge {
    display: inline-block;
    color: #ff3131;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
}

.app-text-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff3131;
}

.app-text h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 50px;
    position: relative;
    color: #222;
    font-weight: 800;
}

.app-text h2:first-child {
    margin-top: 0;
}

.app-text h2 span {
    color: #279b48;
}

.app-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
    max-width: 90%;
}

.app-features-list {
    margin-bottom: 50px;
}

.app-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    padding: 15px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.app-features-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.app-features-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(39, 155, 72, 0.1);
}

.app-features-list li:hover::before {
    opacity: 1;
}

.app-features-list li i {
    color: var(--white-color);
    margin-right: 20px;
    font-size: 18px;
    background: var(--gradient-primary);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-colored);
    transition: all 0.4s ease;
}

.app-features-list li:hover i {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(39, 155, 72, 0.2);
}

.app-features-list li span {
    font-size: 17px;
    font-weight: 500;
    color: var(--dark-color);
}

.app-text .btn-primary {
    margin-top: 30px;
    display: inline-block;
    background: linear-gradient(90deg, #279b48, #34c85d);
    color: white;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(39, 155, 72, 0.2);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.app-text .btn-primary i {
    margin-right: 10px;
    font-size: 16px;
}

.app-text .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(39, 155, 72, 0.3);
}

.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    border-color: var(--accent-color);
    background-color: transparent;
    color: var(--white-color);
    box-shadow: var(--shadow-accent);
}

.app-screens {
    flex: 1;
    position: relative;
    height: 600px;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    margin-left: 30px;
    padding: 0;
    overflow: visible;
}

.screen-slider {
    position: relative;
    width: 280px;
    height: 500px;
    perspective: 1000px;
    transform-style: preserve-3d;
    margin: 0 auto;
}

.screen-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.8s ease;
    opacity: 0;
    transform: translateX(100%) scale(0.8);
    z-index: 1;
    border: 10px solid white;
}

.screen-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 5;
}

.screen-slide.prev {
    opacity: 0.7;
    transform: translateX(-50%) scale(0.9) rotateY(10deg);
    z-index: 4;
}

.screen-slide.next {
    opacity: 0.7;
    transform: translateX(50%) scale(0.9) rotateY(-10deg);
    z-index: 4;
}

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

.screen-label {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-controls {
    margin-top: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(39, 155, 72, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Auto-sliding animation */
@keyframes slideAnimation {
    0%, 20% {
        opacity: 1;
        transform: translateX(0) scale(1);
        z-index: 5;
    }
    25%, 45% {
        opacity: 0.7;
        transform: translateX(-100%) scale(0.8);
        z-index: 1;
    }
    50%, 70% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
        z-index: 1;
    }
    75%, 95% {
        opacity: 0.7;
        transform: translateX(80%) scale(0.9) rotateY(-10deg);
        z-index: 4;
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        z-index: 5;
    }
}

/* Order Tracking Section - Modern 2025 Design */
.tracking-section {
    background-color: #f8f9fa;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.tracking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(39, 155, 72, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 49, 49, 0.03) 0%, transparent 30%);
}

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

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(39, 155, 72, 0.2);
}

.tracking-text {
    flex: 1;
}

.tracking-text h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
}

.tracking-text > p {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 40px;
    line-height: 1.7;
}

.tracking-features {
    margin-bottom: 40px;
}

.tracking-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.tracking-features li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(39, 155, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.tracking-features li:hover .feature-icon {
    transform: scale(1.1);
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.feature-text p {
    font-size: 15px;
    color: var(--gray-color);
    line-height: 1.5;
}

/* Modern Visual Elements */
.tracking-visual {
    flex: 1;
    position: relative;
    height: 600px;
}

.phone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 560px;
    background-color: #222;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    padding: 12px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background-color: #222;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 3;
}

.tracking-card {
    position: absolute;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.status-card {
    top: 20%;
    right: -30px;
    width: 300px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard1 6s ease-in-out infinite;
}

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

.card-icon {
    width: 45px;
    height: 45px;
    background: rgba(39, 155, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.progress-container {
    width: 100%;
}

.progress-bar {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: var(--gradient-primary);
    border-radius: 4px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}



@media (max-width: 1200px) {
    .tracking-visual {
        height: 550px;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .status-card {
        width: 260px;
    }

    .map-card {
        width: 240px;
        height: 180px;
    }
}

@media (max-width: 992px) {
    .tracking-content {
        flex-direction: column;
        gap: 80px;
    }

    .tracking-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .tracking-features li {
        text-align: left;
    }

    .tracking-visual {
        height: 650px;
        width: 100%;
        margin-bottom: 30px;
    }

    .status-card {
        right: 5%;
    }

    .map-card {
        left: 5%;
    }
}

/* Download Banner - Modern 2025 Design */
.download-banner-wrapper {
    background: linear-gradient(135deg, #279b48, #34c85d, #ff3131);
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
}

.download-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    z-index: 1;
}

.download-banner {
    color: var(--white-color);
    position: relative;
    height: 300px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    z-index: 2;
}

.banner-content {
    width: auto;
    max-width: 50%;
    z-index: 10;
    position: relative;
    animation: fadeInLeft 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.banner-text {
    text-align: left;
    width: auto;
    display: inline-block;
}

.banner-text-line {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
}

.banner-text h2 {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.banner-text h2 .klin {
    color: #ff3131;
    font-weight: 700;
}

.banner-text h2 .cart {
    color: #015e1c;
    font-weight: 700;
}

.banner-text p {
    font-size: 17px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.banner-text p:last-child {
    margin-bottom: 0;
}

.banner-buttons {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    margin-top: 30px;
}

.btn-store {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 15px 25px;
}

.btn-store i {
    font-size: 24px;
    margin-right: 12px;
    color: #279b48;
}

.btn-store span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.btn-store:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-store.ios i {
    font-size: 24px;
}

.banner-app-images {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: visible;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-app-images .app-screen {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 6px solid white;
    object-fit: contain;
    transition: all 0.5s ease;
    max-width: 100%;
}

.banner-app-images .first-screen {
    position: absolute;
    top: -60px;
    right: 150px;
    height: 320px;
    z-index: 2;
    transform: rotate(-8deg);
    animation: floatApp1 6s ease-in-out infinite;
}

@keyframes floatApp1 {
    0%, 100% {
        transform: rotate(-8deg) translateY(0);
    }
    50% {
        transform: rotate(-8deg) translateY(-15px);
    }
}

@keyframes floatScreen1 {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
    50% {
        transform: translateX(-50%) translateY(-15px) rotate(0deg);
    }
}

@keyframes floatScreen2 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(-8deg);
    }
    50% {
        transform: translateX(0) translateY(-10px) rotate(-10deg);
    }
}

@keyframes floatScreen3 {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(8deg);
    }
    50% {
        transform: translateX(0) translateY(-10px) rotate(10deg);
    }
}

@keyframes bannerDeviceFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(2deg) scale(1.02);
    }
    50% {
        transform: translateY(-25px) rotate(0deg) scale(1.05);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg) scale(1.02);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer - Landing Page Style 2025 */
footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    position: relative;
}

.landing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-download {
    display: flex;
    align-items: center;
}

.download-badges {
    display: flex;
    gap: 25px;
}

.store-badge img {
    height: 40px;
    transition: all 0.3s ease;
}

.store-badge:hover img {
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}



.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-copyright p {
    color: #777;
    font-size: 14px;
}

.footer-copyright .klin {
    color: #ff3131;
    font-weight: 600;
}

.footer-copyright .cart {
    color: #279b48;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-content {
        flex-direction: column;
        gap: 0;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

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

    .hero-platform-icons {
        justify-content: center;
    }

    .hero-app-badges {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-screens {
        height: 500px;
        width: 100%;
    }

    .hero-screen {
        height: 450px;
    }

    .hero-screen.screen-1 {
        height: 450px;
    }

    .hero-screen.screen-2 {
        height: 400px;
        right: 10%;
    }

    .hero-screen.screen-3 {
        height: 400px;
        left: 10%;
    }

    .hero-screen.screen-4 {
        height: 380px;
    }

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

    .download-content,
    .app-showcase-content {
        flex-direction: column;
    }

    .download-text,
    .app-text {
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
        min-width: 100%;
        text-align: center;
    }

    .app-screens {
        height: 400px;
        margin-left: 0;
        padding: 0;
        min-width: 100%;
        overflow: visible;
    }

    .landing-footer {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo-section {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .hero-platform-icons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-app-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-item {
        padding: 12px 15px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-screens {
        height: 450px;
    }

    .hero-screen {
        height: 350px;
        border-width: 8px;
    }

    .hero-screen.screen-1 {
        height: 380px;
    }

    .hero-screen.screen-2 {
        height: 320px;
        right: 5%;
    }

    .hero-screen.screen-3 {
        height: 320px;
        left: 5%;
    }

    .hero-screen.screen-4 {
        display: none;
    }

    .download-stats {
        flex-direction: column;
        gap: 15px;
    }

    .download-qr {
        flex-direction: column;
    }

    .download-banner {
        height: auto;
        padding: 60px 20px;
    }

    .banner-content {
        width: 100%;
        text-align: center;
    }

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

    .banner-text p {
        max-width: 100%;
        margin: 0 auto 25px;
    }



    .banner-buttons {
        justify-content: center;
    }

    .banner-app-images {
        display: none;
    }

    .download-banner {
        height: auto;
        padding: 60px 20px;
    }

    .banner-content {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }

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

    .banner-text p {
        max-width: 100%;
        margin: 0 auto 25px;
    }

    .banner-buttons {
        justify-content: center;
    }

    .banner-app-images {
        position: absolute;
        width: 100%;
        height: 200px;
        top: 100px;
        bottom: auto;
        overflow: visible;
    }

    .banner-app-images .first-screen {
        top: -30px;
        bottom: auto;
        right: auto;
        left: 50%;
        height: 380px;
        transform: translateX(-50%) rotate(-8deg);
    }

    .download-badges {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .stat-item {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-platform-icons {
        flex-direction: column;
        align-items: center;
    }

    .hero-platform-icon {
        width: 100%;
        max-width: 150px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav-column h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-top {
        padding: 60px 0 40px;
    }

    .footer-newsletter {
        padding: 20px;
    }

    .hero-screens {
        height: 400px;
    }

    .hero-screen.screen-1 {
        height: 320px;
    }

    .hero-screen.screen-2,
    .hero-screen.screen-3 {
        display: none;
    }

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

    .app-screens {
        height: 350px;
        margin-left: 0;
        padding: 0;
        width: 100%;
        overflow: visible;
    }

    .screen-slider {
        width: 220px;
        height: 400px;
        margin: 0 auto;
    }

    .screen-slide {
        border-width: 6px;
    }

    .screen-slide.prev,
    .screen-slide.next {
        opacity: 0.5;
        transform: translateX(0) scale(0.8);
    }

    .footer-column {
        flex-basis: 100%;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .banner-text h2 {
        font-size: 28px;
    }

    .download-banner {
        height: 400px;
    }

    .banner-app-images {
        top: 150px;
        overflow: visible;
    }

    .banner-app-images .second-screen {
        display: none;
    }

    .banner-app-images .first-screen {
        top: -50px;
        height: 280px;
        left: 40%;
        transform: translateX(-100%) rotate(-8deg);
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

@keyframes scrollScreens {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


.breadcrumb-bg{
    background: linear-gradient(135deg, #279b48, #34c85d, #ff3131);
    width: 100%;
    position: relative;
    padding: 160px 0px 100px;
}

.breadcrumb-bg h1{
    text-align: center;
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.csm-data h3{
    color: #015e1c;
    margin-bottom: 15px;
}

.csm-data p{
    margin-bottom: 10px;
}