/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New color palette based on your light blue #96E2FF */
    --blue-lightest: #E6F7FF;  /* Almost white, very soft highlight */
    --blue-lighter: #C1EDFF;   /* Light, good for borders */
    --blue-base: #96E2FF;      /* Your original color */
    --blue-medium: #6BC6F2;    /* Slightly deeper, good for hover */
    --blue-darker: #40AADB;    /* Stronger presence, good for buttons */
    --blue-darkest: #1A8EC4;   /* Deep tone for contrast, text */
    
    /* Neutrals */
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #666666;
    --gray-dark: #333333;
    --success: #28a745;
    --error: #dc3545;
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 28px rgba(0,0,0,0.15);
}

/* Font Awesome CDN will be added in header */
@font-face {
    font-family: 'Open Sans';
    src: url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
    font-display: swap;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.lead {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

/* ============================================
   BUTTON SYSTEM - UNIFIED SCHEMA
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Button Sizes */
.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Primary Button */
.btn-primary {
    background: var(--blue-darkest);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--blue-darker);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--blue-darkest);
    border: 2px solid var(--blue-darkest);
}

.btn-secondary:hover {
    background: var(--blue-darkest);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--gray-dark);
    border: 2px solid var(--blue-lighter);
}

.btn-outline:hover {
    border-color: var(--blue-darkest);
    color: var(--blue-darkest);
    transform: translateY(-2px);
}

/* Dark Button (for light backgrounds) */
.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gray-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Light Button (for dark backgrounds) */
.btn-light {
    background: var(--white);
    color: var(--blue-darkest);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--blue-lightest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* CTA Specific Button (special treatment) */
.btn-cta {
    background: var(--blue-base);
    color: var(--black);
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    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 ease;
}

.btn-cta:hover {
    background: var(--blue-medium);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-cta:active {
    transform: translateY(-1px);
}

/* Button with Icon */
.btn i {
    font-size: 1em;
    transition: transform 0.2s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-cta i {
    font-size: 1.1em;
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Disabled State */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Full Width Button */
.btn-block {
    width: 100%;
    display: flex;
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-base);
    transition: var(--transition);
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-switcher span.active {
    padding: 0.5rem 1rem;
    background: var(--blue-base);
    color: var(--black);
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--blue-base);
}

.language-switcher a {
    padding: 0.5rem 1rem;
    border: 2px solid var(--blue-base);
    border-radius: 6px;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    transition: var(--transition);
}

.language-switcher a:hover {
    background: var(--blue-base);
}

/* ============================================
   HERO SLIDER STYLES - FIXED WITH WRAPPER
   ============================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 90vh;
    min-height: 600px;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

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

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

/* NEW - Content wrapper with padding for arrows */
.slide-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 120px;
}

.slide-content {
    max-width: 700px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

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

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-base);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.slide-content h1 .highlight {
    color: var(--blue-base);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--blue-base);
    color: var(--black);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 30px;
    border-radius: 6px;
    background: var(--blue-base);
}

.dot:hover {
    background: var(--blue-base);
}

/* Services Grid */
.services-preview {
    padding: 4rem 0;
}

.services-detailed {
    padding: 4rem 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--blue-lighter);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-base);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--blue-darkest);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--blue-darkest);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.card-link:hover {
    color: var(--blue-darker);
    gap: 0.5rem;
}

/* Services Detailed with Images */
.service-detailed-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-detailed-item.reverse {
    direction: rtl;
}

.service-detailed-item.reverse .service-content {
    direction: ltr;
}

.service-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Service Headers with Inline Icons */
.service-content h2 i {
    margin-right: 0.75rem;
    color: var(--blue-darkest);
    font-size: 1.75rem;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Service Features with Double Check Icons */
.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li i {
    color: var(--blue-medium);
    font-size: 1.1rem;
    width: 1.25rem;
    flex-shrink: 0;
}

/* Remove old pseudo-element checkmarks */
.service-features li:before {
    display: none;
}

/* Service Blog CTA */
.service-blog-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--blue-lighter);
    font-size: 0.9rem;
}

.service-blog-cta i {
    color: var(--blue-darkest);
    margin-right: 0.5rem;
}

.service-blog-cta a {
    color: var(--blue-darkest);
    text-decoration: none;
    font-weight: 500;
}

.service-blog-cta a:hover {
    text-decoration: underline;
}

/* Methodology Section */
.methodology-overview {
    padding: 4rem 0;
    background: var(--white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.methodology-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--blue-lighter);
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-base);
}

.methodology-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue-base);
    opacity: 0.5;
    margin-bottom: 1rem;
    line-height: 1;
}

.methodology-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.methodology-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.methodology-blog-link {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.methodology-blog-link a {
    color: var(--blue-darkest);
    text-decoration: none;
    font-weight: 500;
}

.methodology-blog-link a:hover {
    text-decoration: underline;
}

/* About Page */
.about-story {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.about-content h2 {
    margin: 2rem 0 1rem;
}

.about-content h2:first-of-type {
    margin-top: 0;
}

/* Enhanced Methodology Timeline */
.about-methodology {
    padding: 4rem 0;
    background: var(--white);
}

.methodology-timeline-enhanced {
    max-width: 800px;
    margin: 3rem auto 0;
}

.methodology-item-enhanced {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--blue-lighter);
}

.methodology-item-enhanced:hover {
    transform: translateX(8px);
    border-color: var(--blue-base);
    box-shadow: var(--shadow-sm);
}

.methodology-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-lightest);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.methodology-icon i {
    font-size: 1.5rem;
    color: var(--blue-darkest);
}

.methodology-number {
    width: 40px;
    height: 40px;
    background: var(--blue-base);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.methodology-content {
    flex: 1;
}

.methodology-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--black);
}

.methodology-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Values Grid */
.about-values {
    padding: 4rem 0;
    background: var(--white);
}

.values-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item-enhanced {
    background: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--blue-lighter);
}

.value-item-enhanced:hover {
    transform: translateY(-5px);
    border-color: var(--blue-base);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--blue-lightest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--blue-darkest);
}

.value-item-enhanced h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--black);
}

.value-item-enhanced p {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Values Grid - 5 Columns */
.values-grid-five {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Section Header with Icons */
.section-header h2 i {
    margin-right: 0.75rem;
    color: var(--blue-darkest);
}

/* About Content Icons */
.about-content h2 i {
    margin-right: 0.75rem;
    color: var(--blue-darkest);
    font-size: 1.75rem;
}

/* Current Projects Section */
.current-projects {
    padding: 4rem 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--blue-lighter);
    box-shadow: var(--shadow-sm);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue-base);
    box-shadow: var(--shadow-md);
}

.project-icon {
    width: 80px;
    height: 80px;
    background: var(--blue-lightest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.project-icon i {
    font-size: 2.5rem;
    color: var(--blue-darkest);
}

.project-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.project-tagline {
    font-weight: 600;
    color: var(--blue-darkest);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.project-highlights span {
    font-size: 0.8rem;
    color: var(--gray-dark);
    background: var(--blue-lightest);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.project-highlights span i {
    font-size: 0.7rem;
    color: var(--blue-darkest);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-darkest);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.project-link:hover {
    gap: 0.75rem;
    color: var(--blue-darker);
}

/* ============================================
   CONTACT PAGE ENHANCED STYLES
   ============================================ */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Contact Cards */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--blue-lighter);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-card-header {
    background: var(--blue-lightest);
    padding: 1.75rem;
    border-bottom: 1px solid var(--blue-lighter);
}

.contact-card-header i {
    font-size: 2rem;
    color: var(--blue-darkest);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.contact-card-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.form-intro {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Details */
.contact-details {
    padding: 1.75rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-lightest);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.25rem;
    color: var(--blue-darkest);
}

.detail-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.detail-content p {
    color: var(--gray-dark);
    margin-bottom: 0.25rem;
}

.detail-content a {
    color: var(--blue-darkest);
    text-decoration: none;
    transition: var(--transition);
}

.detail-content a:hover {
    color: var(--blue-darker);
    text-decoration: underline;
}

.detail-note {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Social Icons */
.contact-social {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid var(--blue-lighter);
    background: var(--white);
}

.contact-social h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--blue-lightest);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--blue-darkest);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--blue-darkest);
    color: var(--white);
    transform: translateY(-3px);
}

/* Form Card */
.form-card .contact-card-header {
    background: var(--white);
    border-bottom: 1px solid var(--blue-lighter);
}

.contact-form {
    padding: 1.75rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.875rem;
}

.form-group label i {
    color: var(--blue-darkest);
    font-size: 0.875rem;
}

.required {
    color: var(--error);
    margin-left: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--blue-lighter);
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-base);
    box-shadow: 0 0 0 3px rgba(150, 226, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-lightest);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.privacy-note i {
    color: var(--blue-darkest);
    font-size: 1rem;
}

.privacy-note small {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Trust Badge */
.trust-badge {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: var(--blue-lightest);
    border-radius: 16px;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--blue-darkest);
}

/* Alert Enhancements */
.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin: 1rem 0;
    font-weight: 500;
}

.alert i {
    font-size: 1.25rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Page Headers with Black Background */
.about-hero,
.services-header,
.contact-header,
.error-page {
    padding: 4rem 0 2rem !important;
    text-align: center !important;
    background: var(--black) !important;
    width: 100% !important;
    display: block !important;
}

.about-hero h1,
.services-header h1,
.contact-header h1,
.error-page h1 {
    margin-bottom: 1rem !important;
    text-align: center !important;
    color: var(--white) !important;
}

.about-hero .lead,
.services-header .lead,
.contact-header .lead {
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    color: var(--white) !important;
    opacity: 0.9;
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 4rem 0;
    background: var(--blue-lightest);
    text-align: center;
}

.blog-cta-section h2 {
    margin-bottom: 1rem;
}

.blog-cta-section .lead {
    margin-bottom: 2rem;
}

/* CTA Section with Black Background */
.cta-section {
    padding: 5rem 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* 404 Page */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.error-page h1 {
    font-size: 8rem;
    color: var(--blue-base);
    line-height: 1;
}

/* Footer */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.site-footer p {
    opacity: 0.9;
    font-size: 0.875rem;
}

.wa-chat-m {
    display:none;
}

/* ============================================
   HOME PAGE ENHANCED STYLES
   ============================================ */

/* Methodology Preview Section */
.methodology-preview {
    padding: 4rem 0;
    background: var(--white);
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--blue-lighter);
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--blue-base);
    box-shadow: var(--shadow-md);
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background: var(--blue-base);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.step-item p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Step Icons */
.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Featured Posts Section */
.featured-posts {
    padding: 4rem 0;
    background: var(--white);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--blue-lighter);
    box-shadow: var(--shadow-sm);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-base);
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--blue-darkest);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.post-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-darkest);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.post-content .read-more:hover {
    gap: 0.75rem;
    color: var(--blue-darker);
}

/* Projects Showcase Section */
.projects-showcase {
    padding: 4rem 0;
    background: var(--white);
}

.projects-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.project-compact-card {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid var(--blue-lighter);
    box-shadow: var(--shadow-sm);
}

.project-compact-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue-base);
    box-shadow: var(--shadow-md);
}

.project-compact-icon {
    width: 60px;
    height: 60px;
    background: var(--blue-lightest);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-compact-icon i {
    font-size: 1.75rem;
    color: var(--blue-darkest);
}

.project-compact-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.project-compact-content {
    flex: 1;
}

.project-compact-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.project-compact-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-compact-content .project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-darkest);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.project-compact-content .project-link:hover {
    gap: 0.75rem;
    color: var(--blue-darker);
}

/* Slider Responsive - ADD THIS SECTION */
@media (max-width: 1024px) {
    .slide-content-wrapper {
        padding: 0 100px;
    }
    .slide-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .slide-content-wrapper {
        padding: 0 80px;
    }
    .slide-content {
        text-align: center;
        max-width: 100%;
    }
    .slide-content h1 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .slide-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide-content-wrapper {
        padding: 0 60px;
    }
    .slide-content h1 {
        font-size: 1.5rem;
    }
    .slide-tag {
        font-size: 0.75rem;
    }
    .slide-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .values-grid-five {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .methodology-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detailed-item,
    .service-detailed-item.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
        text-align: center;
    }
    
    .service-content h2 i {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-card {
        padding: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .services-header,
    .about-hero,
    .contact-header {
        padding: 3rem 0 1.5rem !important;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid-five {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-icon {
        width: 60px;
        height: 60px;
    }
    
    .project-icon i {
        font-size: 1.75rem;
    }
    
    .project-card h3 {
        font-size: 1.5rem;
    }
    
    .methodology-item-enhanced {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .methodology-icon {
        width: 60px;
        height: 60px;
    }
    
    .methodology-icon i {
        font-size: 1.75rem;
    }
    
    .values-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .value-item-enhanced {
        padding: 1.5rem;
    }
    
    .about-content h2 i {
        font-size: 1.5rem;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    /* Contact responsive adjustments */
    .contact-card-header {
        padding: 1.25rem;
    }
    
    .contact-details {
        padding: 1.25rem;
    }
    
    .contact-social {
        padding: 1.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .trust-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    /* Hero Slider responsive */
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-compact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .project-compact-icon {
        margin: 0 auto;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 180px;
    }
    
    .wa-chat-d {
        display: none;
    }
    .wa-chat-m {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid-five {
        grid-template-columns: 1fr;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        padding: 1rem;
    }
}