/* ===============================================
   SPIRAL - Consulting & Development Company
   Brand Colors: #2f2e7f (Blue), #dea962 (Gold)
   
   FONT USAGE GUIDELINES:
   - Aleo: Headlines, callouts, quotes - NO italics, NO all caps
   - Open Sans: Body copy, small text - italics OK, all caps OK
   =============================================== */

/* ===============================================
   CSS VARIABLES
   =============================================== */
:root {
    /* Colors */
    --primary-blue: #2f2e7f;
    --primary-blue-dark: #1f1e5f;
    --primary-blue-light: #3f3e9f;
    --gold: #dea962;
    --gold-light: #f5c88a;
    --light-grey: #f8f9fa;
    --white: #ffffff;
    --black: #0a0a0a;
    --text-dark: #2d3748;
    --text-light: #718096;
    
    /* Typography */
    --font-heading: 'Aleo', serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* All paragraphs use Open Sans */
p {
    font-family: var(--font-body);
}

/* Italic text - only for Open Sans (body text) */
em, i {
    font-family: var(--font-body);
    font-style: italic;
}

/* Small text - Open Sans */
small {
    font-family: var(--font-body);
    font-size: 0.85rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    font-style: normal;
    text-transform: none;
}

/* Ensure Aleo (headings) never use italics or uppercase */
h1, h2, h3, h4, h5, h6 {
    font-style: normal !important;
}

/* Quote styling - uses Aleo, no italics */
blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary-blue);
    border-left: 4px solid var(--gold);
    padding-left: var(--spacing-md);
    margin: var(--spacing-md) 0;
    font-style: normal;
}

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

ul {
    list-style: none;
}

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

/* ===============================================
   CONTAINER
   =============================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===============================================
   BUTTONS
   =============================================== */
.btn {
    display: inline-block;
    padding: 1.125rem 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ===============================================
   NAVIGATION
   =============================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-transform: none;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
}

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

.lang-toggle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: var(--spacing-2xl);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(47, 46, 127, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(222, 169, 98, 0.8) 0%, transparent 50%),
        linear-gradient(135deg, rgba(47, 46, 127, 0.8) 0%, rgba(31, 30, 95, 0.85) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 1000px;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-xl);
}

.hero-logo {
    margin-bottom: var(--spacing-lg);
}

.hero-icon {
    width: 250px;
    max-width: 70%;
    height: auto;
    margin: 0 auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 8px;
    font-weight: 300;
    text-transform: none;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.375rem;
    color: var(--gold-light);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    animation: scroll 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===============================================
   SECTION HEADERS
   =============================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(222, 169, 98, 0.1) 0%, rgba(245, 200, 138, 0.1) 100%);
    border-radius: 30px;
    border: 1px solid rgba(222, 169, 98, 0.2);
}

.section-title {
    font-size: 3.5rem;
    color: var(--primary-blue);
    font-weight: 400;
    letter-spacing: -1px;
    text-transform: none;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

/* ===============================================
   ABOUT SECTION
   =============================================== */
.about {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-lg);
}

.about-text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* ===============================================
   VISION, MISSION, VALUES SECTION
   =============================================== */
.vision-mission-values {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-grey) 100%);
}

/* Feature Card (Vision - Full Width) */
.vmv-feature {
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 40px;
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.vmv-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(222, 169, 98, 0.35);
}

.vmv-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 46, 127, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.vmv-feature-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.vmv-feature-icon {
    margin-bottom: var(--spacing-lg);
}

.vmv-feature-icon img {
    width: 80px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(47, 46, 127, 0.25));
}

.vmv-feature-title {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.vmv-feature-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 2;
    color: var(--primary-blue-dark);
}

/* Mission & Values Grid */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: var(--spacing-lg);
}

.vmv-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 30px;
    border: 1px solid rgba(222, 169, 98, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

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

.vmv-card:hover::before {
    transform: scaleY(1);
}

.vmv-card-icon {
    margin-bottom: var(--spacing-md);
}

.vmv-card-icon img {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.vmv-card-title {
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.5px;
}

.vmv-card-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-dark);
}

/* Values Tags */
.vmv-values-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.value-tag {
    font-family: var(--font-body);
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(222, 169, 98, 0.1) 0%, rgba(245, 200, 138, 0.1) 100%);
    color: var(--primary-blue);
    border-radius: 30px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid rgba(222, 169, 98, 0.3);
    transition: var(--transition);
}

.value-tag:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

/* ===============================================
   SERVICES SECTION
   =============================================== */
.services {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--light-grey) 0%, #ffffff 100%);
    position: relative;
}

.services .section-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
    line-height: 1.8;
}

.services-container {
    margin-top: var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

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

.service-item {
    background: var(--white);
    border-radius: 30px;
    padding: var(--spacing-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(47, 46, 127, 0.08);
}

.service-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(47, 46, 127, 0.05) 0%, transparent 100%);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(47, 46, 127, 0.15);
}

.service-item:hover::before {
    top: 0;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    opacity: 0.4;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-heading {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.service-description {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.service-offerings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.service-offerings span {
    font-family: var(--font-body);
    display: inline-block;
    padding: 0.625rem 1.125rem;
    background: linear-gradient(135deg, rgba(47, 46, 127, 0.08) 0%, rgba(63, 62, 159, 0.08) 100%);
    color: var(--primary-blue);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(47, 46, 127, 0.1);
}

.service-offerings span:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-offerings .hidden-offering {
    display: none;
}

.service-offerings .visible-offering {
    display: inline-block;
    animation: fadeIn 0.3s ease;
}

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

.expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(47, 46, 127, 0.05) 0%, rgba(63, 62, 159, 0.05) 100%);
    color: var(--primary-blue);
    border: 2px solid rgba(47, 46, 127, 0.2);
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expand-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-blue);
}

.expand-btn svg {
    transition: var(--transition);
}

.expand-btn.expanded svg {
    transform: rotate(180deg);
}

/* ===============================================
   STORIES SECTION
   =============================================== */
.stories {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.stories-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(47, 46, 127, 0.03) 0%, rgba(222, 169, 98, 0.03) 100%);
    border-radius: 30px;
    border: 1px solid rgba(47, 46, 127, 0.08);
    box-shadow: var(--shadow-sm);
}

.stories-text {
    font-family: var(--font-body);
    font-size: 1.1875rem;
    line-height: 2;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 400;
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
.contact {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(222, 169, 98, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
}

.contact .section-subtitle {
    color: var(--gold-light);
}

.contact .section-title {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.contact-info {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    font-weight: 500;
    text-transform: none;
    letter-spacing: -0.5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.0625rem;
    transition: var(--transition-fast);
    padding: var(--spacing-sm);
    border-radius: 15px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-item svg {
    flex-shrink: 0;
    stroke: var(--gold-light);
    filter: drop-shadow(0 2px 8px rgba(222, 169, 98, 0.3));
}

/* ===============================================
   CONTACT FORM
   =============================================== */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-blue);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(47, 46, 127, 0.1);
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(248, 249, 250, 0.5);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(47, 46, 127, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    background: linear-gradient(180deg, var(--black) 0%, #000000 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(222, 169, 98, 0.3) 50%, transparent 100%);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(222, 169, 98, 0.2));
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    letter-spacing: 3px;
    text-transform: none;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(222, 169, 98, 0.3);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(1deg);
    }
    66% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(24px);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .vmv-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .lang-toggle {
        margin-top: 1rem;
        width: 80%;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-icon {
        width: 200px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .vmv-grid {
        grid-template-columns: 1fr;
    }
    
    .vmv-feature-title {
        font-size: 2rem;
    }
    
    .service-item {
        grid-template-columns: 80px 1fr;
        padding: var(--spacing-md);
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .service-heading {
        font-size: 1.5rem;
    }
    
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
}

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

/* ===============================================
   RTL (Right-to-Left) SUPPORT
   =============================================== */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
    font-family: 'Tajawal', 'Open Sans', sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
    font-family: 'Tajawal', 'Aleo', serif;
    font-weight: 500;
}

[dir="rtl"] .hero-subtitle,
[dir="rtl"] .section-subtitle {
    font-family: 'Tajawal', 'Open Sans', sans-serif;
    font-weight: 700;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .service-item {
    border-left: none;
    border-right: 5px solid var(--gold);
}

[dir="rtl"] .service-item:hover {
    transform: translateX(-10px);
}

[dir="rtl"] .vmv-card {
    border-left: none;
    border-right: 4px solid var(--gold);
}

[dir="rtl"] .vmv-card:hover {
    transform: translateX(-10px);
}

[dir="rtl"] .contact-content {
    direction: rtl;
}

[dir="rtl"] blockquote {
    border-left: none;
    border-right: 4px solid var(--gold);
    padding-left: 0;
    padding-right: var(--spacing-md);
}

[dir="rtl"] .service-item::before {
    right: auto;
    left: 0;
}

[dir="rtl"] .footer-social {
    direction: ltr;
}

/* RTL Mobile Adjustments */
@media (max-width: 768px) {
    [dir="rtl"] .nav-menu {
        right: auto;
        left: -100%;
    }
    
    [dir="rtl"] .nav-menu.active {
        left: 0;
    }
    
    [dir="rtl"] .nav-menu {
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
    }
}

