/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo-inspired orange/red gradient theme */
    --primary-color: #ff6b35;
    --primary-dark: #d84315;
    --primary-light: #ff8c5a;
    --secondary-color: #ff8c5a;
    --accent-color: #ff4500;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #fff5f2;
    --bg-white: #ffffff;
    --border-color: #ffe5dc;
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(255, 107, 53, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(255, 107, 53, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #d84315 100%);
    --gradient-light: linear-gradient(135deg, #fff5f2 0%, #ffe5dc 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   IMAGE RESPONSIVENESS
   ============================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure logo doesn't shrink too much */
.logo-img {
    max-width: none;
    width: auto;
}

/* Table responsiveness */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Better text readability on mobile */
    p, li, span {
        line-height: 1.7;
        word-wrap: break-word;
    }

    /* Improve button tap targets */
    .btn, button {
        min-height: 48px;
        min-width: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    /* Better spacing for mobile */
    section {
        scroll-margin-top: 80px;
        padding: 2rem 0;
    }

    /* Ensure all clickable elements are touch-friendly */
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    width: 100%;
    left: 0;
    right: 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .logo-img {
    height: 70px;
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    font-size: 1.75rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-dark);
}

.logo:hover {
    color: var(--primary-color);
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.2));
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.logo-text {
    letter-spacing: 0.05em;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
}

.code-lines {
    position: absolute;
    top: 20%;
    left: 10%;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-align: left;
    line-height: 2;
    animation: codeGlow 3s ease-in-out infinite;
}

.code-line {
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.code-keyword {
    color: #ff6b35;
}

.code-variable {
    color: #4fc3f7;
}

.code-string {
    color: #81c784;
}

.code-function {
    color: #ffb74d;
}

.code-comment {
    color: #78909c;
    font-style: italic;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes codeGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.6s ease 0.2s both;
}

.badge-icon {
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    min-width: 60px;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-cta .btn svg {
    transition: transform 0.3s ease;
}

.hero-cta .btn:hover svg {
    transform: translateX(5px);
}

/* ============================================
   SERVICES HIGHLIGHT
   ============================================ */
.services-highlight {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.service-card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.service-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffe5dc 0%, #fff5f2 100%);
    border-radius: 1rem;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon-bg {
    background: var(--gradient-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    justify-content: center;
    margin-top: auto;
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.service-link svg {
    transition: var(--transition);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   COMING SOON SECTION
   ============================================ */
.coming-soon {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.coming-soon-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.coming-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: white;
    transition: var(--transition);
}

.coming-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.coming-feature svg {
    flex-shrink: 0;
    color: white;
}

.coming-soon-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: white !important;
    color: white !important;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.coming-soon-btn:hover {
    background: white !important;
    color: var(--primary-color) !important;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.page-header .tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Services Hero Section - Simple Design */
.services-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.services-hero .tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(255, 107, 53, 0.3);
}

.services-hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-header .btn-secondary,
.services-hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.page-header .btn-secondary:hover,
.services-hero .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    min-height: 60vh;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-stat-item .stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    min-width: 60px;
}

.about-stat-item .stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.about-stat-item .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-story,
.vision-section {
    padding: 6rem 0;
}

.about-story {
    background-color: var(--bg-white);
}

.vision-section {
    background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content {
    max-width: 100%;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-label span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.story-content h2,
.vision-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.story-text .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.story-highlights {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.story-highlights h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 1rem;
    padding: 0.5rem 0;
}

.highlight-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.story-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.story-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.vision-icon-large {
    font-size: 8rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.vision-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.vision-content {
    max-width: 100%;
}

.vision-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.vision-belief {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vision-goal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.vision-goal-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.vision-goal-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.vision-goal-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.team-section .section-header {
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.team-member.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--bg-light);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-photo {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.placeholder-photo {
    color: var(--text-light);
    font-weight: 500;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.team-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.team-social-icon:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.team-social-icon svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
    padding: 5rem 0;
    background: var(--bg-light);
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
    width: 100%;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 0;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    position: relative;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card-top {
    position: relative;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.service-card-content {
    padding: 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-footer {
    padding: 0 2rem 2rem;
    margin-top: auto;
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.service-icon-wrapper {
    flex-shrink: 0;
}

.service-icon-large {
    font-size: 3rem;
    line-height: 1;
    display: block;
}

.service-icon-bg {
    display: none;
}

.service-card-content h2 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.service-detail-card h2 {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    flex: 1;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.service-feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
    border-left: 3px solid var(--primary-color);
    padding-left: 0.875rem;
}

.service-feature-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.service-card-content .service-features {
    margin-bottom: 1.5rem;
}

.service-card-footer .service-cta-link {
    width: 100%;
    justify-content: center;
    margin-top: 0;
}

.service-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.service-cta-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-cta-link svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-cta-link:hover svg {
    transform: translateX(5px);
}

.coming-soon-service {
    position: relative;
    opacity: 0.95;
}

.coming-soon-service::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 1rem;
    pointer-events: none;
    z-index: 0;
}

.service-card-top .coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    z-index: 2;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.coming-soon-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        min-height: 52px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
    }
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
/* Portfolio Hero */
.portfolio-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.portfolio-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.portfolio-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-stat-item .stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.portfolio-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    min-width: 60px;
}

.portfolio-stat-item .stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.portfolio-stat-item .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.portfolio-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    background-color: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-item.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gradient-light);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-view-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.portfolio-view-btn svg {
    width: 48px;
    height: 48px;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.portfolio-view-btn:hover svg {
    background: var(--primary-color);
    transform: scale(1.1);
}

.portfolio-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.placeholder-image {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.portfolio-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.portfolio-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.portfolio-content h3 {
    margin-bottom: 1rem;
}

.portfolio-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 0.9375rem;
    flex: 1;
}

.portfolio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
}

.portfolio-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.5rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-feature-tag:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.portfolio-feature-tag svg {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.portfolio-features li {
    background-color: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.95);
}

.blog-card.animate {
    animation: scaleIn 0.6s ease forwards;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.blog-image {
    width: 100%;
    height: 250px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: left 0.5s;
}

.blog-card:hover .blog-image::before {
    left: 100%;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.75rem;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 1rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
/* Contact Hero */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.contact-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-header {
    margin-bottom: 3rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-info-header > p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.contact-details {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.contact-card-content h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.contact-card-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.contact-item.animate {
    animation: slideInLeft 0.6s ease forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }
.contact-item:nth-child(4) { animation-delay: 0.4s; }

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
    color: white;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-links-contact h3 {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 0;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.form-header {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 2.5rem;
    text-align: center;
    border-bottom: 2px solid var(--bg-light);
}

.form-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.form-header h2 {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.contact-form {
    padding: 2.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    background: var(--bg-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.form-submit-btn svg {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(5px) rotate(-15deg);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1626 100%);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 5rem;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.6;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-section {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.footer-brand {
    max-width: 320px;
    width: 100%;
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.footer-logo .logo-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-title {
    color: #ffffff !important;
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links li a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-links li a span {
    position: relative;
    z-index: 1;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: white;
    padding-left: 16px;
}

.footer-links li a:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    line-height: 1.5;
}

.footer-contact li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    opacity: 0.9;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-contact li span {
    flex: 1;
    min-width: 0;
    line-height: 1.5;
    display: inline-block;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-decoration: none;
    flex: 1;
    min-width: 0;
    line-height: 1.5;
    display: inline-block;
}

.footer-contact li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-social {
    max-width: 280px;
    width: 100%;
    min-width: 0;
}

.social-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.social-icon-facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0e5fcc 100%);
    color: white;
    border-color: #1877f2;
}

.social-icon-linkedin:hover {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    border-color: #0077b5;
}

.social-icon-twitter:hover {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    border-color: #000000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* ============================================
   STICKY DEMO BUTTON
   ============================================ */

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .footer {
        width: 100%;
        overflow-x: hidden;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        width: 100%;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        width: 100%;
    }

    .footer-section {
        min-width: 0;
        overflow: visible;
    }

    .footer-social {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 0.75rem 0;
        z-index: 1000 !important;
        background-color: var(--bg-white) !important;
        box-shadow: var(--shadow-md) !important;
    }

    body {
        padding-top: 80px !important;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        padding: 0;
        min-width: 48px;
        min-height: 48px;
        touch-action: manipulation;
        z-index: 1001;
        position: relative;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1.5rem 1.25rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 1.125rem 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.05rem;
        font-weight: 500;
        min-height: 50px;
        touch-action: manipulation;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .navbar.scrolled {
        box-shadow: var(--shadow-md) !important;
        padding: 0.75rem 0;
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
    }

    .hero {
        padding: 4rem 0;
        min-height: auto;
        margin-top: 0;
    }

    .code-lines {
        font-size: 0.7rem;
        left: 5%;
        top: 15%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .portfolio-stats {
        gap: 2rem;
    }

    .portfolio-stat-item .stat-number,
    .portfolio-stat-item .stat-suffix {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .logo-img {
        height: 65px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .navbar.scrolled .logo-img {
        height: 60px;
    }

    .navbar.scrolled .logo-text {
        font-size: 1.375rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .footer .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1.25rem;
        box-sizing: border-box;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .footer-section {
        width: 100%;
        min-width: 0;
        overflow: visible;
        box-sizing: border-box;
    }

    .footer-brand {
        max-width: 100%;
        width: 100%;
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        margin-bottom: 1.25rem;
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
    }

    .footer-logo-img {
        height: 60px;
        width: auto;
        display: block;
        margin: 0;
    }

    .footer-logo .logo-text {
        font-size: 1.75rem;
        text-align: left;
    }

    .footer-description {
        text-align: left;
        max-width: 100%;
        margin: 0;
        padding: 0;
        line-height: 1.7;
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
        text-align: left;
        padding-bottom: 0.875rem;
        width: 100%;
    }

    .footer-title::after {
        left: 0;
        transform: none;
        width: 50px;
    }

    .footer-links {
        text-align: left;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .footer-links li {
        margin-bottom: 0.875rem;
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .footer-links li:last-child {
        margin-bottom: 0;
    }

    .footer-links li a {
        justify-content: flex-start;
        align-items: center;
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        width: auto;
        text-align: left;
    }

    .footer-links li a span {
        text-align: left;
    }

    .footer-contact {
        text-align: left;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .footer-contact li {
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        display: flex;
        gap: 0.75rem;
        line-height: 1.5;
        margin-left: 0;
        margin-right: 0;
    }

    .footer-contact li:last-child {
        margin-bottom: 0;
    }

    .footer-contact li svg {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        display: inline-block;
        margin: 0;
        padding: 0;
        vertical-align: middle;
        line-height: 1;
    }

    .footer-contact li span,
    .footer-contact li a {
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 0;
        line-height: 1.5;
        display: inline-block;
        vertical-align: middle;
        flex: 1 1 auto;
    }

    .footer-social {
        max-width: 100%;
        width: 100%;
        text-align: left;
        margin: 0;
    }

    .social-description {
        text-align: left;
        margin-bottom: 1.5rem;
        padding: 0;
        line-height: 1.6;
        font-size: 0.875rem;
    }

    .social-links {
        gap: 1rem;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        display: flex;
        width: 100%;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
        margin: 0;
        display: block;
    }

    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
        line-height: 1.6;
        margin: 0;
        box-sizing: border-box;
    }

    .footer-bottom p {
        margin: 0;
        padding: 0;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .services-hero {
        padding: 3rem 0;
    }

    .services-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .services-hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .services-hero .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .services-hero .hero-actions .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .contact-hero {
        padding: 3rem 0;
    }

    .contact-hero-content h1 {
        font-size: 1.75rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    .service-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-detail-card {
        padding: 0;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
        width: 100%;
        min-height: auto;
        height: auto;
        margin-bottom: 1.5rem;
        background: var(--bg-white) !important;
    }

    .service-card-top {
        margin-bottom: 1.25rem;
        padding: 1.5rem 1.5rem 1rem;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .service-card-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .service-card-footer {
        padding: 0 1.5rem 1.5rem;
    }

    .service-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        -webkit-line-clamp: none;
        line-clamp: none;
        overflow: visible;
    }

    .service-features {
        gap: 0.75rem;
    }

    .service-feature-item {
        font-size: 0.875rem;
    }

    .service-card-footer {
        margin-top: 1.25rem;
    }

    .service-cta-link {
        font-size: 0.95rem;
    }

    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .services-highlight,
    .about-story,
    .vision-section,
    .team-section,
    .services-page {
        padding: 2.5rem 0;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        overflow-x: hidden;
    }

    .services-page .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1.25rem;
        box-sizing: border-box;
    }

    .portfolio-section,
    .blog-section,
    .contact-section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-header h2 {
        font-size: 1.75rem;
    }

    .contact-info-header > p {
        font-size: 0.95rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .contact-card-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
    }

    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
        font-weight: 600;
    }

    .contact-card-content p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .contact-card-content a {
        font-size: 0.9375rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .social-links-contact {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .social-links-contact h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.625rem;
        font-weight: 500;
        display: block;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 52px;
        font-size: 1rem;
        padding: 0.875rem 1.125rem;
        touch-action: manipulation;
        -webkit-appearance: none;
        appearance: none;
    }

    .form-group textarea {
        min-height: 150px;
        line-height: 1.7;
    }

    .form-submit-btn,
    .contact-form button[type="submit"] {
        width: 100%;
        min-height: 52px;
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        font-weight: 600;
        margin-top: 0.75rem;
    }

    .contact-form-wrapper {
        padding: 0;
        border-radius: 0.75rem;
        overflow: hidden;
    }

    .form-header {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .coming-soon-content h2 {
        font-size: 1.75rem;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
    }

    .story-wrapper,
    .vision-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .highlight-list {
        grid-template-columns: 1fr;
    }

    .story-highlights {
        padding: 1.5rem;
    }

    .vision-visual {
        height: 300px;
    }

    .vision-icon-large {
        font-size: 6rem;
    }

    .about-stats {
        gap: 2rem;
    }

    .about-stat-item .stat-number,
    .about-stat-item .stat-suffix {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 0;
        border-radius: 0.75rem;
    }

    .form-header {
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 0.875rem;
    }

    .form-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .form-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-stats {
        gap: 2rem;
    }

    .portfolio-stat-item .stat-number,
    .portfolio-stat-item .stat-suffix {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 0.75rem 0;
        z-index: 1000 !important;
        background-color: var(--bg-white) !important;
        box-shadow: var(--shadow-md) !important;
    }

    body {
        padding-top: 75px !important;
    }

    .navbar.scrolled {
        box-shadow: var(--shadow-md) !important;
        padding: 0.625rem 0;
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
    }

    .logo-img {
        height: 60px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .navbar.scrolled {
        padding: 0.625rem 0;
    }

    .navbar.scrolled .logo-img {
        height: 55px;
    }

    .navbar.scrolled .logo-text {
        font-size: 1.375rem;
    }

    .nav-menu {
        top: 75px;
        max-height: calc(100vh - 75px);
        padding: 1.25rem 1rem;
    }

    .nav-menu a {
        padding: 1rem 0;
        font-size: 1rem;
    }

    .footer {
        padding: 2.5rem 0 1.25rem;
        margin-top: 2rem;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .footer .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .footer-section {
        width: 100%;
        box-sizing: border-box;
    }

    .footer-logo {
        margin-bottom: 1rem;
        flex-direction: row;
        gap: 0.625rem;
        justify-content: center;
    }

    .footer-logo-img {
        height: 50px;
        width: auto;
        display: block;
    }

    .footer-logo .logo-text {
        font-size: 1.5rem;
    }

    .footer-description {
        font-size: 0.875rem;
        line-height: 1.7;
        text-align: center;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .footer-title::after {
        width: 40px;
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links li a {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }

    .footer-contact {
        align-items: flex-start;
        text-align: left;
    }

    .footer-contact li {
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 0.875rem;
        font-size: 0.875rem;
        gap: 0.625rem;
        flex-wrap: nowrap;
        line-height: 1.5;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        display: flex;
    }

    .footer-contact li svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        display: inline-block;
        margin: 0;
        padding: 0;
        vertical-align: middle;
        line-height: 1;
    }

    .footer-contact li span,
    .footer-contact li a {
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        vertical-align: middle;
        white-space: normal;
        line-height: 1.5;
        flex: 1 1 auto;
    }

    .social-description {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
        text-align: left;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .social-links {
        gap: 0.875rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-logo {
        margin-bottom: 1.25rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .footer-links li {
        margin-bottom: 0.875rem;
    }

    .footer-contact {
        align-items: flex-start;
        text-align: left;
    }

    .footer-contact li {
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        gap: 0.625rem;
        flex-wrap: nowrap;
        line-height: 1.5;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        display: flex;
    }

    .footer-contact li svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        display: inline-block;
        margin: 0;
        padding: 0;
        vertical-align: middle;
        line-height: 1;
    }

    .footer-contact li span,
    .footer-contact li a {
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        vertical-align: middle;
        white-space: normal;
        line-height: 1.5;
        flex: 1 1 auto;
    }

    .social-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        text-align: left;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .social-links {
        gap: 0.875rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-cta,
    .hero-actions {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
        padding: 1.5rem 0;
    }

    .hero-cta .btn,
    .hero-actions .btn {
        width: 100%;
        min-height: 52px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
    }

    .page-header {
        padding: 2.5rem 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .services-hero {
        padding: 2.5rem 0;
    }

    .services-hero-title {
        font-size: 1.75rem;
    }

    .services-hero-description {
        font-size: 0.875rem;
    }

    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        min-height: 52px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
    }

    .service-detail-grid {
        gap: 1.25rem;
        width: 100%;
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .service-card,
    .service-detail-card {
        padding: 0;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
        width: 100%;
        background: var(--bg-white) !important;
        margin-bottom: 1.25rem;
    }

    .service-card-top {
        padding: 1.25rem 1.25rem 1rem;
    }

    .service-card-content {
        padding: 1.25rem;
    }

    .service-card-footer {
        padding: 0 1.25rem 1.25rem;
    }

    .service-detail-card h2 {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .service-description {
        font-size: 0.875rem;
        -webkit-line-clamp: none;
        line-clamp: none;
        overflow: visible;
    }

    .service-feature-item {
        font-size: 0.8rem;
        padding: 0.625rem;
    }

    .contact-form-wrapper {
        padding: 0;
    }

    .form-header {
        padding: 1.25rem;
    }

    .form-header h2 {
        font-size: 1.25rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
    }

    .portfolio-stats {
        gap: 1.5rem;
    }

    .portfolio-stat-item .stat-number,
    .portfolio-stat-item .stat-suffix {
        font-size: 1.75rem;
    }

    .portfolio-image-wrapper {
        height: 200px;
    }

    .portfolio-content {
        padding: 1.25rem;
    }

    .portfolio-content h3 {
        font-size: 1.125rem;
    }

    .portfolio-content p {
        font-size: 0.875rem;
    }

    .blog-card {
        padding: 1.25rem;
    }

    .blog-card h3 {
        font-size: 1.125rem;
    }

    .blog-card p {
        font-size: 0.875rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        padding: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.125rem;
    }

    .step-content p {
        font-size: 0.875rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 0.75rem;
        right: 0.75rem;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }

    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-section p,
    .footer-section a,
    .footer-contact li {
        font-size: 0.85rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

