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

:root {
    --primary: #F79633;
    --primary-dark: #e8851a;
    --primary-light: #ffb366;
    --secondary: #00B8BF;
    --secondary-dark: #009ea5;
    --secondary-light: #33d1d9;
    --dark: #0a0a2a;
    --dark-light: #1a1a3e;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
}

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-light);
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

.logo-icon {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

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

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

.mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


















/* Hero Slider */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-slider {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

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

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(247,150,51,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(0,184,191,0.15) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 100px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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


/* Hero Title - Reduced font size for single line */
.hero-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-title .gradient-text {
    font-size: 38px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Specifically for Slide 3 (longest text) */
.slide-3 .hero-title {
    font-size: 32px;
}

.slide-3 .hero-title .gradient-text {
    font-size: 32px;
}

/* Slide 4 slightly smaller */
.slide-4 .hero-title {
    font-size: 34px;
}

.slide-4 .hero-title .gradient-text {
    font-size: 34px;
}

/* For mobile devices */
@media (max-width: 768px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-title .gradient-text {
        font-size: 26px;
    }
    
    .slide-3 .hero-title,
    .slide-4 .hero-title {
        font-size: 22px;
    }
    
    .slide-3 .hero-title .gradient-text,
    .slide-4 .hero-title .gradient-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }
    
    .hero-title .gradient-text {
        font-size: 20px;
    }
    
    .slide-3 .hero-title,
    .slide-4 .hero-title {
        font-size: 18px;
    }
    
    .slide-3 .hero-title .gradient-text,
    .slide-4 .hero-title .gradient-text {
        font-size: 18px;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    gap: 12px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.trust-badge {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.trust-item i {
    color: var(--secondary);
}

/* Enhanced Slide Content Styling */
.hero-content .hero-title {
    text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.hero-content .hero-text {
    text-shadow: 0 1px 20px rgba(0,0,0,0.15);
}

.hero-badge {
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-badge .dot-pulse {
    background: var(--secondary) !important;
}

/* Slide-specific overlay enhancements */
.slide-1 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 50%, #0d2b4f 100%);
}

.slide-2 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a0a3e 50%, #2a0a4e 100%);
}

.slide-3 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #0a1a3e 50%, #0a2a4e 100%);
}

.slide-4 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a0a2a 50%, #2a0a3e 100%);
}

/* Image overlay for better text readability */
.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,42,0.6) 0%, rgba(10,10,42,0.2) 70%, transparent 100%);
    z-index: 1;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Button hover enhancements */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    box-shadow: 0 4px 25px rgba(247,150,51,0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 35px rgba(247,150,51,0.45) !important;
}

.btn-outline {
    border-color: rgba(255,255,255,0.4) !important;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.05);
}

.btn-outline:hover {
    border-color: var(--secondary) !important;
    background: rgba(0,184,191,0.15);
    color: var(--secondary) !important;
}

/* Trust badge enhancement */
.trust-item {
    background: rgba(255,255,255,0.06);
    padding: 4px 16px 4px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.05);
}

.trust-item i {
    color: var(--secondary) !important;
}

/* Swiper nav buttons enhancement */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.2);
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.4) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    box-shadow: 0 0 20px rgba(247,150,51,0.4);
}


/* Hero Slider Images */
.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 0;
    align-items: center;
    width: 100%;
    padding: 100px 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 90%;
    padding-right: 40px;
}

.hero-visual {
    position: relative;
    z-index: 3;
}

.industry-showcase {
    display: none;
}

.slide-1 .hero-bg {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 100%);
}

.slide-2 .hero-bg {
    background: linear-gradient(135deg, #0d2b4f 0%, #1a3a5c 100%);
}

.slide-3 .hero-bg {
    background: linear-gradient(135deg, #2a0a3e 0%, #3a1a4e 100%);
}

.slide-4 .hero-bg {
    background: linear-gradient(135deg, #3e0a2a 0%, #4e1a3a 100%);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

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

.tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
}

.services {
    padding: 40px 0;
    background: linear-gradient(135deg, #a5d8f3 0%, #7ec8e3 50%, #5bb5d4 100%);
    scroll-margin-top: 75px;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent 0px,
        transparent 30px,
        rgba(0, 184, 191, 0.06) 30px,
        rgba(0, 184, 191, 0.1) 60px
    );
    animation: shiftGradient 25s linear infinite;
    pointer-events: none;
}

@keyframes shiftGradient {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(3deg);
    }
}

.services .container {
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.service-card {
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: 0.3s;
    position: relative;
    z-index: 3;
    backdrop-filter: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-light);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-icon {
    display: flex;
    gap: 8px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 0;
    flex: 1;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.4;
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 4px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    font-size: 11px;
    color: var(--secondary);
}

.service-card:nth-child(1) {
    background: url('images/background/apps-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.service-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:nth-child(1)::before,
.service-card:nth-child(2)::before,
.service-card:nth-child(3)::before,
.service-card:nth-child(4)::before,
.service-card:nth-child(5)::before,
.service-card:nth-child(6)::before,
.service-card:nth-child(7)::before,
.service-card:nth-child(8)::before,
.service-card:nth-child(9)::before {
    background: rgba(0, 0, 0, 0.78) !important;
}

.service-card:nth-child(1):hover::before {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
}

.service-card:nth-child(2) {
    background: url('images/background/website.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.service-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:nth-child(2):hover::before {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
}

.service-card:nth-child(3) {
    background: url('images/background/mobile.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.service-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:nth-child(3):hover::before {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
}

.service-card:nth-child(4) {
    background: url('images/background/it-management.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.service-card:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:nth-child(4):hover::before {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
}

.service-card:nth-child(5) {
    background: url('images/background/seo.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.service-card:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:nth-child(5):hover::before {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
}

.service-card:nth-child(6) {
    background: url('images/background/saas.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.service-card:nth-child(6)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:nth-child(6):hover::before {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
}

.service-card:nth-child(7) {
    background: url('images/background/staff-augmentation.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.service-card:nth-child(7)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:nth-child(7):hover::before {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
}

.service-card:nth-child(8) {
    background: url('images/background/bpo.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.service-card:nth-child(8)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:nth-child(8):hover::before {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
}

.service-card:nth-child(9) {
    background: url('images/background/standalone.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.service-card:nth-child(9)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: 0.3s ease;
}

.service-card:nth-child(9):hover::before {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
}

.service-card:nth-child(1) .service-icon i,
.service-card:nth-child(1) h3,
.service-card:nth-child(1) p,
.service-card:nth-child(1) .service-features li,
.service-card:nth-child(1) .service-features i,
.service-card:nth-child(2) .service-icon i,
.service-card:nth-child(2) h3,
.service-card:nth-child(2) p,
.service-card:nth-child(2) .service-features li,
.service-card:nth-child(2) .service-features i,
.service-card:nth-child(3) .service-icon i,
.service-card:nth-child(3) h3,
.service-card:nth-child(3) p,
.service-card:nth-child(3) .service-features li,
.service-card:nth-child(3) .service-features i,
.service-card:nth-child(4) .service-icon i,
.service-card:nth-child(4) h3,
.service-card:nth-child(4) p,
.service-card:nth-child(4) .service-features li,
.service-card:nth-child(4) .service-features i,
.service-card:nth-child(5) .service-icon i,
.service-card:nth-child(5) h3,
.service-card:nth-child(5) p,
.service-card:nth-child(5) .service-features li,
.service-card:nth-child(5) .service-features i,
.service-card:nth-child(6) .service-icon i,
.service-card:nth-child(6) h3,
.service-card:nth-child(6) p,
.service-card:nth-child(6) .service-features li,
.service-card:nth-child(6) .service-features i,
.service-card:nth-child(7) .service-icon i,
.service-card:nth-child(7) h3,
.service-card:nth-child(7) p,
.service-card:nth-child(7) .service-features li,
.service-card:nth-child(7) .service-features i,
.service-card:nth-child(8) .service-icon i,
.service-card:nth-child(8) h3,
.service-card:nth-child(8) p,
.service-card:nth-child(8) .service-features li,
.service-card:nth-child(8) .service-features i,
.service-card:nth-child(9) .service-icon i,
.service-card:nth-child(9) h3,
.service-card:nth-child(9) p,
.service-card:nth-child(9) .service-features li,
.service-card:nth-child(9) .service-features i {
    position: relative;
    z-index: 2;
    color: white !important;
}

.service-card:nth-child(1) .service-features i,
.service-card:nth-child(2) .service-features i,
.service-card:nth-child(3) .service-features i,
.service-card:nth-child(4) .service-features i,
.service-card:nth-child(5) .service-features i,
.service-card:nth-child(6) .service-features i,
.service-card:nth-child(7) .service-features i,
.service-card:nth-child(8) .service-features i,
.service-card:nth-child(9) .service-features i {
    color: rgba(255, 255, 255, 0.9) !important;
}

.industries {
    padding: 40px 0;
    background: linear-gradient(135deg, #7ec8e3 0%, #a5d8f3 20%, #FFB366 60%, #FFB366 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(247,150,51,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0,184,191,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.industries .section-header {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.industries .container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.industry-card {
    text-align: center;
    padding: 20px 12px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247,150,51,0.2), rgba(0,184,191,0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.industry-card:hover::before {
    left: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(247,150,51,0.3);
}

.industry-card i {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover i {
    color: white;
    transform: scale(1.1);
}

.industry-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover h3 {
    color: white;
}

.industry-card p {
    font-size: 10px;
    opacity: 0.7;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover p {
    color: rgba(255,255,255,0.9);
}

.apps {
    padding: 80px 0;
    background: white;
    scroll-margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.apps .container {
    width: 100%;
}

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

.apps-content .section-header-left {
    margin-bottom: 30px;
}

.apps-content .section-header-left .tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.apps-content .section-header-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.apps-content .section-header-left p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

.store-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    flex: 1;
    justify-content: center;
    min-width: 160px;
}

.apple-store {
    background: #000000;
    color: white;
    border: 1px solid #333;
}

.apple-store:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.google-store {
    background: #000000;
    color: white;
    border: 1px solid #333;
}

.google-store i {
    color: white;
}

.google-store small,
.google-store strong {
    color: white;
}

.google-store:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.web-store {
    background: #000000;
    color: white;
    border: 1px solid #333;
}

.web-store i {
    color: white;
}

.web-store small,
.web-store strong {
    color: white;
}

.web-store:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.store-btn small {
    font-size: 10px;
    opacity: 0.8;
    display: block;
    line-height: 1.2;
}

.store-btn strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.store-btn div {
    text-align: left;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.app-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-features div:hover {
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
    transform: translateX(5px);
}

.app-features i {
    color: var(--secondary);
    font-size: 14px;
}

.tech-stack {
    background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3e 100%);
    border-radius: 32px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(247,150,51,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0,184,191,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.tech-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247,150,51,0.08) 0%, transparent 70%);
    animation: techGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes techGlow {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(10%, 10%); opacity: 1; }
}

.tech-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(247,150,51,0.2), rgba(0,184,191,0.2));
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(247,150,51,0.3);
}

.tech-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1.3;
}

.tech-header .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-header p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.tech-card {
    text-align: center;
    padding: 24px 12px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

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

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(247,150,51,0.15), rgba(0,184,191,0.15));
    border-color: rgba(247,150,51,0.4);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.3);
}

.tech-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247,150,51,0.2), rgba(0,184,191,0.2));
    border-radius: 20px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon-bg {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(247,150,51,0.3);
}

.tech-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tech-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon img {
    transform: scale(1.05);
}

.tech-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
}

.tech-card p {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.tech-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tech-card:hover .tech-hover-line {
    transform: scaleX(1);
}

.tech-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.tech-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

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

.tech-stat .stat-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.tech-stat .stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

/* Toggle Buttons for Testimonials */
.testimonial-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: flex-end;
}

.toggle-btn {
    padding: 6px 16px;
    border: 1px solid var(--gray-light);
    background: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

.toggle-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.testimonial-video-content {
    transition: all 0.3s ease;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 200px;
    object-fit: cover;
}

.testimonial-video:focus {
    outline: none;
}

.testimonial-card {
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.testimonial-text-content,
.testimonial-video-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-video {
    width: 100%;
    max-height: 200px;
    min-height: 160px;
    object-fit: cover;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px;
}

.team .container {
    width: 100%;
}

.team-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.team-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}

.team-slider::-webkit-scrollbar {
    display: none;
}

.team-card {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    text-align: center;
    scroll-snap-align: start;
    flex-shrink: 0;
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover::after {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    padding: 40px 0 20px;
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
}

.team-avatar i {
    font-size: 80px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar i {
    transform: scale(1.05);
    color: var(--secondary);
}

.team-social {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-3px);
}

.team-card h3 {
    font-size: 20px;
    margin: 24px 0 8px;
    font-weight: 700;
}

.team-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--gray);
    font-size: 14px;
    padding: 0 20px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 20px 24px;
}

.team-expertise span {
    background: rgba(247,150,51,0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.team-card:hover .team-expertise span {
    background: rgba(0,184,191,0.1);
    color: var(--secondary);
}

.team-slider-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    flex-shrink: 0;
}

.team-slider-btn i {
    font-size: 18px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.team-slider-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: scale(1.08);
}

.team-slider-btn:hover i {
    color: white;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

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

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="30" r="3"/><circle cx="50" cy="80" r="2"/><circle cx="90" cy="70" r="2"/><circle cx="10" cy="60" r="3"/></svg>');
    background-repeat: repeat;
}

.stats-grid-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-card-main {
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-card-main:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 45px;
    color: rgba(255,255,255,0.9);
    transition: transform 0.3s ease;
}

.stat-card-main:hover .stat-icon i {
    transform: scale(1.1);
}

.stat-card-main h3 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card-main p {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-line {
    display: block;
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.5);
    margin: 15px auto 0;
    transition: width 0.3s ease;
}

.stat-card-main:hover .stat-line {
    width: 80px;
    background: white;
}

.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    scroll-margin-top: 80px;
}

.testimonial-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.testimonial-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    min-width: 380px;
    max-width: 380px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-light);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-icon {
    margin-bottom: 20px;
}

.testimonial-icon i {
    font-size: 36px;
    color: var(--primary);
    opacity: 0.7;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.author-info span {
    font-size: 12px;
    color: var(--gray);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    font-size: 14px;
    color: #FFD700;
}

.testimonial-slider-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    flex-shrink: 0;
}

.testimonial-slider-btn i {
    font-size: 18px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.testimonial-slider-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    transform: scale(1.08);
}

.testimonial-slider-btn:hover i {
    color: white;
}

.testimonial-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    width: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.testimonial-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Compact Contact Section */
.contact {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    scroll-margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(247,150,51,0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0,184,191,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-header {
    margin-bottom: 30px;
}

.contact .section-header .tag i {
    margin-right: 6px;
}

.contact .section-header h2 {
    font-size: 28px;
    margin-bottom: 6px;
}

.contact .section-header p {
    font-size: 14px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* ← CHANGED from 1.1fr to 1fr */
    gap: 30px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(247,150,51,0.1), rgba(0,184,191,0.1));
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
    width: fit-content;
}

.contact-badge i {
    color: var(--primary);
    font-size: 12px;
}

.contact-badge span {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

.contact-headline {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--dark);
}

.contact-headline .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-subtext {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.4;
    margin-bottom: 18px;
}

.contact-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-stat-item {
    text-align: center;
    flex: 1;
}

.contact-stat-item .stat-number {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 3px;
}

.contact-stat-item .stat-label {
    font-size: 10px;
    color: var(--gray);
    font-weight: 500;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247,150,51,0.05), rgba(0,184,191,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(247,150,51,0.15), rgba(0,184,191,0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-card-icon i {
    font-size: 18px;
    color: var(--primary);
}

.contact-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-card-content h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--dark);
}

.contact-card-content p {
    color: var(--gray);
    font-size: 11px;
    margin-bottom: 2px;
}

.contact-card-content a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 11px;
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contact-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: var(--secondary);
    margin-top: 3px;
}

.contact-hint i {
    font-size: 8px;
}

.contact-social-proof {
    background: linear-gradient(135deg, rgba(247,150,51,0.05), rgba(0,184,191,0.05));
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    margin-top: auto;
}

.client-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.avatar-ring {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2px;
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.avatar-count {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.trust-text {
    font-size: 10px;
    color: var(--gray);
    margin-top: 6px;
}

.trust-text i {
    color: var(--secondary);
    margin-right: 4px;
    font-size: 9px;
}

.contact-form {
    background: white;
    padding: 25px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-header {
    text-align: center;
    margin-bottom: 18px;
}

.form-header i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    display: inline-block;
}

.form-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.form-header p {
    font-size: 11px;
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.message-group i {
    top: 18px;
    transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.contact-form textarea {
    padding: 10px 12px 10px 38px;
    resize: vertical;
    min-height: 80px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(247,150,51,0.1);
}

.input-group select {
    width: 100%;
    padding: 10px 12px 10px 38px;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    background: #f8fafc;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 10px;
    color: var(--gray);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 12px;
}

.submit-btn:hover i {
    transform: translateX(4px);
}

.submit-btn::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;
}

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

.form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 9px;
    color: var(--gray);
}

.form-note i {
    color: var(--secondary);
    margin-right: 4px;
}

/* ==================== ENHANCED PROFESSIONAL FOOTER CSS ==================== */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Aesthetic Background Art */
.footer-bg-art {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-mesh-gradient {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 40%, rgba(247,150,51,0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(0,184,191,0.06) 0%, transparent 60%);
    animation: slowFloat 20s ease-in-out infinite;
}

.footer-dots-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.footer-glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.footer-glow-1 {
    bottom: -100px;
    left: -100px;
    background: var(--primary);
}

.footer-glow-2 {
    top: -100px;
    right: -100px;
    background: var(--secondary);
}

@keyframes slowFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2%, 2%) rotate(2deg); }
}

/* Footer Main Layout */
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Brand Column */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

.logo-separator {
    color: rgba(255,255,255,0.3);
    font-size: 24px;
    font-weight: 300;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.footer-contact-info {
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #aaa;
    font-size: 0.85rem;
}

.footer-contact-item i {
    width: 20px;
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-contact-item a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
    border-color: transparent;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

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

/* Two columns for industries */
.footer-links.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
}

.footer-links.two-columns li {
    margin-bottom: 0;
}

/* Newsletter */
.newsletter-text {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-newsletter {
    margin-bottom: 24px;
}

.newsletter-group {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-group i {
    position: absolute;
    left: 15px;
    color: #aaa;
    font-size: 0.9rem;
    pointer-events: none;
}

.newsletter-group input {
    width: 100%;
    padding: 12px 45px 12px 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: white;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.newsletter-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.newsletter-group input::placeholder {
    color: #777;
}

.newsletter-group button {
    position: absolute;
    right: 5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-group button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(247,150,51,0.5);
}

/* Trust Badge & Awards */
.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    padding: 10px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: #ccc;
    border: 1px solid rgba(255,255,255,0.05);
}

.footer-trust-badge i {
    color: var(--secondary);
    font-size: 1rem;
}

.footer-awards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-awards span {
    font-size: 0.7rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-awards i {
    color: var(--primary);
    width: 16px;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: #777;
    font-size: 0.8rem;
}

.footer-copyright a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

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

/* ============================================
   PROFESSIONAL CLASSICAL CONTACT SECTION - COMPACT SIZE
   ============================================ */

.contact {
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    scroll-margin-top: 70px;
    min-height: calc(100vh - 70px);
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(247,150,51,0.03) 0%, transparent 50%),
                      radial-gradient(circle at 90% 80%, rgba(0,184,191,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    width: 100%;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

/* LEFT SIDE - CLASSICAL MASTERPIECE - COMPACT */
.contact-info {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(2px);
    border-radius: 32px;
    padding: 24px 28px;
    position: relative;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(247, 150, 51, 0.2);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* RIGHT SIDE FORM - COMPACT */
.contact-form {
    background: white;
    padding: 24px 28px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow-y: auto;
    height: 100%;
    transition: all 0.3s;
}

/* Classical decorative elements */
.classical-ornament {
    position: absolute;
    top: 24px;
    left: 28px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.greco-roman-border {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
    border-top: 2px solid rgba(247,150,51,0.2);
    border-right: 2px solid rgba(247,150,51,0.2);
    border-radius: 0 16px 0 0;
    pointer-events: none;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(247, 150, 51, 0.08), rgba(0, 184, 191, 0.03));
    border-radius: 50%;
    pointer-events: none;
}

/* Colorful bar on RIGHT side INSIDE the left section */
.contact-info {
    position: relative;
    overflow: hidden; /* This keeps the bar inside the curved corners */
}

.contact-info::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 5px;
    height: calc(100% - 40px);
    background: linear-gradient(180deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: shimmerVertical 3s infinite;
    border-radius: 0;
    z-index: 1;
}

@keyframes shimmerVertical {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

.contact-headline {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.elegant-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.elegant-divider i {
    font-size: 12px;
    color: var(--primary);
    opacity: 0.7;
}

.contact-subtext {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.artistic-stats {
    display: flex;
    gap: 16px;
    padding: 14px 0 12px;
    border-top: 1px solid rgba(247, 150, 51, 0.15);
    border-bottom: 1px solid rgba(247, 150, 51, 0.15);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    color: #5a6874;
    letter-spacing: 0.5px;
}

.stat-dot {
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 6px auto 0;
    opacity: 0.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(247, 150, 51, 0.12);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateX(5px) translateY(-2px);
    background: white;
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(247, 150, 51, 0.12);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(247, 150, 51, 0.12), rgba(0, 184, 191, 0.12));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247,150,51,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover .icon-glow {
    opacity: 1;
}

.contact-card-icon i {
    font-size: 20px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.contact-card-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--dark);
}

.contact-card-content p,
.contact-card-content a {
    font-size: 12px;
    color: var(--gray);
    text-decoration: none;
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contact-hint {
    font-size: 10px;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
}

.contact-social-proof {
    background: linear-gradient(135deg, rgba(247, 150, 51, 0.06), rgba(0, 184, 191, 0.06));
    border-radius: 24px;
    padding: 12px 16px;
    text-align: center;
    backdrop-filter: blur(4px);
    margin-top: auto;
    border: 1px solid rgba(247, 150, 51, 0.1);
}

.client-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.avatar-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2px;
    transition: transform 0.3s;
}

.avatar-ring:hover {
    transform: scale(1.05);
}

.avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.avatar-count {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.trust-text {
    font-size: 11px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 6px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 10px;
    color: var(--gray);
}

.trust-badges i {
    color: var(--primary);
    margin-right: 4px;
}

/* Form Styles - Compact */
.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(247, 150, 51, 0.1), rgba(0, 184, 191, 0.1));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
}

.form-header-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed var(--primary);
    opacity: 0.5;
    animation: spinCircle 20s linear infinite;
}

@keyframes spinCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-header-icon i {
    font-size: 26px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.form-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.form-header p {
    font-size: 12px;
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 13px;
    z-index: 1;
    transition: color 0.3s;
}

.message-group i {
    top: 16px;
    transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.3s;
    background: #fafcff;
}

.contact-form textarea {
    padding: 10px 14px 10px 40px;
    min-height: 70px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(247, 150, 51, 0.08);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.input-group:focus-within i {
    color: var(--primary);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 14px;
}

.form-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--gray);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    padding: 11px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.submit-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
    font-size: 13px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 150, 51, 0.3);
    gap: 12px;
}

.submit-btn:hover .btn-shine {
    left: 100%;
}

.submit-btn:hover i {
    transform: translateX(4px);
}

.form-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.form-note {
    font-size: 9px;
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.form-note i {
    font-size: 10px;
    color: var(--secondary);
}

/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact .container {
        padding: 0 20px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact {
        min-height: auto;
        height: auto;
        padding: 50px 0;
    }
    .contact-info, .contact-form {
        height: auto;
    }
}

@media (max-width: 768px) {
    .contact .container {
        padding: 16px;
    }
    .contact-headline {
        font-size: 26px;
    }
    .contact-info, .contact-form {
        padding: 20px 18px;
    }
    .artistic-stats {
        gap: 10px;
    }
    .stat-number {
        font-size: 22px;
    }
    .contact-card {
        padding: 10px 14px;
    }
    .contact-card-icon {
        width: 38px;
        height: 38px;
    }
    .contact-card-icon i {
        font-size: 18px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .form-header h4 {
        font-size: 18px;
    }
    .form-footer {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .trust-badges {
        flex-direction: column;
        gap: 4px;
    }
}

/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

.footer-floating-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    .newsletter-col {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .testimonial-slide {
        min-width: 340px;
        max-width: 340px;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .mobile-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 40px;
        transition: 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-grid,
    .services-grid,
    .industries-grid,
    .apps-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        margin-top: 40px;
        height: auto;
    }
    
    .stats-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card-main {
        padding: 20px 15px;
    }
    
    .stat-card-main h3 {
        font-size: 32px;
    }
    
    .stat-icon i {
        font-size: 32px;
    }
    
    .stat-card-main p {
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .store-btn {
        min-width: auto;
        justify-content: center;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-stack {
        padding: 30px 20px;
    }
    
    .tech-header h3 {
        font-size: 22px;
    }
    
    .tech-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .tech-icon {
        width: 38px;
        height: 38px;
    }
    
    .tech-card {
        padding: 18px 10px;
    }
    
    .tech-card h4 {
        font-size: 12px;
    }
    
    .tech-card p {
        font-size: 10px;
    }
    
    .tech-stats {
        gap: 15px;
    }
    
    .tech-stat .stat-number {
        font-size: 16px;
    }
    
    .team-slider-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
    
    .team-slider-btn i {
        font-size: 14px;
    }
    
    .team-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .team-avatar i {
        font-size: 60px;
    }
    
    .team {
        padding: 60px 0;
        min-height: auto;
    }
    
    .testimonial-slide {
        min-width: 300px;
        max-width: 300px;
    }
    
    .testimonial-slider-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
    
    .testimonial-slider-btn i {
        font-size: 14px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .contact {
        padding: 30px 0;
    }
    
    .contact-headline {
        font-size: 22px;
    }
    
    .contact-stats {
        gap: 15px;
    }
    
    .contact-stat-item .stat-number {
        font-size: 18px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-header i {
        font-size: 28px;
    }
    
    .form-header h4 {
        font-size: 16px;
    }
    
    .contact-card {
        padding: 8px 12px;
    }
    
    .contact-card-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }
    
    .contact-card-icon i {
        font-size: 16px;
    }
    
    .avatar-ring {
        width: 28px;
        height: 28px;
    }
    
    .avatar-count {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    /* Footer Responsive */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .newsletter-col {
        grid-column: span 1;
    }
    .footer-links.two-columns {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .footer-floating-badge {
        display: none;
    }
}