/* ============================================================
   CSS VARIABLES & DARK MODE
   ============================================================ */
:root {
    /* Light mode */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --card-hover-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --input-bg: #ffffff;
    --input-border: #e2e8f0;
    --input-focus: #f0b429;
    --hero-overlay: rgba(15, 23, 42, 0.85);
    --trust-bg: #f8fafc;
    --faq-bg: #f8fafc;
    --footer-bg: #0f172a;
    --footer-text: #94a3b8;
    --scrollbar-track: #f1f5f9;
    --scrollbar-thumb: #cbd5e1;
    --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --card-bg: #1e293b;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --card-hover-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --input-bg: #1e293b;
    --input-border: #334155;
    --input-focus: #f0b429;
    --hero-overlay: rgba(15, 23, 42, 0.9);
    --trust-bg: #1e293b;
    --faq-bg: #1e293b;
    --footer-bg: #0a0f1a;
    --footer-text: #64748b;
    --scrollbar-track: #1e293b;
    --scrollbar-thumb: #334155;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--input-focus);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: linear-gradient(135deg, #f0b429, #d49a1e);
    color: #fff;
    box-shadow: 0 4px 20px rgba(240, 180, 41, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(240, 180, 41, 0.45);
    color: #fff;
}

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

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.1rem;
}

.btn-hero {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================================
   HEADER (in partials)
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(var(--bg-primary-rgb, 255, 255, 255), 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition);
}

[data-theme="dark"] .site-header {
    background: rgba(15, 23, 42, 0.92);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: color var(--transition);
}

.logo span {
    color: #f0b429;
}

.logo i {
    font-size: 2rem;
    color: #f0b429;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f0b429;
    transition: width var(--transition);
}

.nav-links a:hover {
    color: #f0b429;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dark mode toggle */
.dark-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all var(--transition);
}

.dark-toggle:hover {
    background: var(--bg-tertiary);
    color: #f0b429;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1a202c 50%, #0f172a 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    color: #fff;
}

.hero-badge-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(240, 180, 41, 0.15);
    border: 1px solid rgba(240, 180, 41, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f0b429;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-badge-outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.hero-badge-outline i {
    color: #f0b429;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #f0b429, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.8;
    opacity: 0.85;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f0b429;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* Hero Media */
.hero-media {
    position: relative;
}

.hero-media-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-media-wrapper:hover .hero-image {
    transform: scale(1.02);
}

/* Floating cards */
.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: float 3s ease-in-out infinite;
}

[data-theme="dark"] .hero-floating-card {
    background: rgba(30, 41, 59, 0.95);
}

.hero-floating-card-1 {
    bottom: 30px;
    left: 30px;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    top: 30px;
    right: 30px;
    animation-delay: 1.5s;
}

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

.floating-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f0b429, #d49a1e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.floating-card-title {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.floating-card-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
    padding: 60px 0;
    background: var(--trust-bg);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    transition: all var(--transition);
}

.trust-item:hover {
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    transform: translateY(-4px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b429, #d49a1e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.trust-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(240, 180, 41, 0.1);
    color: #f0b429;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    transition: color var(--transition);
}

.section-title .highlight {
    color: #f0b429;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 100px 0;
    background: var(--bg-primary);
    transition: background var(--transition);
}

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

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f0b429, #f59e0b);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #f0b429, #d49a1e);
    transform: scale(1.1) rotate(-5deg);
}

.service-icon {
    font-size: 32px;
    color: #f0b429;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    color: #fff;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

.service-read-more {
    background: none;
    border: none;
    color: #f0b429;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.service-read-more:hover {
    gap: 14px;
    color: #d49a1e;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    transition: background var(--transition);
}

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

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

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

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
}

[data-theme="dark"] .about-image-badge {
    background: #1e293b;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f0b429;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b429;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects-section {
    padding: 100px 0;
    background: var(--bg-primary);
    transition: background var(--transition);
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #f0b429;
    color: #f0b429;
}

.filter-btn.active {
    background: linear-gradient(135deg, #f0b429, #d49a1e);
    color: #fff;
    border-color: #f0b429;
}

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

.project-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

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

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

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

.project-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.project-overlay-link {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 1.2rem;
    transition: all var(--transition);
    transform: scale(0.8);
}

.project-card:hover .project-overlay-link {
    transform: scale(1);
}

.project-overlay-link:hover {
    background: #f0b429;
    color: #fff;
}

.project-content {
    padding: 24px;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.project-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f0b429;
    font-weight: 600;
    transition: all var(--transition);
    margin-top: 8px;
}

.project-link:hover {
    gap: 14px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 100px 0;
    background: var(--faq-bg);
    transition: background var(--transition);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-header .section-title,
.faq-header .section-subtitle {
    text-align: left;
}

.faq-contact-cta {
    margin-top: 30px;
    padding: 24px 30px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b429;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.faq-contact-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: #f0b429;
    box-shadow: 0 4px 20px rgba(240, 180, 41, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: #f0b429;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b429;
    transition: all var(--transition);
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #f0b429, #d49a1e);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    display: none;
}

.faq-answer-content {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-top: 6px;
    border-top: 1px solid var(--border-color);
}

.faq-category {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 12px;
    background: rgba(240, 180, 41, 0.1);
    color: #f0b429;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    transition: background var(--transition);
}

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

.contact-info .section-title,
.contact-info .section-subtitle {
    text-align: left;
}

.contact-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.contact-detail:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b429;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-detail p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-detail a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.contact-detail a:hover {
    color: #f0b429;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--input-border);
    border-radius: 12px;
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--input-focus);
    box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-success {
    padding: 16px 20px;
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid #4ade80;
    border-radius: 12px;
    color: #166534;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

[data-theme="dark"] .form-success {
    color: #86efac;
    background: rgba(74, 222, 128, 0.05);
}

.form-success i {
    font-size: 1.5rem;
    color: #4ade80;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 180, 41, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.cta-banner-text h2 .highlight {
    color: #f0b429;
}

.cta-banner-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ============================================================
   FOOTER (in partials)
   ============================================================ */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: #f0b429;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
    font-size: 1rem;
}

.footer-social a:hover {
    background: #f0b429;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* ============================================================
   AOS ANIMATIONS (Lightweight)
   ============================================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-media {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-floating-card-1 {
        bottom: 20px;
        left: 20px;
    }

    .hero-floating-card-2 {
        top: 20px;
        right: 20px;
    }

    .about-grid,
    .faq-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content .section-title,
    .about-content .section-badge {
        text-align: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .faq-header .section-title,
    .faq-header .section-subtitle {
        text-align: center;
    }

    .faq-contact-cta {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-image {
        height: 300px;
    }

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

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

    .trust-item {
        padding: 12px;
        gap: 12px;
    }

    .trust-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
    }

    .trust-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .trust-number {
        font-size: 1.3rem;
    }

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