/*
Theme Name: Company Profile Modern
Theme URI: https://example.com
Author: Your Company
Author URI: https://example.com
Description: A modern, beautiful company profile theme with gradient designs inspired by contemporary React templates
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: company-profile-modern
*/

/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --blue-950: #172554;

    --yellow-400: #facc15;
    --yellow-500: #eab308;
    --yellow-600: #ca8a04;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --white: #ffffff;
    --black: #000000;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

/* ===========================
   Layout Utilities
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    background-color: var(--blue-100);
    color: var(--blue-700);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-badge.badge-light {
    background-color: rgba(250, 204, 21, 0.2);
    color: var(--yellow-400);
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.section-divider {
    height: 4px;
    width: 5rem;
    background-color: var(--yellow-400);
    margin-bottom: 1.5rem;
}

.section-divider.divider-light {
    background-color: var(--yellow-400);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-header h2 {
    color: var(--blue-900);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-700);
}

/* ===========================
   Header & Navigation
   =========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img {
    height: 56px;
    width: 56px;
    object-fit: contain;
}

.logo-text {
    color: var(--blue-900);
    font-size: 1rem;
    font-weight: 600;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--blue-600);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-700);
}

/* ===========================
   Hero Section - Modern
   =========================== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--gray-50);
    overflow: hidden;
}

.hero-modern::before {
    display: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--gray-50) 0%, rgba(249, 250, 251, 0.8) 20%, transparent 100%);
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 6rem 3rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: var(--gray-900);
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.hero-badge .badge-icon {
    width: 18px;
    height: 18px;
    color: var(--yellow-400);
}

.hero-badge span {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.hero-modern h1 {
    color: var(--blue-900);
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--blue-700);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1.125rem 2.25rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    color: var(--blue-900);
    box-shadow: 0 10px 30px -5px rgba(250, 204, 21, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -5px rgba(250, 204, 21, 0.5);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--blue-700);
    border-color: var(--blue-300);
}

.btn-secondary:hover {
    background-color: var(--blue-50);
    border-color: var(--blue-400);
}

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

.hero-stats .stat-item {
    text-align: left;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    color: var(--blue-600);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    display: none;
}

.hero-image-wrapper img {
    display: none;
}

.hero-image-overlay {
    display: none;
}

.hero-floating-card {
    display: none;
}

.floating-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.floating-title {
    color: var(--blue-900);
    font-weight: 600;
}

.floating-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===========================
   About Section
   =========================== */
.section-about {
    padding: 5rem 0 8rem;
    background-color: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-decoration {
    position: absolute;
    width: 12rem;
    height: 12rem;
    border-radius: 1rem;
    z-index: -1;
}

.about-decoration.decoration-1 {
    background-color: var(--yellow-400);
    bottom: -1.5rem;
    right: -1.5rem;
}

.about-decoration.decoration-2 {
    background-color: var(--blue-600);
    top: -1.5rem;
    left: -1.5rem;
}

.about-content h2 {
    color: var(--blue-900);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.about-highlights {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--yellow-400);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-item span {
    color: var(--gray-700);
}

/* ===========================
   Services Section
   =========================== */
.section-services {
    padding: 5rem 0 8rem;
    background-color: var(--gray-50);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card-modern {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.service-card-modern:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon-modern {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, var(--blue-600), var(--blue-800));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-modern .icon-svg {
    width: 28px;
    height: 28px;
    color: var(--yellow-400);
}

.service-card-modern h3 {
    font-size: 1.25rem;
    color: var(--blue-900);
    margin-bottom: 1rem;
}

.service-card-modern p {
    color: var(--gray-600);
    line-height: 1.75;
}

.detailed-services {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.detailed-services h3 {
    font-size: 1.875rem;
    color: var(--blue-900);
    margin-bottom: 2rem;
    text-align: center;
}

.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.detail-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.detail-service-item:hover {
    background-color: var(--blue-50);
    border-color: var(--blue-200);
}

.detail-service-icon {
    width: 40px;
    height: 40px;
    background-color: var(--yellow-400);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-service-icon svg {
    width: 20px;
    height: 20px;
    color: var(--blue-900);
}

.detail-service-item span {
    color: var(--gray-700);
}

/* ===========================
   Why Choose Us Section
   =========================== */
.section-why-choose {
    padding: 5rem 0 8rem;
    background: linear-gradient(to bottom right, #1e3a8a, #1e40af, #172554);
    position: relative;
    overflow: hidden;
}

.why-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-why-choose .section-header h2 {
    color: var(--white);
}

.section-why-choose .section-header p {
    color: #dbeafe;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card-modern {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.feature-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-modern.gradient-blue {
    background: linear-gradient(to bottom right, var(--blue-500), var(--blue-700));
}

.feature-icon-modern.gradient-yellow {
    background: linear-gradient(to bottom right, var(--yellow-400), var(--yellow-600));
}

.feature-icon-modern svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.feature-card-modern h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card-modern p {
    color: #bfdbfe;
    line-height: 1.75;
}

/* ===========================
   Artikel Section
   =========================== */
.section-artikel {
    padding: 5rem 0 8rem;
    background-color: var(--white);
}

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

.article-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

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

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--yellow-400);
    color: var(--blue-900);
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.calendar-icon {
    width: 16px;
    height: 16px;
}

.article-content h3 {
    font-size: 1.25rem;
    color: var(--blue-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-content p {
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-600);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

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

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.article-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* ===========================
   Vision & Mission Section
   =========================== */
.section-vision {
    padding: 5rem 0 8rem;
    background-color: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vision-card {
    background: linear-gradient(to bottom right, var(--blue-600), var(--blue-800));
    padding: 3rem;
    border-radius: 1rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(250, 204, 21, 0.1);
    border-radius: 9999px;
    margin-right: -8rem;
    margin-top: -8rem;
}

.vision-content {
    position: relative;
    z-index: 10;
}

.vision-icon {
    width: 64px;
    height: 64px;
    background-color: var(--yellow-400);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-icon svg {
    width: 32px;
    height: 32px;
    color: var(--blue-900);
}

.vision-card h3 {
    font-size: 1.875rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.vision-card p {
    font-size: 1.125rem;
    color: #dbeafe;
    line-height: 1.75;
}

.mission-card {
    background-color: var(--gray-50);
    padding: 3rem;
    border-radius: 1rem;
    border: 2px solid var(--yellow-400);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, var(--blue-600), var(--blue-800));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
    color: var(--yellow-400);
}

.mission-card h3 {
    font-size: 1.875rem;
    color: var(--blue-900);
    margin-bottom: 1.5rem;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.mission-item .check-icon {
    width: 20px;
    height: 20px;
    color: var(--yellow-400);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.mission-item p {
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0;
}

/* ===========================
   Projects Section
   =========================== */
.section-projects {
    padding: 5rem 0 8rem;
    background-color: var(--gray-50);
}

.portfolio-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item-modern {
    position: relative;
    height: 300px;
    background-color: var(--gray-100);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.portfolio-overlay-modern {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.95), rgba(23, 37, 84, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 1;
    transition: all 0.3s ease;
}

.portfolio-item-modern:hover .portfolio-overlay-modern {
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 1), rgba(23, 37, 84, 1));
}

.portfolio-item-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.portfolio-overlay-modern h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.portfolio-overlay-modern p {
    color: #bfdbfe;
    text-align: center;
    line-height: 1.75;
    margin: 0;
}

/* ===========================
   Contact Section
   =========================== */
.section-contact {
    padding: 5rem 0 8rem;
    background-color: var(--white);
}

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

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--blue-900);
    margin-bottom: 2rem;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
}

.contact-info-item.support-hours {
    background: linear-gradient(to bottom right, var(--blue-600), var(--blue-800));
    color: var(--white);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--blue-600);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item.support-hours .contact-info-icon {
    background-color: var(--yellow-400);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yellow-400);
}

.contact-info-item.support-hours .contact-info-icon svg {
    color: var(--blue-900);
}

.contact-info-item h4 {
    color: var(--blue-900);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-item.support-hours h4 {
    color: var(--white);
}

.contact-info-item p,
.contact-info-item a {
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0;
}

.contact-info-item.support-hours p {
    color: #dbeafe;
}

.contact-info-item a:hover {
    color: var(--blue-600);
}

.contact-form-wrapper {
    background-color: var(--gray-50);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--yellow-400);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--blue-900);
    margin-bottom: 1.5rem;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group-modern input,
.form-group-modern textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group-modern textarea {
    resize: none;
}

.btn-submit-modern {
    width: 100%;
    background: linear-gradient(to right, var(--blue-600), var(--blue-800));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-submit-modern:hover {
    background: linear-gradient(to right, var(--blue-700), var(--blue-900));
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background-color: var(--blue-600);
    color: var(--white);
    padding: 3.75rem 0 1.875rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    font-size: 0.9375rem;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--yellow-400);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-container,
    .about-grid,
    .vision-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-modern,
    .features-grid-modern,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detailed-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .container {
        padding: 0 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .main-navigation a {
        display: block;
        padding: 1rem 0;
    }

    .hero-modern {
        min-height: auto;
        padding: 5rem 0 3rem;
    }

    .hero-pattern {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-modern h1 {
        font-size: 2.25rem;
    }

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

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-stats .stat-item {
        padding: 1.25rem;
    }

    .hero-image {
        display: none;
    }

    .hero-floating-card {
        position: static;
        margin-top: 2rem;
    }

    .services-grid-modern,
    .features-grid-modern,
    .detailed-services-grid,
    .portfolio-grid-modern,
    .articles-grid {
        grid-template-columns: 1fr;
    }

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

    .section-about,
    .section-services,
    .section-why-choose,
    .section-vision,
    .section-projects,
    .section-contact {
        padding: 3rem 0 5rem;
    }
}

/* ===========================
   Single Article Page
   =========================== */
.single-article-page {
    padding: 8rem 0 5rem;
    background-color: var(--white);
}

.article-single {
    max-width: 800px;
    margin: 0 auto;
}

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

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.article-breadcrumb a {
    color: var(--blue-600);
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: var(--blue-800);
}

.article-breadcrumb .separator {
    color: var(--gray-400);
}

.article-breadcrumb .current {
    color: var(--gray-700);
}

.article-category-badge {
    margin-bottom: 1rem;
}

.article-category-badge .badge {
    display: inline-block;
    background-color: var(--yellow-400);
    color: var(--blue-900);
    padding: 0.375rem 0.875rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-title {
    font-size: 2.5rem;
    color: var(--blue-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-meta-info {
    display: flex;
    gap: 2rem;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-icon {
    width: 18px;
    height: 18px;
    color: var(--blue-600);
}

.article-featured-image {
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content-wrapper {
    background-color: var(--white);
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-800);
}

.article-content h2 {
    color: var(--blue-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.875rem;
}

.article-content h3 {
    color: var(--blue-800);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.article-content h4 {
    color: var(--blue-700);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    list-style: inherit;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.article-content strong {
    color: var(--blue-900);
    font-weight: 600;
}

.article-content blockquote {
    border-left: 4px solid var(--yellow-400);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-700);
}

.article-content code {
    background-color: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.article-content pre {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.article-tags .tag {
    background-color: var(--blue-100);
    color: var(--blue-700);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.back-to-articles {
    margin-top: 1rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--blue-600);
    color: var(--white);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: var(--blue-700);
    transform: translateX(-4px);
}

.btn-back .arrow-icon {
    width: 20px;
    height: 20px;
}

/* Related Articles Section */
.related-articles-section {
    max-width: 1200px;
    margin: 5rem auto 0;
    padding-top: 5rem;
    border-top: 1px solid var(--gray-200);
}

.related-articles-section .section-title {
    text-align: center;
    color: var(--blue-900);
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.related-article-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-article-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.related-article-card .article-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.related-article-card .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-article-card .article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--yellow-400);
    color: var(--blue-900);
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-article-card .article-content {
    padding: 1.5rem;
}

.related-article-card h3 {
    font-size: 1.125rem;
    color: var(--blue-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.related-article-card p {
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.related-article-card .article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-600);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.related-article-card .article-link:hover {
    color: var(--blue-800);
    gap: 0.75rem;
}

.related-article-card .arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.related-article-card .article-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* No Content Message */
.no-content {
    text-align: center;
    padding: 5rem 2rem;
}

.no-content h2 {
    color: var(--blue-900);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-content p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .single-article-page {
        padding: 6rem 0 3rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-meta-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
    }
}

/* ===========================
   ANIMATION KEYFRAMES
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(10px, -20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, 0) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(10px, 20px) rotate(270deg);
        opacity: 0.6;
    }
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--yellow-400), var(--blue-600));
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 20%;
    width: 12px;
    height: 12px;
    animation-delay: 2s;
}

.particle-3 {
    top: 30%;
    left: 70%;
    width: 6px;
    height: 6px;
    animation-delay: 4s;
}

.particle-4 {
    top: 70%;
    left: 80%;
    width: 10px;
    height: 10px;
    animation-delay: 6s;
}

.particle-5 {
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    animation-delay: 8s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--blue-600);
    z-index: 10;
    cursor: pointer;
}

.scroll-indicator svg {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover svg {
    opacity: 1;
}

/* Button Animation */
.btn-animate {
    position: relative;
    overflow: hidden;
}

.btn-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

/* ===========================
   LANGUAGE TOGGLE
   =========================== */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-600);
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--blue-600);
}

.lang-btn.active {
    background-color: var(--blue-600);
    color: var(--white);
    border-color: var(--blue-600);
}

.lang-separator {
    color: var(--gray-300);
    font-weight: 300;
}

.lang-flag {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Language content visibility - managed by JS */
.lang-en {
    display: none;
}

body.lang-english .lang-id {
    display: none !important;
}

body.lang-english .lang-en {
    display: inline !important;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.section-gallery {
    padding: 5rem 0 8rem;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    display: inline-block;
    background-color: var(--yellow-400);
    color: var(--blue-900);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.gallery-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom:hover {
    background-color: var(--yellow-400);
}

.gallery-zoom svg {
    color: var(--blue-900);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.lightbox-title {
    text-align: center;
    color: var(--white);
    font-size: 1.25rem;
    margin-top: 1rem;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--yellow-400);
}

/* ===========================
   PARTNERS SECTION
   =========================== */
.section-partners {
    padding: 5rem 0 8rem;
    background: linear-gradient(to bottom right, #1e3a8a, #1e40af, #172554);
    position: relative;
    overflow: hidden;
}

.section-partners .section-header h2 {
    color: var(--white);
}

.section-partners .section-header p {
    color: #dbeafe;
}

.partners-slider {
    overflow: hidden;
    margin: 0 -2rem;
    padding: 2rem 0;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: slideInfinite 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background-color: var(--white);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-placeholder {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-900);
    text-align: center;
    padding: 0.5rem;
}

/* ===========================
   SERVICE CARDS WITH IMAGES
   =========================== */
.service-card-modern {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-icon-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.service-icon-overlay .icon-svg {
    width: 24px;
    height: 24px;
    color: var(--blue-900);
}

.service-card-content {
    position: relative;
    padding: 1.5rem;
    background: var(--white);
}

.service-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 0.75rem;
}

.service-card-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===========================
   RESPONSIVE - NEW SECTIONS
   =========================== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .language-toggle {
        position: absolute;
        right: 4rem;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }

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

    .gallery-item {
        aspect-ratio: 16/10;
    }

    .partners-track {
        gap: 2rem;
    }

    .partner-item {
        width: 140px;
        height: 80px;
        padding: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-particles {
        display: none;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 180px;
    }
}
