/* White Dome - Professional Website Styles */

/* CSS Variables */
:root {
    --primary-color: #C8A877;
    --secondary-color: #D4B891;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    direction: ltr;
}

body[dir="rtl"] {
    direction: rtl;
    font-family: 'Zain', sans-serif;
}

body[dir="rtl"] *,
body[dir="rtl"] h1,
body[dir="rtl"] h2,
body[dir="rtl"] h3,
body[dir="rtl"] h4,
body[dir="rtl"] h5,
body[dir="rtl"] h6,
body[dir="rtl"] p,
body[dir="rtl"] a,
body[dir="rtl"] button,
body[dir="rtl"] input,
body[dir="rtl"] textarea,
body[dir="rtl"] label,
body[dir="rtl"] li,
body[dir="rtl"] span {
    font-family: 'Zain', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #000000;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #333333;
}

a {
    color: #C8A877;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #b8965f;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Clean Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 45px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C8A877;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #C8A877;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #C8A877;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.lang-btn {
    background: white;
    border: none;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #333333;
}

.lang-btn.active {
    background: #C8A877;
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #C8A877;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Buttons - AWS Square Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px; /* Modern rounded */
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Glass & Light Engine Hero */
.dark-mode-hero {
    padding: 180px 0 160px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050505; /* Deep dark base */
    overflow: hidden;
}

.abstract-engine-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#spaceCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 1; /* Managed dynamically by JS based on scroll */
    transition: opacity 0.5s ease;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
    z-index: 5;
    pointer-events: none;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orb-drift 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 168, 119, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(100, 100, 110, 0.1) 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 168, 119, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes orb-drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
    100% { transform: translate(-30px, 30px) scale(0.9); }
}

.relative-z {
    position: relative;
    z-index: 10;
}

.hero-content-centered {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Typography Overhaul for Dark Mode Hero */
.dark-mode-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F9DFB0 0%, #C8A877 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    max-width: 900px;
}

.dark-mode-hero .hero-subtitle {
    font-size: 1.35rem;
    color: #888888;
    margin-bottom: 3rem;
    max-width: 650px;
    line-height: 1.6;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cinematic Load Animations */
.cinematic-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: cinematic-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

.hero-logo-wrapper {
    perspective: 1000px;
    margin-bottom: 2rem;
    z-index: 20;
    position: relative;
    display: inline-block;
}

.hero-center-logo {
    width: 220px;
    height: auto;
    display: block;
    /* No shadow, no float movement as requested */
}

.logo-sweep-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Complex gradient for realistic 3D metallic/glass reflection */
    background: linear-gradient(
        105deg,
        transparent 10%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.4) 35%,
        rgba(255, 255, 255, 0.9) 40%,
        rgba(255, 255, 255, 1.0) 42%,
        rgba(200, 168, 119, 0.5) 48%,
        rgba(255, 255, 255, 0.1) 60%,
        transparent 80%
    );
    background-size: 250% 100%;
    background-position: 250% 0; /* Hidden state */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: plus-lighter;
}

.logo-sweep-light.active-sweep {
    /* Uses dynamic CSS variables injected by Javascript for organic timing */
    animation: sweep-flare var(--sweep-duration, 1.5s) cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: var(--sweep-opacity, 1.0);
    background-size: var(--sweep-size, 250%) 100%;
}

@keyframes sweep-flare {
    0% { background-position: 250% 0; }
    100% { background-position: -150% 0; }
}

@keyframes cinematic-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed interactive centerpiece as requested */

/* Glowing Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glow {
    background: linear-gradient(135deg, #C8A877 0%, #B08D55 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(200, 168, 119, 0.2);
}
.btn-glow:hover {
    background: linear-gradient(135deg, #D4B891 0%, #C8A877 100%);
    box-shadow: 0 15px 30px rgba(200, 168, 119, 0.3);
}

.btn-glass {
    background: transparent;
    border: 1px solid #C8A877;
    color: #C8A877 !important;
}
.btn-glass:hover {
    background: rgba(200, 168, 119, 0.1);
    border-color: #D4B891;
    color: #F9DFB0 !important;
}

@media (max-width: 768px) {
    .dark-mode-hero {
        padding: 120px 0 80px;
    }
    .dark-mode-hero .hero-title {
        font-size: 2.5rem;
    }
    .dark-mode-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    /* Mobile hero specific tweaks */
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta .btn {
        width: 100%;
        min-width: 250px;
    }
}

/* Who We Work With Section */
/* AI Introduction - Homepage */
.ai-intro-home {
    padding: 80px 0;
    background: #ffffff;
}

.ai-intro-body {
    max-width: 780px;
    margin: 2.5rem auto 0;
    text-align: center;
}

.ai-intro-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.ai-intro-example {
    max-width: 680px;
    margin: 2.5rem auto 0;
    padding: 1.25rem 2rem;
    border-left: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(200, 168, 119, 0.06) 0%, rgba(200, 168, 119, 0.02) 100%);
    border-radius: 0 8px 8px 0;
}

body[dir="rtl"] .ai-intro-example {
    border-left: none;
    border-right: 3px solid var(--primary-color);
    border-radius: 8px 0 0 8px;
}

.ai-intro-example span {
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.7;
    font-style: italic;
}

/* Real Value Section */
.real-value {
    padding: 80px 0;
    background: var(--light-gray);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(200, 168, 119, 0.2);
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Why White Dome Section */
.why-white-dome {
    padding: 80px 0;
    background: white;
}

.intro-text {
    font-size: 1.2rem;
    color: #666666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.specialization {
    text-align: center;
    margin-bottom: 4rem;
}

.specialization h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.specialization-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.specialization-list li {
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.principles {
    margin-bottom: 4rem;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.principle-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.principle-content p {
    color: #666666;
    line-height: 1.6;
}

.closing-statement {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.closing-statement p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.tagline p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tagline strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-left {
        flex: none;
    }
    
    .hero-logo-image {
        height: 120px;
    }
    
    .soft-glow {
        width: 150px;
        height: 150px;
    }
    
    .gentle-wave {
        width: 120px;
        height: 120px;
    }
    
    .particle-1 {
        width: 6px;
        height: 6px;
        top: -15px;
        right: -10px;
    }
    
    .particle-2 {
        width: 4px;
        height: 4px;
        bottom: -10px;
        left: -15px;
    }
    
    .particle-3 {
        width: 3px;
        height: 3px;
        top: 20px;
        left: -18px;
    }
    
    .hero-right {
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        min-width: 200px;
    }
    
    .needs-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .specialization-list {
        grid-template-columns: 1fr;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
}
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #C8A877;
    color: #ffffff;
    border: 1px solid #C8A877;
}

.btn-primary:hover {
    background: #B8986A;
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #C8A877;
    border: 1px solid #C8A877;
}

.btn-secondary:hover {
    background: #C8A877;
    color: #ffffff;
}

.btn-package {
    background: #C8A877;
    color: #ffffff;
    width: 100%;
    margin-top: 1rem;
}

.btn-package:hover {
    background: #B8986A;
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(200, 168, 119, 0.03) 0%, rgba(200, 168, 119, 0.08) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(200, 168, 119, 0.1);
    color: #C8A877;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200, 168, 119, 0.2);
}

.badge-separator {
    margin: 0 0.75rem;
    color: #C8A877;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: #C8A877;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    text-align: center;
}

.hero-logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
}

.hero-tech-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 300px;
    margin: 0 auto;
}

.tech-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    text-align: center;
    transition: all 0.2s ease;
}

.tech-item:hover {
    border-color: #C8A877;
    color: #C8A877;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 168, 119, 0.15);
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Page Header */
.page-header {
    padding: 15rem 0 10rem;
    background: url('Gemini_Generated_Image_7juy537juy537juy.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.page-header h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Simple Hero */
.simple-hero {
    padding: 8rem 0 4rem;
    background: url('Gemini_Generated_Image_bw0pqnbw0pqnbw0p.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.simple-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.simple-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #C8A877;
    margin: 1rem auto 0;
}

/* Services Overview */
.services-overview {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 6rem 0;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro {
    font-size: 1.125rem;
    color: #475569;
    margin-top: 1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #C8A877 0%, #b8965f 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card:hover {
    border-color: rgba(200, 168, 119, 0.3);
    box-shadow: 0 10px 40px rgba(200, 168, 119, 0.1);
    transform: translateY(-4px);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-number {
    background: linear-gradient(135deg, #C8A877 0%, #b8965f 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-card h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.service-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(200, 168, 119, 0.1);
    color: #C8A877;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(200, 168, 119, 0.2);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .service-number {
        align-self: flex-start;
    }
}

/* Why Choose Us */
.why-choose-us {
    padding: 6rem 0;
    background: #f8fafc;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(200, 168, 119, 0.1);
    color: #C8A877;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(200, 168, 119, 0.2);
}

.why-intro {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-number {
    background: linear-gradient(135deg, #C8A877 0%, #b8965f 100%);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-content h4 {
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.feature-content p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.experience-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything */
}

.content-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.company-name {
    text-align: center;
    margin: 1rem 0;
    width: 100%;
    /* Removed positioning that was causing issues */
}

.company-name h3 {
    font-size: 1.8rem;
    font-weight: 900; /* Extra bold */
    color: #1e293b;
    margin: 0;
    text-transform: uppercase; /* All capital letters */
    letter-spacing: 2px; /* More official spacing */
    font-family: 'Inter', sans-serif;
}

.experience-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

.exp-stat {
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.exp-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.exp-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #C8A877;
    margin-bottom: 0.25rem;
}

.exp-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .experience-stats {
        position: static;
        margin-top: 1.5rem;
        right: auto;
        bottom: auto;
    }
}

/* Industries */
.industries {
    background: #ffffff;
    padding: 6rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.industries-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.industries-intro {
    font-size: 1.125rem;
    color: #475569;
    margin-top: 1rem;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C8A877 0%, #b8965f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.industry-item:hover::before {
    transform: scaleX(1);
}

.industry-item:hover {
    border-color: rgba(200, 168, 119, 0.3);
    box-shadow: 0 8px 25px rgba(200, 168, 119, 0.1);
    transform: translateY(-2px);
}

.industry-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.industry-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C8A877;
}

.industry-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.industry-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.industry-item p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
}

.clients .section-subtitle {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.client-item {
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.client-item:hover {
    transform: translateY(-5px);
}

.client-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.client-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.client-item:hover .client-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

@media (max-width: 768px) {
    .client-logos {
        gap: 2rem;
    }
    
    .client-logo {
        width: 60px;
        height: 60px;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #C8A877;
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    margin-bottom: 1rem;
}

.contact-method strong {
    color: #C8A877;
}

/* Forms */
.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C8A877;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.footer-brand h4 {
    color: #C8A877;
}

.footer-brand p {
    color: #cccccc;
}

.footer-links h5 {
    color: #C8A877;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #cccccc;
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: #C8A877;
}

.footer-links ul li span {
    color: #cccccc;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #cccccc;
    margin: 0;
}

/* Service Categories (Services Page) */
.service-categories {
    padding: 2rem 0;
}

.service-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
}

.category-header h2 {
    color: #C8A877;
    margin-bottom: 1rem;
}

.service-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.2s ease;
}

.service-item:hover {
    border-color: #C8A877;
    box-shadow: 0 8px 25px rgba(200, 168, 119, 0.15);
}

.service-item h3 {
    color: #C8A877;
    margin-bottom: 1rem;
}

.price-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.service-item ul {
    list-style: none;
}

.service-item ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C8A877;
    font-weight: bold;
}

/* Pricing Packages */
.pricing-packages {
    background: #f8f9fa;
    padding: 4rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid #e5e5e5;
    transition: all 0.2s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border-color: #C8A877;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #C8A877;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.package-header {
    margin-bottom: 2rem;
}

.package-header h3 {
    color: #C8A877;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li::before {
    content: '✓';
    color: #C8A877;
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Process Timeline */
.process-timeline {
    background: #f8f9fa;
    padding: 4rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-number {
    background: #C8A877;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #C8A877;
    margin-bottom: 0.5rem;
}

/* Simple Page Styles */
.what-we-do-simply {
    padding: 4rem 0;
}

.simple-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.simple-service {
    text-align: center;
    padding: 2rem;
}

.simple-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.simple-service h3 {
    color: #C8A877;
    margin-bottom: 1rem;
}

/* Real Examples */
.real-examples {
    background: #f8f9fa;
    padding: 4rem 0;
}

.example-case {
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.example-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
}

.example-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.example-text {
    padding: 3rem;
}

.example-text h3 {
    color: #C8A877;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.example-problem h4,
.example-solution h4,
.example-result h4 {
    color: #000000;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.example-solution ul {
    list-style: none;
    margin-left: 1rem;
}

.example-solution ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.example-solution ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C8A877;
    font-weight: bold;
}

.example-image {
    background: linear-gradient(135deg, #C8A877 0%, #b8965f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.example-visual {
    text-align: center;
    color: #ffffff;
}

.example-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.example-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number, .stat-icon {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-block;
}

/* Animated Icons */
.animated-pulse::before {
    content: '';
    width: 12px;
    height: 20px;
    background: #C8A877;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.animated-rotate::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid #C8A877;
    border-radius: 50%;
    border-top-color: transparent;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 2s linear infinite;
}

.animated-bars::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #C8A877;
    position: absolute;
    left: 10px;
    top: 10px;
    animation: bars1 1.5s infinite;
}

.animated-bars::after {
    content: '';
    width: 4px;
    height: 15px;
    background: #C8A877;
    position: absolute;
    left: 18px;
    top: 15px;
    animation: bars2 1.5s infinite 0.3s;
}

.animated-gear::before {
    content: '';
    width: 25px;
    height: 25px;
    border: 3px solid #C8A877;
    border-radius: 20%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 3s linear infinite;
}

.animated-slide::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #C8A877;
    position: absolute;
    left: 5px;
    top: 19px;
    animation: slide 2s infinite;
}

.animated-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #C8A877;
    border-radius: 50%;
    position: absolute;
    left: 16px;
    top: 16px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes bars1 {
    0%, 100% { height: 20px; }
    50% { height: 10px; }
}

@keyframes bars2 {
    0%, 100% { height: 15px; }
    50% { height: 25px; }
}

@keyframes slide {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

.animated-wave::before {
    content: '';
    width: 2px;
    height: 15px;
    background: #C8A877;
    position: absolute;
    left: 10px;
    top: 12px;
    animation: wave1 1.2s infinite;
}

.animated-wave::after {
    content: '';
    width: 2px;
    height: 18px;
    background: #C8A877;
    position: absolute;
    left: 15px;
    top: 11px;
    animation: wave2 1.2s infinite 0.2s;
}

.animated-screen::before {
    content: '';
    width: 25px;
    height: 15px;
    border: 2px solid #C8A877;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: screen 2s infinite;
}

.animated-move::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #C8A877;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 16px;
    animation: move 2s infinite;
}

@keyframes wave1 {
    0%, 100% { height: 15px; }
    50% { height: 8px; }
}

@keyframes wave2 {
    0%, 100% { height: 18px; }
    50% { height: 12px; }
}

@keyframes screen {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes move {
    0% { transform: translateX(0); }
    25% { transform: translateX(10px); }
    50% { transform: translateX(20px); }
    75% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

/* Additional Animated Icons */
.animated-cross::before {
    content: '';
    width: 20px;
    height: 3px;
    background: #C8A877;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: cross1 2s infinite;
}

.animated-cross::after {
    content: '';
    width: 3px;
    height: 20px;
    background: #C8A877;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: cross2 2s infinite 0.5s;
}

.animated-folder::before {
    content: '';
    width: 25px;
    height: 18px;
    border: 2px solid #C8A877;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: folder 2.5s infinite;
}

.animated-house::before {
    content: '';
    width: 20px;
    height: 15px;
    border: 2px solid #C8A877;
    border-top: none;
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    animation: bounce 2s infinite;
}

.animated-house::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 10px solid #C8A877;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translateX(-50%);
}

.animated-connect::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #C8A877;
    border-radius: 50%;
    position: absolute;
    left: 8px;
    top: 16px;
    animation: connect1 2s infinite;
}

.animated-connect::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #C8A877;
    border-radius: 50%;
    position: absolute;
    right: 8px;
    top: 16px;
    animation: connect2 2s infinite 0.5s;
}

.animated-document::before {
    content: '';
    width: 20px;
    height: 25px;
    border: 2px solid #C8A877;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: document 2s infinite;
}

.animated-factory::before {
    content: '';
    width: 25px;
    height: 20px;
    border: 2px solid #C8A877;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    animation: factory 2.5s infinite;
}

.animated-factory::after {
    content: '';
    width: 4px;
    height: 12px;
    background: #C8A877;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    animation: smoke 1.5s infinite;
}

.animated-box::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #C8A877;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: box 2.5s infinite;
}

.animated-book::before {
    content: '';
    width: 18px;
    height: 22px;
    border: 2px solid #C8A877;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: book 2s infinite;
}

.animated-book::after {
    content: '';
    width: 12px;
    height: 1px;
    background: #C8A877;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.animated-mobile::before {
    content: '';
    width: 15px;
    height: 25px;
    border: 2px solid #C8A877;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: mobile 2s infinite;
}

.animated-mobile::after {
    content: '';
    width: 3px;
    height: 3px;
    background: #C8A877;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translateX(-50%);
}

.animated-scale::before {
    content: '';
    width: 25px;
    height: 2px;
    background: #C8A877;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: scale 2.5s infinite;
}

.animated-scale::after {
    content: '';
    width: 2px;
    height: 12px;
    background: #C8A877;
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translateX(-50%);
}

.animated-calendar::before {
    content: '';
    width: 20px;
    height: 22px;
    border: 2px solid #C8A877;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: calendar 2s infinite;
}

.animated-calendar::after {
    content: '';
    width: 2px;
    height: 6px;
    background: #C8A877;
    position: absolute;
    left: 44%;
    top: 35%;
    box-shadow: 8px 0 0 #C8A877;
}

.animated-coin::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid #C8A877;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: coin 2s infinite;
}

.animated-search::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #C8A877;
    border-radius: 50%;
    position: absolute;
    left: 45%;
    top: 45%;
    transform: translate(-50%, -50%);
}

.animated-search::after {
    content: '';
    width: 2px;
    height: 8px;
    background: #C8A877;
    position: absolute;
    right: 10px;
    bottom: 10px;
    transform: rotate(45deg);
    animation: search 1.5s infinite;
}

.animated-report::before {
    content: '';
    width: 18px;
    height: 22px;
    border: 2px solid #C8A877;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: report 2s infinite;
}

/* Additional Keyframes */
@keyframes cross1 {
    0%, 100% { width: 20px; opacity: 1; }
    50% { width: 15px; opacity: 0.7; }
}

@keyframes cross2 {
    0%, 100% { height: 20px; opacity: 1; }
    50% { height: 15px; opacity: 0.7; }
}

@keyframes folder {
    0%, 100% { transform: translate(-50%, -50%) rotateY(0deg); }
    50% { transform: translate(-50%, -50%) rotateY(15deg); }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -55%); }
}

@keyframes connect1 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes connect2 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes document {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes factory {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes smoke {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.8; transform: translateX(-50%) translateY(-5px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

@keyframes box {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(-2deg); }
    75% { transform: translate(-50%, -50%) rotate(2deg); }
}

@keyframes book {
    0%, 100% { transform: translate(-50%, -50%) rotateY(0deg); }
    50% { transform: translate(-50%, -50%) rotateY(10deg); }
}

@keyframes mobile {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -52%); }
}

@keyframes scale {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-50%, -50%) rotate(-5deg); }
    75% { transform: translate(-50%, -50%) rotate(5deg); }
}

@keyframes calendar {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes coin {
    0% { transform: translate(-50%, -50%) rotateY(0deg); }
    50% { transform: translate(-50%, -50%) rotateY(90deg); }
    100% { transform: translate(-50%, -50%) rotateY(180deg); }
}

@keyframes search {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes report {
    0%, 100% { transform: translate(-50%, -50%); opacity: 1; }
    50% { transform: translate(-50%, -48%); opacity: 0.9; }
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .example-content,
    .example-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .example-text {
        padding: 2rem;
    }
    
    .example-image {
        padding: 2rem;
    }
    
    .example-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Common Questions */
.common-questions {
    padding: 4rem 0;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.qa-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #C8A877;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.qa-item h4 {
    color: #C8A877;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Simple Benefits */
.simple-benefits {
    background: #f8f9fa;
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #C8A877;
    margin-bottom: 1rem;
}

/* Simple Process */
.simple-process {
    padding: 4rem 0;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    background: #C8A877;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #C8A877;
    margin-bottom: 0.75rem;
}

/* Simple CTA */
.simple-cta {
    background: linear-gradient(135deg, #C8A877 0%, #b8965f 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.simple-cta h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.simple-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-direct {
    margin-top: 2rem;
}

.contact-direct p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Arabic RTL Support */
body[dir="rtl"] {
    font-family: 'Inter', 'Segoe UI', Tahoma, Arial, sans-serif;
}

body[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

body[dir="rtl"] .feature-item {
    flex-direction: row-reverse;
}

body[dir="rtl"] .step-item {
    flex-direction: row-reverse;
}

body[dir="rtl"] .timeline-item {
    flex-direction: row-reverse;
}

body[dir="rtl"] .example-content.reverse {
    grid-template-columns: 2fr 1fr;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.package-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll-triggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children inside a grid */
.reveal-stagger .reveal {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

/* Subtle hover lifts for cards */
.benefit-item,
.qa-item,
.simple-service {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-item:hover,
.qa-item:hover,
.simple-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Example case hover */
.example-case {
    transition: box-shadow 0.3s ease;
}

.example-case:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Step connector line */
.step-item {
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% - 30px);
    background: linear-gradient(to bottom, #C8A877, transparent);
}

body[dir="rtl"] .step-item:not(:last-child)::after {
    left: auto;
    right: 30px;
}

@media (max-width: 768px) {
    .step-item:not(:last-child)::after {
        display: none;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #C8A877;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8965f;
}

/* New Component Styles for Enhanced Design */

/* Hero Badge Styles */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C8A877 0%, #D4B77B 100%);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 168, 119, 0.3);
}

/* Service Number Indicators */
.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C8A877 0%, #D4B77B 100%);
    color: #000;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

/* AWS-style Component Structure */
.service-visual {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.service-description h3 {
    margin: 0 0 8px 0;
    color: #000;
}

.service-description p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Example Case Styling */
.example-case {
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.example-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0;
    min-height: 400px;
}

.example-content.reverse {
    grid-template-columns: 300px 1fr;
}

.example-text {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.example-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.example-visual {
    text-align: center;
    width: 100%;
}

.example-tag {
    display: inline-block;
    background: #C8A877;
    color: #000;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-problem,
.example-solution,
.example-result {
    margin-bottom: 20px;
}

.example-problem h4,
.example-solution h4,
.example-result h4 {
    color: #C8A877;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.example-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat-box {
    text-align: center;
}

.stat-box .stat-number {
    font-size: 36px;
    color: #C8A877;
    margin-bottom: 4px;
}

.stat-box .stat-label {
    font-size: 14px;
    color: #666;
}

/* Main Section - Simplified Homepage */
.main-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.main-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000;
}

.main-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

/* =========================================
   LEGAL PAGES & COMPLIANCE STYLES
   ========================================= */

/* Legal Page Header */
.legal-page-header {
    padding: 12rem 0 5rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.legal-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-badge {
    display: inline-block;
    background: rgba(200, 168, 119, 0.15);
    color: #C8A877;
    border: 1px solid rgba(200, 168, 119, 0.4);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.legal-effective-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* Legal Content Layout */
.legal-content-section {
    padding: 5rem 0;
    background: #fafafa;
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Legal Sidebar */
.legal-sidebar {
    position: sticky;
    top: 90px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.8rem;
}

.legal-sidebar h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999999;
    margin-bottom: 1rem;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 1.5rem;
}

.legal-nav a {
    color: #444444;
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.legal-nav a:hover {
    background: rgba(200, 168, 119, 0.1);
    color: #C8A877;
}

.legal-compliance-box {
    background: rgba(200, 168, 119, 0.07);
    border: 1px solid rgba(200, 168, 119, 0.25);
    border-radius: 8px;
    padding: 1rem;
}

.legal-compliance-box p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #C8A877;
    margin-bottom: 0.6rem;
}

.legal-compliance-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-compliance-box ul li {
    font-size: 0.78rem;
    color: #555555;
    line-height: 1.5;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(200, 168, 119, 0.1);
}

.legal-compliance-box ul li:last-child {
    border-bottom: none;
}

/* Legal Main Content */
.legal-main {
    min-width: 0;
}

.legal-section {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h2 {
    font-size: 1.4rem;
    color: #111111;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f0f0f0;
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333333;
    margin: 1.5rem 0 0.8rem;
}

.legal-section p {
    color: #444444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: #C8A877;
    text-decoration: underline;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
}

.legal-list li {
    color: #444444;
    line-height: 1.8;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: #C8A877;
    border-radius: 50%;
}

/* Legal Purpose Grid */
.legal-purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.2rem 0;
}

.legal-purpose-item {
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 1.2rem;
}

.legal-purpose-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.5rem;
}

.legal-purpose-item p {
    font-size: 0.85rem;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

/* Legal Notice Box */
.legal-notice-box {
    background: rgba(200, 168, 119, 0.08);
    border-left: 3px solid #C8A877;
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.2rem;
    margin-top: 1.5rem;
}

.legal-notice-box p {
    font-size: 0.88rem;
    color: #444444;
    margin: 0;
}

/* Rights Grid */
.rights-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.rights-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 1rem 1.2rem;
}

.rights-icon {
    color: #C8A877;
    font-size: 0.6rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.rights-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.3rem;
}

.rights-item p {
    font-size: 0.85rem;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

/* Legal Contact Block */
.legal-contact-block {
    background: #111111;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #C8A877;
    min-width: 130px;
}

.contact-value {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Legal Documents Grid */
.legal-docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.2rem;
}

.legal-doc-card {
    display: flex;
    flex-direction: column;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.legal-doc-card:hover {
    border-color: #C8A877;
    box-shadow: 0 4px 16px rgba(200, 168, 119, 0.15);
    transform: translateY(-2px);
}

.legal-doc-card.active-doc {
    border-color: #C8A877;
    background: rgba(200, 168, 119, 0.05);
}

.legal-doc-icon {
    color: #C8A877;
    margin-bottom: 0.8rem;
}

.legal-doc-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.5rem;
}

.legal-doc-card p {
    font-size: 0.82rem;
    color: #666666;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 0.8rem;
}

.legal-doc-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #C8A877;
    text-decoration: none;
}

/* Compliance Pillars Grid (compliance.html) */
.compliance-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.compliance-pillar {
    text-align: center;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 1.5rem 1rem;
}

.pillar-icon {
    color: #C8A877;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
}

.compliance-pillar h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.4rem;
}

.compliance-pillar p {
    font-size: 0.78rem;
    color: #777777;
    margin: 0;
}

/* =========================================
   COMPLIANCE SECTION (Homepage)
   ========================================= */

.compliance-section {
    padding: 6rem 0;
    background: #0d0d0d;
}

.compliance-section .section-title {
    color: #ffffff;
}

.compliance-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.compliance-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.2s ease;
}

.compliance-card:hover {
    border-color: rgba(200, 168, 119, 0.4);
    transform: translateY(-3px);
}

.compliance-icon {
    color: #C8A877;
    margin-bottom: 1rem;
}

.compliance-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.compliance-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

.compliance-footer-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================
   FOOTER CITRA NOTE
   ========================================= */

.footer-citra-note {
    display: inline-block;
    margin-top: 0.8rem;
    background: rgba(200, 168, 119, 0.12);
    border: 1px solid rgba(200, 168, 119, 0.3);
    border-radius: 4px;
    padding: 0.3rem 0.7rem;
}

.footer-citra-note span {
    font-size: 0.7rem;
    color: #C8A877;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* =========================================
   FORM CONSENT CHECKBOX
   ========================================= */

.form-consent {
    margin-top: 0.5rem;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: #555555;
    line-height: 1.5;
    font-weight: 400;
}

.consent-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    accent-color: #C8A877;
    cursor: pointer;
}

.consent-label a {
    color: #C8A877;
    text-decoration: underline;
}

/* =========================================
   RESPONSIVE: LEGAL PAGES
   ========================================= */

@media (max-width: 768px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-purpose-grid {
        grid-template-columns: 1fr;
    }

    .legal-docs-grid {
        grid-template-columns: 1fr;
    }

    .compliance-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-contact-block {
        padding: 1rem;
    }

    .contact-detail {
        flex-direction: column;
        gap: 0.2rem;
    }
}

@media (max-width: 480px) {
    .compliance-pillars-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}
