/* =====================================================
   Code2Market - Custom Styles
   ===================================================== */

/* =====================================================
   CSS Variables (Custom Properties)
   ===================================================== */
:root {
    /* Colors */
    --primary-color: rgb(116, 159, 187);
    --primary-dark: rgb(86, 129, 157);
    --primary-light: rgb(146, 189, 217);
    --secondary-color: #1E293B;
    --accent-color: #F97316;
    --accent-green: #10B981;
    --background-light: #F8FAFC;
    --background-dark: #0F172A;
    --text-dark: #334155;
    --text-light: #64748B;
    --text-white: #FFFFFF;
    --border-color: #E2E8F0;
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Aldrich', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* =====================================================
   Base Styles & Reset
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-color);
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* =====================================================
   Preloader
   ===================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

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

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(116, 159, 187, 0.2);
    border-radius: 50%;
    position: relative;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* =====================================================
   Navigation
   ===================================================== */
#mainNav {
    background: transparent;
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

#mainNav.scrolled {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0;
}

.navbar-logo {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 75px;
}

.logo-text {
    color: var(--text-white);
}

.logo-highlight {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-white);
    background: rgba(116, 159, 187, 0.2);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

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

/* Language Switcher */
.language-switcher .btn {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
}

.language-switcher .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0F172A 100%);
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.5) 100%);
    z-index: 2;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .text-accent {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(116, 159, 187, 0.4);
}

.hero-buttons .btn-outline-light {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border-width: 2px;
    transition: all var(--transition-normal);
}

.hero-buttons .btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

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

.scroll-indicator a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: var(--text-white);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    animation: scrollDown 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

/* =====================================================
   Section Styles
   ===================================================== */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1.5rem auto 0;
    border-radius: var(--radius-full);
}

/* =====================================================
   Services Section
   ===================================================== */
.services-section {
    background: var(--background-light);
    padding: var(--section-padding);
}

.service-card {
    background: var(--text-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--accent-color);
}

.service-link i {
    transition: transform var(--transition-fast);
}

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

/* =====================================================
   About Section
   ===================================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--text-white);
}

.about-image-wrapper {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--accent-green);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* Stats Section */
.stats-section {
    border-top: 1px solid var(--border-color);
}

.stat-card {
    padding: 2rem 1rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-number[data-suffix=""]::after,
.stat-number:not([data-suffix])::after {
    content: '+';
    color: var(--accent-color);
}

.stat-number[data-suffix="%"]::after {
    content: none;
}

.stat-number-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

/* =====================================================
   Portfolio Section
   ===================================================== */
.portfolio-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

/* Portfolio Filter */
.portfolio-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    margin: 0.25rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

/* Portfolio Cards */
.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 41, 59, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    color: var(--text-white);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.portfolio-info p {
    color: var(--primary-light);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

/* Portfolio Item Animation */
.portfolio-item {
    transition: all var(--transition-normal);
}

.portfolio-item.hidden {
    display: none;
}

/* Client Logos */
.client-logos h4 {
    color: var(--text-light);
    font-weight: 500;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    padding: 1rem 3rem;
    color: var(--text-light);
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary-color);
}

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

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0F172A 100%);
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: var(--text-white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 3rem 2rem;
}

.testimonial-avatar {
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #FCD34D;
    font-size: 1.25rem;
    margin: 0 0.125rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
}

.testimonial-author h5 {
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--primary-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all var(--transition-fast);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-dark);
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: var(--primary-color);
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--text-white);
}

.contact-form-wrapper {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(116, 159, 187, 0.1);
}

.contact-form .form-floating label {
    font-family: var(--font-body);
    color: var(--text-light);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.contact-form .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(116, 159, 187, 0.4);
}

/* Contact Info */
.contact-info {
    padding-left: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--text-white);
    font-size: 1.25rem;
}

.info-content h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.info-content p {
    margin: 0;
    color: var(--text-light);
}

.info-content a {
    color: var(--text-light);
}

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

/* Social Links */
.social-links h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-5px);
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* =====================================================
   Footer
   ===================================================== */
.footer-section {
    background: var(--secondary-color);
    color: var(--text-white);
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* =====================================================
   Cookie Consent
   ===================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    padding: 1rem 2rem;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--primary-light);
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

/* =====================================================
   Modal Styles
   ===================================================== */
.modal-content {
    border: none;
    border-radius: var(--radius-xl);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-title {
    font-family: var(--font-heading);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body h6 {
    color: var(--secondary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
}

/* =====================================================
   Utility Classes
   ===================================================== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

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

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1199.98px) {
    .carousel-control-prev {
        left: -30px;
    }
    
    .carousel-control-next {
        right: -30px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(30, 41, 59, 0.98);
        padding: 1rem;
        border-radius: var(--radius-lg);
        margin-top: 1rem;
    }
    
    .language-switcher {
        margin-top: 1rem;
        margin-left: 0 !important;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .about-badge {
        right: 20px;
    }
    
    .contact-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number,
    .stat-number-text {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .about-badge {
        position: relative;
        right: auto;
        bottom: auto;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }
    
    .testimonial-card {
        padding: 2rem 1rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* =====================================================
   Animation Classes
   ===================================================== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom AOS animations */
[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

/* =====================================================
   Service Page Styles
   ===================================================== */
.service-page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0F172A 100%);
    padding: 180px 0 100px;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service-page-header.with-image {
    background: transparent;
}

.service-page-header.with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.service-page-header .container {
    position: relative;
    z-index: 2;
}

.service-page-header .header-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transition: transform 0.5s ease;
}

.service-page-header:hover .header-bg-image {
    transform: scale(1.02);
}

.min-vh-50 {
    min-height: 50vh;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--text-white);
}

.service-page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.service-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--primary-light);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Service Content */
.service-content {
    background: var(--text-white);
}

.content-block {
    margin-bottom: 3rem;
}

/* Service Featured Image */
.service-featured-image {
    margin-bottom: 3rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-featured-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-featured-image:hover img {
    transform: scale(1.03);
}

.content-block h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Service Features */
.service-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.service-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.service-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature .feature-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.service-feature .feature-content h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service-feature .feature-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Compact Service Feature */
.service-feature.compact {
    padding: 1.25rem;
    margin-bottom: 0;
    background: var(--text-white);
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-feature.compact .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.service-feature.compact .feature-icon i {
    font-size: 1.25rem;
}

.service-feature.compact .feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.service-feature.compact .feature-content p {
    font-size: 0.9rem;
}

/* Tagline & Lead Text */
.content-block .tagline {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-block .lead-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Why Us List */
.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.why-us-list li:last-child {
    border-bottom: none;
}

.why-us-list li i {
    color: var(--accent-green);
    font-size: 1.25rem;
    margin-top: 0.15rem;
}

.why-us-list li strong {
    color: var(--secondary-color);
}

/* Tech Stack */
.tech-stack {
    display: grid;
    gap: 1.5rem;
}

.tech-category {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
}

.tech-category h5 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badges .badge {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.process-step:hover {
    background: var(--text-white);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.step-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--background-light);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), #0F172A);
    color: var(--text-white);
}

.sidebar-card.cta-card h4 {
    color: var(--text-white);
}

.sidebar-card.cta-card p {
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-card h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list li i {
    color: var(--primary-color);
    width: 20px;
}

.contact-list li a {
    color: var(--text-dark);
}

.contact-list li a:hover {
    color: var(--primary-color);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 0.75rem;
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.services-list li a:hover {
    background: var(--text-white);
    color: var(--primary-color);
    padding-left: 1rem;
}

.services-list li a i {
    color: var(--primary-color);
    width: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Pricing Cards */
.pricing-card {
    background: var(--background-light);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, var(--secondary-color), #0F172A);
    color: var(--text-white);
}

.pricing-card.featured h4 {
    color: var(--text-white);
}

.pricing-card h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.pricing-card ul li i {
    color: var(--accent-green);
}

.pricing-card.featured ul li i {
    color: var(--accent-color);
}

/* Industry Cards */
.industry-card {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-card h5 {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.industry-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Benefit Cards */
.benefit-card {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h5 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Service Page Responsive */
@media (max-width: 991.98px) {
    .service-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .service-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .service-feature .feature-icon {
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .service-page-header {
        padding: 140px 0 80px;
        min-height: 350px;
    }
    
    .service-page-title {
        font-size: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
    .navbar,
    .back-to-top,
    .cookie-consent,
    #preloader {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    section {
        page-break-inside: avoid;
    }
}
