/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #00d4ff;
    --accent-color: #ff6b00;
    --dark-bg: #0a0e27;
    --dark-secondary: #1a1f3a;
    --text-light: #ffffff;
    --text-gray: #b0b8c4;
    --gradient-1: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #ff6b00 0%, #ffa500 100%);
    --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
    --shadow-hover: 0 20px 60px rgba(0, 102, 255, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background:rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 102, 255, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 32px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo span {
    font-size: 12px;
    color: var(--text-gray);
    display: block;
    margin-top: -5px;
}

.logo-lockup {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 4px;
}

.logo-mark {
    width: auto;
    height: 60px;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.logo-company-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,102,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-intro {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.9;
}

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

.hero-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-logos .logo-mark {
    width: auto;
    height: 80px;
    max-width: 300px;
    object-fit: contain;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    animation: bounce 2s infinite;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

.arrow {
    width: 2px;
    height: 30px;
    background: var(--gradient-1);
    margin: 10px auto;
    position: relative;
}

.arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    transform: rotate(45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    background: var(--dark-secondary);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
    background: var(--dark-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--gradient-1);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
    background: var(--dark-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-main-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-hero-text {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.about-hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 102, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.35);
}

.about-hero-image .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-hero-image:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Subtitles */
.section-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Partners Section */
.about-partners-section {
    margin-bottom: 80px;
}

.about-partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

/* Details Section */
.about-details-section {
    margin-bottom: 80px;
}

.about-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Mission Section */
.about-mission-section {
    margin-top: 60px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.modern-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.modern-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

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

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

.partner-card {
    border-left: 4px solid transparent;
    transition: border-color 0.3s ease;
}

.partner-card:hover {
    border-left-color: var(--primary-color);
}

.detail-card {
    border-top: 4px solid transparent;
    transition: border-color 0.3s ease;
}

.detail-card:hover {
    border-top-color: var(--secondary-color);
}

.mission-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 212, 255, 0.06) 100%);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-left: 4px solid var(--primary-color);
    max-width: 900px;
    margin: 0 auto;
}

.mission-card:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-radius: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 255, 0.3));
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.modern-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
}

.about-card h3 {
    font-size: 24px;
    margin: 0;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.modern-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

.modern-card:hover p {
    color: var(--text-light);
}

.about-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.about-card ul li {
    color: var(--text-gray);
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.modern-card:hover ul li {
    color: var(--text-light);
}

.about-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 16px;
    background: rgba(0, 212, 255, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.modern-card:hover ul li::before {
    background: rgba(0, 212, 255, 0.4);
    transform: scale(1.1);
}

.mission-vision {
    background: var(--dark-secondary);
    padding: 100px 0;
}

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

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.mv-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

.team-section {
    background: var(--dark-bg);
}

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

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

.expertise-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.expertise-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.why-choose {
    background: var(--dark-secondary);
}

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

.why-image {
    text-align: center;
    margin-bottom: 30px;
}

.why-image img {
    width: 100%;
    max-width: 640px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.image-caption {
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 13px;
    font-style: italic;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.why-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.why-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-main {
    background: var(--dark-bg);
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

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

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

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

.service-number {
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0.3;
}

.service-detailed-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-detailed-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    color: var(--text-gray);
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.8;
    font-size: 15px;
    transition: color 0.3s ease;
}

.news-card:hover .service-features li {
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
    background: rgba(0, 212, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-card:hover .service-features li::before {
    background: rgba(0, 212, 255, 0.3);
    transform: scale(1.1);
}

.cta-section {
    background: var(--gradient-1);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================
   PROJECTS PAGE
   ============================================ */
.projects-filter {
    background: var(--dark-secondary);
    padding: 40px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.projects-grid-section {
    background: var(--dark-bg);
    padding: 60px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.project-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid var(--text-light);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.project-content {
    padding: 30px;
}

.project-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.project-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.project-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.projects-stats {
    background: var(--dark-secondary);
    padding: 80px 0;
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.news-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.25);
    border-color: rgba(0, 102, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    position: relative;
    width: 100%;
    min-height: 280px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-card.featured .news-image {
    min-height: 400px;
}

.news-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
    max-height: 500px;
}

.news-card.featured .news-image img {
    max-height: 600px;
}

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

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.news-content {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content h2,
.news-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    line-height: 1.3;
    color: var(--text-light);
    font-weight: 700;
}

.news-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
    flex: 1;
}

.news-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

.newsletter-section {
    background: var(--gradient-1);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px auto;
    max-width: 1200px;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 25px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

.projection-table {
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.projection-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-gray);
    transition: background 0.3s ease;
}

.projection-row:hover {
    background: rgba(0, 102, 255, 0.1);
}

.projection-row span {
    font-size: 14px;
    font-weight: 500;
}

.projection-header {
    background: rgba(0, 102, 255, 0.15);
    color: var(--text-light);
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 102, 255, 0.3);
}

.projection-header:hover {
    background: rgba(0, 102, 255, 0.2);
}

.projection-row:last-child {
    border-bottom: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    background: var(--dark-bg);
    padding: 60px 0;
}

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

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

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

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.method-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.method-content p {
    color: var(--text-gray);
    margin: 5px 0;
    font-size: 14px;
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.response-time {
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-light);
}

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

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    display: block;
}

.map-section {
    background: var(--dark-secondary);
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.05);
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder p {
    color: var(--text-gray);
    font-size: 18px;
    margin: 10px 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgb(0, 13, 34);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo-img {
    width: auto;
    height: 60px;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.footer-company-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.office-info {
    margin-bottom: 20px;
}

.office-info strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.office-info p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-company-name {
        font-size: 13px;
    }

    .footer-company-name {
        font-size: 16px;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .hero-intro {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 15px;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .about-content,
    .about-main,
    .service-detailed-card,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 80px;
        padding-bottom: 60px;
    }

    .about-main-title {
        font-size: 42px;
    }

    .about-hero-text {
        font-size: 16px;
    }

    .about-partners,
    .about-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-subtitle {
        font-size: 28px;
    }

    .modern-card {
        padding: 32px 24px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .card-icon {
        font-size: 32px;
        width: 50px;
        height: 50px;
    }

    .about-card h3 {
        font-size: 22px;
    }


    .service-detailed-card.reverse {
        direction: ltr;
    }

    .news-card.featured {
        grid-column: span 1;
    }

    .news-image {
        min-height: 240px;
    }

    .news-card.featured .news-image {
        min-height: 320px;
    }

    .news-content {
        padding: 24px;
    }

    .news-content h2,
    .news-content h3 {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .projects-filter {
        position: relative;
        top: 0;
    }

    .page-header {
        padding: 130px 0 60px;
    }

    .page-header h1 {
        font-size: 48px;
    }

    .projection-table {
        overflow-x: auto;
    }

    .projection-row {
        min-width: 550px;
        padding: 14px 18px;
    }

    .newsletter-section {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 20px 0 80px;
    }

    .hero-content {
        padding: 0 15px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 22px;
        line-height: 1.5;
        font-weight: 400;
    }

    .hero-intro {
        display: block;
        font-size: 15px;
        color: var(--text-gray);
        margin-bottom: 0;
        line-height: 1.6;
        opacity: 0.85;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 18px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
    }

    .hero-logos {
        margin-bottom: 15px;
    }

    .hero-logos .logo-mark {
        height: 50px;
        max-width: 200px;
    }

    .scroll-indicator {
        bottom: 40px;
        font-size: 12px;
    }

    .scroll-indicator .arrow {
        height: 20px;
        margin: 8px auto;
    }

    .logo-company-name {
        font-size: 12px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-company-name {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .stat-number {
        font-size: 48px;
    }

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

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

    .news-section {
        padding: 60px 0;
    }

    .news-image {
        min-height: 200px;
    }

    .news-card.featured .news-image {
        min-height: 280px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h2,
    .news-content h3 {
        font-size: 20px;
    }

    .news-content p {
        font-size: 14px;
    }

    .projection-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .projection-row {
        grid-template-columns: repeat(3, minmax(100px, 1fr));
        padding: 12px 16px;
        font-size: 12px;
        min-width: 500px;
    }

    .projection-row span {
        font-size: 11px;
        word-break: break-word;
        line-height: 1.4;
    }

    .newsletter-section {
        padding: 40px 20px;
        margin: 40px 15px;
        border-radius: 16px;
    }

    .newsletter-content h2 {
        font-size: 28px;
    }

    .newsletter-content p {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .page-header {
        padding: 140px 0 50px;
        margin-top: 0;
    }

    .page-header h1 {
        font-size: 36px;
        margin-top: 0;
        padding-top: 0;
    }

    .page-header p {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .info-cards-grid,
    .stats-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card,
    .stat-card {
        padding: 24px 20px;
    }

    .service-features li {
        font-size: 14px;
        padding-left: 28px;
    }

    .service-features li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .footer-section ul {
        text-align: center;
    }

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

    .contact-info h2 {
        font-size: 32px;
    }

    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detailed-card.reverse {
        direction: ltr;
    }

    .news-badge {
        font-size: 11px;
        padding: 6px 16px;
        top: 15px;
        right: 15px;
    }

    .service-card img {
        height: 280px;
        padding: 15px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   BENEFITS GRID (Modern Card Layout)
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.outcome-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    padding: 30px 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.outcome-box p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.outcome-box strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ============================================
   REVITALIZATION GRID (Stats Layout)
   ============================================ */
.revitalization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

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

.stat-number-large {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label-large {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0 0 0;
}

.stat-card .stat-icon {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
}

