/* ==================== Reset & Base Styles ==================== */

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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099ff;
    --accent-color: #ff6b6b;
    --dark-bg: #0a0e27;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --transition-speed: 0.3s;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 20px 60px rgba(0, 212, 255, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

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

/* ==================== Navigation ==================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
    padding: 0.5rem 0;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    animation: logoFloat 0.5s ease-out;
}

@keyframes logoFloat {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo {
    transform: scale(1.1) rotate(5deg);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: color var(--transition-speed) ease;
}

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

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==================== Buttons & Forms ==================== */

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

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

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
}

/* ==================== Hero Section ==================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 153, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInScale 1.2s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideInLeft 1.2s ease-out 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 1.4s ease-out 0.2s both;
}

.hero-animation {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-icon {
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* ==================== Features Section ==================== */

.features {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    text-align: center;
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.feature-card svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover svg {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== Services Preview Section ==================== */

.services-preview {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

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

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-left-color: var(--secondary-color);
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== Mobile Apps Section ==================== */

.mobile-apps {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.app-feature {
    text-align: center;
    padding: 2rem;
    transition: all var(--transition-speed) ease;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

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

.app-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.app-feature:nth-child(2) {
    animation-delay: 0.4s;
}

.app-feature:nth-child(3) {
    animation-delay: 0.6s;
}

.app-feature svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.app-feature:hover svg {
    transform: scale(1.15) rotate(-5deg);
    color: var(--primary-color);
    filter: drop-shadow(0 10px 20px rgba(0, 212, 255, 0.3));
}

.app-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.app-feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== Services Main (Detail) ==================== */

.services-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    animation: fadeIn 1s ease-out;
}

.service-detail.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    max-width: 300px;
    color: var(--secondary-color);
    animation: float 6s ease-in-out infinite;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: var(--text-muted);
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.3);
}

/* ==================== Page Header ==================== */

.page-header {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    padding: 4rem 2rem;
    animation: fadeIn 0.8s ease-out;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* ==================== Contact Section ==================== */

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.info-card:nth-child(2) {
    animation-delay: 0.1s;
}

.info-card:nth-child(3) {
    animation-delay: 0.2s;
}

.info-card:nth-child(4) {
    animation-delay: 0.3s;
}

.info-card:nth-child(5) {
    animation-delay: 0.4s;
}

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

.info-card svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-card:hover svg {
    transform: scale(1.2) rotate(10deg);
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.info-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: slideInRight 0.8s ease-out;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--text-dark);
}

/* ==================== News Section ==================== */

.news-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.news-item {
    display: flex;
    gap: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.news-item:nth-child(1) {
    animation-delay: 0s;
}

.news-item:nth-child(2) {
    animation-delay: 0.1s;
}

.news-item:nth-child(3) {
    animation-delay: 0.2s;
}

.news-item:nth-child(4) {
    animation-delay: 0.3s;
}

.news-item:nth-child(5) {
    animation-delay: 0.4s;
}

.news-item:nth-child(n+6) {
    animation-delay: 0.5s;
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow-hover);
}

.news-item.featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    flex-shrink: 0;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h2,
.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.news-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.news-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.read-more {
    margin-top: 1.5rem;
}

.link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link::after {
    content: '→';
    transition: transform var(--transition-speed) ease;
}

.link:hover::after {
    transform: translateX(5px);
}

/* ==================== FAQ Section ==================== */

.faq-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform var(--transition-speed) ease;
    font-weight: bold;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== Vision & Mission ==================== */

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.vision-card,
.mission-card {
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all var(--transition-speed) ease;
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.vision-card {
    animation-delay: 0.1s;
}

.mission-card {
    animation-delay: 0.3s;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
}

.vision-card svg,
.mission-card svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.vision-card:hover svg,
.mission-card:hover svg {
    transform: scale(1.2) rotate(10deg);
}

.vision-card h2,
.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.vision-card p,
.mission-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* ==================== Core Values ==================== */

.core-values {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
    max-width: 1400px;
    margin: 0 auto;
}

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

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.value-item:nth-child(1) {
    animation-delay: 0.1s;
}

.value-item:nth-child(2) {
    animation-delay: 0.2s;
}

.value-item:nth-child(3) {
    animation-delay: 0.3s;
}

.value-item:nth-child(4) {
    animation-delay: 0.4s;
}

.value-item:nth-child(5) {
    animation-delay: 0.5s;
}

.value-item:nth-child(6) {
    animation-delay: 0.6s;
}

.value-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--box-shadow-hover);
    background: linear-gradient(135deg, white, rgba(0, 212, 255, 0.05));
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 70px;
    height: 70px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon svg {
    transform: scale(1.15) rotate(-10deg);
    color: var(--primary-color);
    filter: drop-shadow(0 10px 20px rgba(0, 212, 255, 0.3));
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== Team & Culture ==================== */

.team-culture {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.culture-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: var(--text-dark);
}

.culture-text h3:first-child {
    margin-top: 0;
}

.culture-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.culture-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.feature:nth-child(1) {
    animation-delay: 0.2s;
}

.feature:nth-child(2) {
    animation-delay: 0.3s;
}

.feature:nth-child(3) {
    animation-delay: 0.4s;
}

.feature:nth-child(4) {
    animation-delay: 0.5s;
}

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

.feature svg {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature:hover svg {
    transform: scale(1.15) rotate(15deg);
}

.feature h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ==================== Corporate Responsibility ==================== */

.corporate-responsibility {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.responsibility-card {
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.responsibility-card:nth-child(1) {
    animation-delay: 0.1s;
}

.responsibility-card:nth-child(2) {
    animation-delay: 0.2s;
}

.responsibility-card:nth-child(3) {
    animation-delay: 0.3s;
}

.responsibility-card:nth-child(4) {
    animation-delay: 0.4s;
}

.responsibility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    background: linear-gradient(135deg, white, rgba(0, 212, 255, 0.05));
}

.responsibility-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.responsibility-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== CTA Section ==================== */

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    animation: fadeIn 1s ease-out;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* ==================== Newsletter Section ==================== */

.newsletter-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out;
}

.newsletter-form input {
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    min-width: 300px;
    transition: all var(--transition-speed) ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.newsletter-form button {
    white-space: nowrap;
}

/* ==================== Team & Culture ==================== */

.team-culture {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.team-culture > .culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.culture-feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-speed) ease;
    animation: fadeInUp 0.8s ease-out;
}

.culture-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.12);
}

.culture-feature svg {
    width: 70px;
    height: 70px;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-speed) ease;
}

.culture-feature:hover svg {
    transform: scale(1.15);
}

.culture-feature h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.culture-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== Support Options ==================== */

.support-options {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(0, 153, 255, 0.03) 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
    transition: all var(--transition-speed) ease;
    position: relative;
    animation: slideInUp 0.8s ease-out;
}

.support-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.support-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.support-card svg {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    display: block;
}

.support-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.support-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.support-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.support-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==================== Benefits Section ==================== */

.benefits-section {
    padding: 5rem 2rem;
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
    animation: slideInLeft 0.8s ease-out;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.1);
}

.benefit-check {
    color: white;
    background: var(--primary-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-content h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==================== Company Overview ==================== */

.company-overview {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #f8f9fa 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all var(--transition-speed) ease;
    animation: slideUp 0.8s ease-out;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.15);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    transition: transform var(--transition-speed) ease;
}

.overview-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.overview-card svg {
    width: 100%;
    height: 100%;
}

.overview-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.overview-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== Homepage Extensions ==================== */

.impact-strip {
    padding: 1rem 2rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.impact-item {
    background: linear-gradient(135deg, #0a0e27 0%, #141b44 100%);
    color: #ffffff;
    padding: 1.6rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.25);
    transition: transform var(--transition-speed) ease;
}

.impact-item:hover {
    transform: translateY(-6px);
}

.impact-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.impact-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.delivery-process {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
}

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

.process-step {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.8rem;
}

.process-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ==================== Contact Extensions ==================== */

.global-network,
.engagement-roadmap {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.global-network {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(0, 153, 255, 0.06) 100%);
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.network-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.network-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.network-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0.8rem;
}

.network-card ul {
    list-style: none;
}

.network-card li {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    padding-left: 1.1rem;
    position: relative;
}

.network-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.engagement-roadmap {
    background: #ffffff;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.8rem;
    background: #ffffff;
    transition: all var(--transition-speed) ease;
}

.roadmap-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.12);
}

.roadmap-item span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.roadmap-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.roadmap-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== Footer ==================== */

.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-speed) ease;
    font-size: 0.8rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.75rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    margin: 0 0.8rem;
    font-size: 0.75rem;
}

/* ==================== Capabilities & Mobile Apps ==================== */

.mobile-capabilities {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.capability {
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.capability:nth-child(1) {
    animation-delay: 0.1s;
}

.capability:nth-child(2) {
    animation-delay: 0.2s;
}

.capability:nth-child(3) {
    animation-delay: 0.3s;
}

.capability:nth-child(4) {
    animation-delay: 0.4s;
}

.capability:nth-child(5) {
    animation-delay: 0.5s;
}

.capability:nth-child(6) {
    animation-delay: 0.6s;
}

.capability:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-top: 3px solid var(--primary-color);
}

.capability h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.capability p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== Pagination ==================== */

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 600;
}

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

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

.pagination-dots {
    display: flex;
    align-items: center;
    opacity: 0.5;
}

/* ==================== Responsive Design ==================== */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-animation {
        min-width: auto;
        margin-top: 2rem;
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .culture-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .news-item {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .footer-section p {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .footer-bottom {
        padding-top: 0.6rem;
        font-size: 0.7rem;
    }

    .footer-links a {
        margin: 0 0.4rem;
        font-size: 0.7rem;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .feature-card,
    .service-item {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

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

    .apps-container {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .overview-content,
    .support-grid,
    .culture-features,
    .benefits-list,
    .impact-grid,
    .process-grid,
    .network-grid,
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .overview-card,
    .support-card,
    .culture-feature {
        padding: 1.5rem;
    }

    .support-card.featured {
        transform: scale(1);
    }

    .badge {
        top: -8px;
        right: 10px;
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }

    .benefit-item {
        gap: 1rem;
        padding: 1rem;
    }
}
