:root {
    --primary-teal: #009688;
    --primary-dark: #00796b;
    --primary-light: #26a69a;
    --secondary-teal: #26c6da;
    --light-bg: #f0f4f8;
    --lighter-bg: #e8eef4;
    --card-bg: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    --accent-green: #4caf50;
    --accent-lime: #cddc39;
    --success: #8bc34a;
    --warning: #ff9800;
    --border-color: rgba(0, 0, 0, 0.1);
    --glow-teal: rgba(0, 150, 136, 0.2);
    --glow-green: rgba(76, 175, 80, 0.2);
    --white-bg: #ffffff;  /* Retained for loader */
    --white-text: #000000;  /* For contrast on white loader */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--white-bg) 0%, var(--white-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.logo-loader {
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-logo-image {
    height: 80px;
    width: auto;
    animation: pulse 2s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-green));
    border-radius: 2px;
    animation: loading 1.5s ease-in-out infinite;
}

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

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

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

.brand {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.brand:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.brand:hover .logo-image {
    transform: scale(1.05);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-teal);
    background: rgba(0, 150, 136, 0.05);
}

.nav-link.active {
    color: var(--primary-teal);
}

.nav-link.cta-btn {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: white;
    margin-left: 8px;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--glow-teal);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

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

.skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to top, rgba(0, 150, 136, 0.1), transparent);
    clip-path: polygon(
        0% 100%, 0% 70%,
        5% 60%, 5% 100%,
        8% 100%, 8% 50%,
        12% 50%, 12% 100%,
        15% 100%, 15% 65%,
        18% 65%, 18% 100%,
        22% 100%, 22% 40%,
        26% 40%, 26% 100%,
        30% 100%, 30% 55%,
        34% 55%, 34% 100%,
        38% 100%, 38% 45%,
        42% 45%, 42% 100%,
        46% 100%, 46% 60%,
        50% 60%, 50% 100%,
        54% 100%, 54% 35%,
        58% 35%, 58% 100%,
        62% 100%, 62% 50%,
        66% 50%, 66% 100%,
        70% 100%, 70% 55%,
        74% 55%, 74% 100%,
        78% 100%, 78% 45%,
        82% 45%, 82% 100%,
        86% 100%, 86% 60%,
        90% 60%, 90% 100%,
        94% 100%, 94% 50%,
        98% 50%, 98% 100%,
        100% 100%
    );
    animation: skylineGlow 4s ease-in-out infinite;
}

@keyframes skylineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 150, 136, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 136, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    margin-bottom: 64px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-green), var(--accent-lime));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--glow-teal);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-teal);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-teal);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary-teal);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

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

@keyframes mouseScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.quick-solutions {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--light-bg), var(--lighter-bg));
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

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

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover::before {
    opacity: 0.05;
}

.solution-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--glow-teal);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.solution-card p {
    color: var(--text-secondary);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.page-hero {
    padding: 160px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lighter-bg), var(--light-bg));
}

.tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(0, 150, 136, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.page-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-teal));
    -webkit-background-clip: text;
    background-clip: text;
}

.page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.solutions-detail {
    padding: 80px 24px;
    background: var(--lighter-bg);
}

.solutions-detailed-grid {
    display: grid;
    gap: 32px;
}

.solution-detail-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.solution-detail-card:hover {
    border-color: var(--primary-teal);
    transform: translateX(8px);
    box-shadow: -4px 0 24px var(--glow-teal);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-teal), var(--accent-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-detail-card:hover .card-glow {
    opacity: 1;
}

.solution-card-header {
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
}

.solution-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 12px;
}

.solution-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.solution-card-header h3 {
    font-size: 24px;
    font-weight: 600;
}

.solution-card-body {
    padding: 32px;
}

.solution-card-body p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.solution-features {
    list-style: none;
    margin-bottom: 24px;
}

.solution-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-cta:hover {
    color: var(--accent-green);
    transform: translateX(4px);
}

.vendors-section {
    padding: 80px 24px;
    background: var(--lighter-bg);
}

.vendors-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.vendors-intro h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.vendors-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.vendors-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.vendors-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 24px 0;
    scrollbar-width: none;
}

.vendors-carousel::-webkit-scrollbar {
    display: none;
}

.vendor-card {
    min-width: 280px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.vendor-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--glow-teal);
}

.vendor-logo-placeholder {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-teal);
}

.vendor-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.vendor-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.vendor-benefits {
    margin-top: 80px;
}

.vendor-benefits h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 10px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.industries-section {
    padding: 80px 24px;
    background: var(--lighter-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--glow-teal) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover::after {
    opacity: 1;
}

.industry-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--glow-teal);
}

.industry-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.industry-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.industry-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.industry-card > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.industry-solutions {
    list-style: none;
    margin-bottom: 20px;
}

.industry-solutions li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
}

.industry-solutions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.industry-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.industry-link:hover {
    color: var(--accent-green);
    transform: translateX(4px);
}

.about-content {
    padding: 80px 24px;
    background: var(--lighter-bg);
}

.about-story {
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-story h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 24px;
    text-align: center;
}

.lead-text {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-story p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
}

.mv-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mv-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.mv-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 10px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.why-choose {
    margin-bottom: 80px;
}

.why-choose h2 {
    font-size: clamp(28px, 4vw, 40px);
    text-align: center;
    margin-bottom: 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.why-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
}

.why-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 150, 136, 0.2);
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    text-align: center;
    margin-bottom: 64px;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-teal), var(--accent-green));
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-marker {
    position: absolute;
    left: -45px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-teal);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--light-bg), 0 0 0 6px var(--primary-teal);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-teal);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-section {
    padding: 80px 24px;
    background: var(--lighter-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:first-child {
    padding-top: 0;
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.method-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.method-details h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.method-details a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: var(--primary-teal);
}

.method-details p {
    color: var(--text-secondary);
}

.business-hours {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.business-hours h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.business-hours p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.95);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    display: none;
    font-size: 14px;
}

.form-message.success {
    display: block;
    background: rgba(139, 195, 74, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
    color: #ff9800;
}

.cta-section {
    padding: 120px 24px;
    background: linear-gradient(135deg, var(--light-bg), var(--lighter-bg));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-teal) 0%, transparent 70%);
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.main-footer {
    background: var(--lighter-bg);
    border-top: 1px solid var(--border-color);
    padding: 64px 24px 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-teal);
}

.contact-list li a {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

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

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

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

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

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

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

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

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

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(240, 244, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 16px;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero {
        padding: 100px 16px 60px;
    }

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

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

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

    .vendors-carousel-wrapper {
        padding: 0 48px;
    }

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

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

    .mission-vision {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}