/* ============================================
   B.M.Tech Media - Premium Website Styles
   ============================================ */

:root {
    --primary: #E500FF;
    --primary-dark: #B800CC;
    --primary-light: #F540FF;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --gray: #888888;
    --light: #f5f5f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #E500FF 0%, #7B2FBE 50%, #E500FF 100%);
    --gradient-2: linear-gradient(135deg, #E500FF, #FF6B6B);
    --shadow: 0 20px 60px rgba(229, 0, 255, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Heebo', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* ============================================
   Preloader
   ============================================ */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    width: 180px;
    animation: pulse 1.5s ease-in-out infinite;
    margin-bottom: 30px;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--dark-3);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ============================================
   Custom Cursor (Desktop only)
   ============================================ */

.custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* ============================================
   Navigation
   ============================================ */

#navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo img {
    height: 100px;
    transition: var(--transition);
}

#navbar.scrolled .nav-logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(229, 0, 255, 0.1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    transition: var(--transition);
}

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

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(229, 0, 255, 0.15);
    border: 1px solid rgba(229, 0, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Heebo', sans-serif;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(229, 0, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(229, 0, 255, 0.1);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 2px;
}

/* ============================================
   Animations
   ============================================ */

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal animations */
.reveal-up,
.reveal-right,
.reveal-left {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-up.revealed,
.reveal-right.revealed,
.reveal-left.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   Marquee
   ============================================ */

.marquee-section {
    padding: 30px 0;
    background: var(--dark-2);
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
    overflow: hidden;
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    gap: 30px;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray);
    white-space: nowrap;
}

.marquee-dot {
    color: var(--primary) !important;
}

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

/* ============================================
   Container
   ============================================ */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   Section Styles
   ============================================ */

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding-right: 50px;
}

.section-label::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header .section-label {
    padding-right: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */

.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--dark-2);
    border-radius: 16px;
    border: 1px solid var(--dark-3);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: rgba(229, 0, 255, 0.3);
    transform: translateX(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(229, 0, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--gray);
}

/* About Visual */
.about-visual {
    position: relative;
    height: 500px;
}

.about-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-img-card {
    position: absolute;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.about-img-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(229, 0, 255, 0.3);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
    color: var(--white);
}

.about-img-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.about-img-card p {
    font-size: 14px;
    color: var(--gray);
}

.card-1 {
    top: 0;
    right: 10%;
    width: 220px;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 50%;
    transform: translateY(-50%);
    width: 220px;
    animation: float2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 0;
    right: 20%;
    width: 220px;
    animation: float3 8s ease-in-out infinite;
}

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

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

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

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

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: -50px;
    left: -50px;
    animation: shapePulse 4s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    bottom: 50px;
    right: -30px;
    animation: shapePulse 5s ease-in-out infinite 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary);
    top: 40%;
    left: 20%;
    animation: shapePulse 6s ease-in-out infinite 2s;
}

@keyframes shapePulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    padding: 120px 0;
    background: var(--dark-2);
    position: relative;
}

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

.service-card {
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(229, 0, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(229, 0, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--white);
}

.service-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 16px;
    filter: blur(20px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.service-card:hover .service-glow {
    opacity: 0.2;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.service-arrow {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(229, 0, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.stats-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    color: rgba(229, 0, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 50px 20px;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 0, 255, 0.2);
}

.stat-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    display: inline;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    margin-top: 10px;
}

/* ============================================
   Process Section
   ============================================ */

.process-section {
    padding: 120px 0;
    background: var(--dark-2);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    right: 45px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--dark-4);
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 90px;
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 2px solid var(--dark-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(229, 0, 255, 0.3);
}

.step-content {
    padding-top: 20px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    padding: 120px 0;
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 14px;
    background: rgba(229, 0, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--gradient);
    color: var(--white);
}

.contact-item h4 {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient);
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: 24px;
    padding: 50px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--dark-4);
    color: var(--white);
    font-size: 16px;
    font-family: 'Heebo', sans-serif;
    outline: none;
    transition: var(--transition);
    direction: rtl;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}

.form-group label {
    position: absolute;
    top: 16px;
    right: 0;
    color: var(--gray);
    font-size: 16px;
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--primary);
}

.form-line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.4s ease;
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    width: 100%;
}

.form-group textarea {
    resize: none;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--dark-3);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--gray);
    font-size: 15px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.footer-bottom {
    border-top: 1px solid var(--dark-3);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

/* ============================================
   WhatsApp Float
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    z-index: 100;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    animation: whatsappBounce 2s ease-in-out infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */

@media (max-width: 768px) {
    .custom-cursor,
    .cursor-follower {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 50px);
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

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

    .btn {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .marquee-content span {
        font-size: 14px;
    }

    .about-section,
    .services-section,
    .process-section,
    .contact-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 40px);
    }

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

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

    .service-card {
        padding: 30px 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 30px 15px;
    }

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

    .stat-icon {
        font-size: 28px;
    }

    .about-visual {
        height: 350px;
    }

    .card-1 {
        right: 5%;
        width: 180px;
    }

    .card-2 {
        right: 40%;
        width: 180px;
    }

    .card-3 {
        right: 15%;
        width: 180px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding-right: 0;
    }

    .process-line {
        display: none;
    }

    .step-number {
        width: 70px;
        min-width: 70px;
        height: 70px;
        font-size: 22px;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
}

/* ============================================
   RESPONSIVE - Small Mobile
   ============================================ */

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .about-visual {
        height: 300px;
    }

    .card-1, .card-2, .card-3 {
        width: 160px;
        padding: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .about-img-card h4 {
        font-size: 15px;
    }

    .about-img-card p {
        font-size: 12px;
    }

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

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

    .stat-plus {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 18px;
    }
}

/* ============================================
   Tilt Effect (JS adds inline style)
   ============================================ */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}
