/* GENEL STILLER */
:root {
    --primary-color: #1e88e5;
    --primary-color-dark: #1565c0;
    --secondary-color: #0d2340;
    --accent-color: #00c9ff;
    --accent-color-alt: #20e3b2;
    --light-color: #f8fcff;
    --dark-color: #0a1622;
    --gray-color: #e9ecef;
    --text-color: #3a4a5f;
    --heading-color: #1a2a3f;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 15px 35px rgba(30, 136, 229, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    background-color: rgba(30, 136, 229, 0.1);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 17px;
}

.section-header::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

section {
    padding: 120px 0;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
}

.btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.3);
}

.btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 25px 0;
}

header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    border-bottom: 1px solid rgba(233, 236, 239, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.logo a::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-alt));
    border-radius: 12px;
    top: 50%;
    left: -5px;
    transform: translateY(-50%) rotate(10deg);
    z-index: -1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo a:hover::before {
    transform: translateY(-50%) rotate(20deg) scale(1.1);
    opacity: 0.9;
}

header.sticky .logo a {
    color: var(--heading-color);
}

header.sticky .logo a::before {
    opacity: 1;
}

.logo span {
    color: white;
    font-weight: 300;
    margin-left: 2px;
}

header.sticky .logo span {
    color: var(--accent-color);
}

.menu {
    position: relative;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu ul li {
    margin: 0;
    position: relative;
}

.menu ul li a {
    color: white;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu ul li a:hover {
    color: var(--accent-color);
}

header.sticky .menu ul li a {
    color: var(--heading-color);
}

.menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color-alt));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.menu ul li a:hover::after, 
.menu ul li a.active::after {
    width: 100%;
}

.menu ul li a.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 10px 25px;
    color: white;
    margin-left: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu ul li a.nav-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-alt));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 201, 255, 0.3);
}

header.sticky .menu ul li a.nav-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

header.sticky .mobile-menu-btn {
    color: var(--heading-color);
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -310px;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        z-index: 1001;
        padding: 100px 30px 30px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu ul li {
        width: 100%;
    }
    
    .menu ul li a {
        color: var(--heading-color);
        display: block;
        padding: 12px;
        text-align: center;
        font-size: 16px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .menu ul li a:hover {
        background: rgba(0, 0, 0, 0.05);
    }
    
    .menu ul li a.active {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        box-shadow: 0 5px 15px rgba(0, 201, 255, 0.3);
    }
    
    .menu ul li a.nav-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        margin-left: 0;
        margin-top: 15px;
    }
    
    .menu ul li a::after {
        display: none;
    }
}

/* HERO SECTION - ENHANCED */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    z-index: 1;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 201, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(32, 227, 178, 0.3) 0%, transparent 50%),
        url('../img/hero-bg-texture.png');
    opacity: 1;
    z-index: -1;
    animation: pulse-glow 8s infinite alternate ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: float 15s infinite alternate ease-in-out;
    z-index: -1;
    filter: blur(30px);
}

@keyframes pulse-glow {
    0% {
        opacity: 0.7;
        background-position: 0% 0%;
    }
    50% {
        opacity: 1;
        background-position: 100% 10%;
    }
    100% {
        opacity: 0.7;
        background-position: 0% 0%;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-5%, 5%) scale(1.1) rotate(5deg);
    }
    100% {
        transform: translate(5%, -5%) scale(0.9) rotate(-5deg);
    }
}

.hero-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: url('../img/hero.jpg') no-repeat right center;
    background-size: cover;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
    transform: translateZ(-50px) rotateY(-5deg);
    transform-style: preserve-3d;
    animation: hero-shape-float 15s infinite alternate ease-in-out;
}

@keyframes hero-shape-float {
    0% {
        transform: translateZ(-50px) rotateY(-5deg);
        filter: brightness(0.9);
    }
    50% {
        transform: translateZ(-40px) rotateY(-2deg);
        filter: brightness(1);
    }
    100% {
        transform: translateZ(-50px) rotateY(-5deg);
        filter: brightness(0.9);
    }
}

.hero-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                var(--primary-color) 0%, 
                rgba(0,0,0,0.4) 50%, 
                rgba(0,0,0,0.7) 100%);
    z-index: 1;
    opacity: 0.85;
}

.hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    perspective: 1000px;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: bubble-float 15s infinite ease-in;
    transform-style: preserve-3d;
}

.bubble:nth-child(1) {
    width: 150px;
    height: 150px;
    left: 10%;
    top: 20%;
    animation-duration: 22s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
}

.bubble:nth-child(2) {
    width: 80px;
    height: 80px;
    left: 25%;
    top: 60%;
    animation-duration: 16s;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(32, 227, 178, 0.05), rgba(32, 227, 178, 0.1));
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 75%;
    top: 30%;
    animation-duration: 21s;
    animation-delay: 1s;
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.05), rgba(0, 201, 255, 0.1));
}

.bubble:nth-child(4) {
    width: 120px;
    height: 120px;
    left: 40%;
    top: 10%;
    animation-duration: 18s;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
}

.bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 85%;
    top: 70%;
    animation-duration: 14s;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.05), rgba(0, 201, 255, 0.1));
}

.bubble:nth-child(6) {
    width: 100px;
    height: 100px;
    left: 50%;
    top: 80%;
    animation-duration: 24s;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(32, 227, 178, 0.05), rgba(32, 227, 178, 0.1));
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) translateX(0) rotate(0) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
        transform: translateY(-50px) translateX(10px) rotate(20deg) scale(1.1);
    }
    40% {
        transform: translateY(-100px) translateX(20px) rotate(45deg) scale(1);
    }
    60% {
        transform: translateY(-200px) translateX(-20px) rotate(90deg) scale(0.9);
    }
    80% {
        transform: translateY(-300px) translateX(30px) rotate(135deg) scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-500px) translateX(-30px) rotate(180deg) scale(1);
        opacity: 0;
    }
}

.hero-content {
    max-width: 700px;
    color: white;
    z-index: 1;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(0, 201, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    letter-spacing: 1px;
    transform: translateZ(20px);
    transform-style: preserve-3d;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(10px);
    transform-style: preserve-3d;
}

.hero-buttons .btn.primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-alt));
    box-shadow: 0 10px 25px rgba(0, 201, 255, 0.3);
}

.hero-buttons .btn.primary:hover {
    box-shadow: 0 15px 35px rgba(0, 201, 255, 0.4);
    transform: translateY(-5px) translateZ(20px);
}

.hero-buttons .btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.hero-buttons .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.2);
    transform: translateY(-5px) translateZ(20px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

.hero-stat-item {
    position: relative;
    z-index: 2;
    transform: translateZ(10px);
    transform-style: preserve-3d;
}

.hero-stat-item h3 {
    font-size: 42px;
    color: white;
    margin-bottom: 5px;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-item p {
    font-size: 14px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
    backdrop-filter: blur(5px);
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: white;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    animation: mouse-wheel 1.5s ease infinite;
}

@keyframes mouse-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-arrow span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin: -6px auto;
    animation: mouse-scroll 1.5s infinite;
}

.scroll-arrow span:nth-child(1) {
    animation-delay: .1s;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: .2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* FEATURES SECTION - MODERN */
.features {
    background-color: white;
    position: relative;
    padding: 150px 0 120px;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(30, 136, 229, 0.03), transparent 400px),
        radial-gradient(circle at 90% 90%, rgba(0, 201, 255, 0.03), transparent 400px),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e88e5' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.features .section-header {
    margin-bottom: 80px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) translateY(-20px);
    box-shadow: 0 30px 60px rgba(30, 136, 229, 0.12);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.9);
}

.feature-card .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.08), rgba(0, 201, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 34px;
    color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    transform: translateZ(20px);
    position: relative;
}

.feature-card .icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed var(--primary-color);
    opacity: 0.25;
    top: 0;
    left: 0;
    animation: rotate-icon 15s linear infinite;
}

@keyframes rotate-icon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.feature-card:hover .icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateZ(30px) scale(1.1);
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-weight: 700;
    transform: translateZ(15px);
    position: relative;
}

.feature-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    transform: translateZ(10px);
}

.features-cta {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 60px 50px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 20px 50px rgba(30, 136, 229, 0.3);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    opacity: 0.2;
    z-index: 0;
}

.features-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0) 70%);
    z-index: 0;
}

.features-cta-content {
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
}

.features-cta-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.features-cta-content p {
    font-size: 18px;
    margin-bottom: 0;
    opacity: 0.9;
}

.features-cta .btn {
    background-color: white;
    color: var(--primary-color);
    white-space: nowrap;
    font-weight: 700;
    padding: 16px 40px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
    overflow: hidden;
    border-radius: 12px;
    border: none;
}

.features-cta .btn:hover {
    background-color: var(--light-color);
    color: var(--accent-color);
    transform: translateZ(25px) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.features-cta .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.features-cta .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 100px 0 80px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .features-cta-content {
        margin-bottom: 30px;
    }
    
    .features-cta-content h3 {
        font-size: 24px;
    }
    
    .features-cta-content p {
        font-size: 16px;
    }
    
    .features-cta .btn {
        width: 100%;
    }
}

/* ABOUT SECTION */
.about {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05), rgba(0, 201, 255, 0.05));
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05), rgba(0, 201, 255, 0.05));
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--hover-shadow);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.about-text p {
    margin-bottom: 25px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--text-color);
    font-weight: 500;
}

/* SERVICES SECTION */
.services {
    background-color: white;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(233, 236, 239, 0.5);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(30, 136, 229, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-content p {
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* PROJECTS SECTION */
.projects {
    background-color: var(--light-color);
    position: relative;
}

.project-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 25px;
    border: none;
    background-color: white;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 5px;
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.project-image {
    height: 300px;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-info {
    transform: translateY(20px);
    transition: var(--transition);
}

.project-item:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
}

.project-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 14px;
}

/* TESTIMONIALS SECTION */
.testimonials {
    background-color: var(--bg-light-color);
    padding: 80px 0;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    overflow-x: hidden;
    position: relative;
}

.testimonial-item {
    flex: 0 0 100%;
    padding: 20px;
    transition: transform 0.5s ease;
}

.testimonial-content {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(233, 236, 239, 0.5);
}

.testimonial-content:hover {
    box-shadow: var(--hover-shadow);
    border-color: rgba(30, 136, 229, 0.1);
}

.quote {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.client-info p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-color);
    font-style: normal;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
}

.prev-btn:hover, .next-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.3);
}

/* CONTACT SECTION */
.contact {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(0, 201, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.contact-item:hover .icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: scale(1.1);
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
}

.social-media a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.3);
}

.contact-form {
    background-color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(233, 236, 239, 0.5);
}

.contact-form:hover {
    box-shadow: var(--hover-shadow);
    border-color: rgba(30, 136, 229, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* SUCCESS MESSAGE */
.success-message {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

.success-message i {
    margin-right: 10px;
    font-size: 20px;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, var(--secondary-color), #051224);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo a {
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-logo p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: white;
        z-index: 1001;
        padding: 80px 20px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu ul {
        flex-direction: column;
    }
    
    .menu ul li {
        margin: 0 0 15px;
    }
    
    .menu ul li a {
        color: var(--heading-color);
        display: block;
        padding: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .feature-cards,
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* FEATURES CTA */
.features-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.2);
}

.features-cta-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.features-cta-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

.features-cta .btn {
    background-color: white;
    color: var(--primary-color);
    white-space: nowrap;
}

.features-cta .btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* ABOUT POINTS */
.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin: 25px 0 30px;
}

.about-point {
    display: flex;
    align-items: center;
}

.about-point i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.about-point span {
    font-weight: 500;
}

.highlight-text {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--accent-color);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.3);
    z-index: 1;
}

.experience-badge span {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
    margin: 5px 0 0;
    text-align: center;
    line-height: 1.2;
}

/* SERVICE NUMBER */
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    opacity: 0.1;
    color: var(--primary-color);
    z-index: 1;
}

.service-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8fcff' fill-opacity='1' d='M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
}

/* COUNTER SECTION */
.counter-section {
    background: linear-gradient(rgba(15, 32, 65, 0.9), rgba(15, 32, 65, 0.9)), url('../img/counter-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    color: white;
}

.counter-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 35, 64, 0.7);
}

.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.counter-item {
    text-align: center;
}

.counter-item i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #00c9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-item h4 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

/* PROJECT CATEGORY & BUTTON */
.project-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(30, 136, 229, 0.2);
    color: white;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-btn {
    background-color: white;
    color: var(--heading-color);
}

.project-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.project-cta {
    text-align: center;
    margin-top: 50px;
}

/* BRANDS WRAPPER */
.brands-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--gray-color);
}

.brand-item {
    padding: 20px;
    opacity: 0.7;
    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    max-height: 60px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* TESTIMONIAL WRAPPER */
.testimonial-wrapper {
    position: relative;
}

.rating {
    margin-bottom: 15px;
    color: #FFD700;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(rgba(15, 32, 65, 0.9), rgba(15, 32, 65, 0.9)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    color: white;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.cta-content {
    max-width: 60%;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.call-btn {
    background-color: white;
    color: var(--primary-color);
}

.call-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* CONTACT FORM IMPROVEMENTS */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    font-size: 16px;
    color: var(--text-color);
    transition: var(--transition);
    pointer-events: none;
    opacity: 0.7;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label,
.form-group input.has-value ~ label,
.form-group textarea.has-value ~ label,
.form-group select.has-value ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background-color: white;
    padding: 0 5px;
    color: var(--primary-color);
    opacity: 1;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

.form-check label {
    font-size: 14px;
    margin-bottom: 0;
}

.contact-map {
    margin-top: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* FOOTER IMPROVEMENTS */
.footer-top {
    padding-bottom: 50px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-column ul li a i {
    margin-right: 5px;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* ADDITIONAL RESPONSIVE FIXES */
@media (max-width: 1200px) {
    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .features-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .features-cta-content {
        margin-bottom: 20px;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -60px auto 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .counter-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .brands-wrapper {
        justify-content: center;
    }
    
    .brand-item {
        width: 33.3%;
        text-align: center;
    }
}

/* Testimonial Slider */
.testimonials {
    background-color: var(--bg-light-color);
    padding: 80px 0;
    position: relative;
}

/* Features CTA Area Styles */
.features-cta-area {
    padding: 80px 0;
    background-color: var(--bg-light-color);
    position: relative;
    overflow: hidden;
}

.features-cta-area .section-title {
    margin-bottom: 50px;
}

.features-cta-area .feature-cards.special {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.features-cta-area .feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: calc(25% - 20px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.features-cta-area .feature-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.features-cta-area .feature-card .icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.features-cta-area .feature-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--title-color);
}

.features-cta-area .feature-card p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

.cta-content-area {
    text-align: center;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.cta-content-area.animated {
    opacity: 1;
    transform: translateY(0);
}

.cta-content-area .cta-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--title-color);
}

.cta-content-area .cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.cta-content-area .cta-btn:hover {
    background-color: var(--primary-dark-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb-color), 0.4);
}

@media (max-width: 992px) {
    .features-cta-area .feature-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .features-cta-area .feature-card {
        width: 100%;
    }
}
