/* ==========================================
   Story Spear - CSS Styles
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --orange: #F97316;
    --orange-dark: #EA580C;
    --beige: #FDF8F3;
    --beige-dark: #F5EBE0;
    --yellow: #FBBF24;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --white: #ffffff;
    --dark-bg: #1F2937;
    --dark-bg-secondary: #374151;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 96px;
    --nav-height: 80px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--beige);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-dark);
}

/* ==========================================
   Utility Classes
   ========================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-orange {
    color: var(--orange);
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--orange);
    color: var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================
   Navigation
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--transition);
}

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

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 120px;
    height: 64px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

@media (max-width: 1024px) {
    .logo-img{
        width: 80px;
    }
}

.logo-white{
    filter: brightness(0) invert(1);
}

.logo-white:hover{
    filter: none;
    transition: var(--transition);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-highlight {
    color: var(--orange);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition);
}

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

.nav-cta {
    margin-left: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-dark);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-nav {
    background: rgba(255, 255, 255, 1);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s ease;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--beige-dark);
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--orange);
}

.mobile-cta {
    width: 100%;
    margin-top: 16px;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 50%, var(--beige) 100%);
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 60 L0 60 Z' fill='none' stroke='%23F97316' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-blob-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: rgba(249, 115, 22, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: rgba(251, 191, 36, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: rgba(249, 115, 22, 0.05);
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 24px 80px;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        padding: 96px 24px;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sparkle-icon {
    width: 16px;
    height: 16px;
    color: var(--yellow);
}

.hero-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(31, 41, 55, 0.1);
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    border-radius: var(--radius-xl);
    transform: rotate(6deg);
    opacity: 0.2;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
    top: -16px;
    right: -16px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: -16px;
    left: -16px;
    animation-delay: 3s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.floating-icon-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
}

.floating-icon-yellow {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
}

.floating-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-subtitle {
    font-size: 12px;
    color: var(--text-gray);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--orange);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 6px;
    height: 12px;
    background: var(--orange);
    border-radius: 3px;
}

/* ==========================================
   Services Section
   ========================================== */

.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--beige-dark);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    margin-bottom: 16px;
}

.section-badge-orange {
    background: var(--beige-dark);
}

.section-badge-dark {
    background: rgba(255, 255, 255, 0.1);
}

.section-badge-dark span {
    color: var(--white);
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--orange);
}

.section-badge-dark .badge-icon {
    color: var(--orange);
}

.section-badge span {
    font-size: 14px;
    font-weight: 500;
    color: var(--orange);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

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

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

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    opacity: 0.1;
    transition: opacity var(--transition);
}

.service-card:hover .service-image::before {
    opacity: 0.2;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-content {
    padding: 24px;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

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

.service-icon-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.service-icon-yellow {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    transition: color var(--transition);
    letter-spacing: -1px;
}

.service-card:hover .service-title {
    color: var(--orange);
}

.service-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    color: var(--orange);
    transition: color var(--transition);
}

.service-link:hover {
    color: var(--orange-dark);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   About Section
   ========================================== */

.about {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 50%, var(--beige) 100%);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 60 L0 60 Z' fill='none' stroke='%23F97316' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

.about-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.about-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.about-blob-1 {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(249, 115, 22, 0.05);
}

.about-blob-2 {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(251, 191, 36, 0.05);
}

.about-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content {
    max-width: 560px;
}

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

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.value-tag {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

/* Stats Grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-xl);
}

.stat-card:hover .stat-card-value {
    transform: scale(1.1);
}

.stat-card-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: transform var(--transition);
    letter-spacing: -2px;
}

.stat-card-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* ==========================================
   Why Choose Us Section
   ========================================== */

.why-choose {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.3);
}

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

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: color var(--transition);
    letter-spacing: -1px;
}

.feature-item:hover .feature-title {
    color: var(--orange);
}

.feature-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==========================================
   Our Clients Section
   ========================================== */

.clients {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 50%, var(--beige) 100%);
    overflow: hidden;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    /* max-width: 900px; */
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.client-logo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
    border: 1px solid rgba(249, 115, 22, 0.08);
}

@media (min-width: 1024px) {
    .client-logo-card {
        padding: 50px;
    }
}

.client-logo-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.2);
}

.client-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    transition: color var(--transition);
}

.client-logo-card:hover .client-logo-placeholder {
    color: var(--orange);
}

.client-logo-placeholder svg {
    width: 48px;
    height: 48px;
}

.client-logo-placeholder span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    transition: color var(--transition);
}

.client-logo-card:hover .client-logo-placeholder span {
    color: var(--orange);
}

/* ==========================================
   Testimonials Section
   ========================================== */

.testimonials {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.testimonials-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.testimonials-blob-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.06);
}

.testimonials-blob-2 {
    bottom: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: rgba(251, 191, 36, 0.06);
}

.testimonials-slider-wrapper {
    /* max-width: 720px; */
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testimonial-slide {
    display: none;
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.08);
}

@media (max-width: 640px) {
    .testimonial-card {
        padding: 32px 24px;
    }
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--yellow);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
}

.avatar-alt {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

.avatar-alt-2 {
    background: linear-gradient(135deg, #059669 0%, #14B8A6 100%);
}

.avatar-alt-3 {
    background: linear-gradient(135deg, #DC2626 0%, var(--orange) 100%);
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 2px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--beige-dark);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-gray);
}

.slider-btn:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 20px -4px rgba(249, 115, 22, 0.3);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--beige-dark);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    width: 28px;
    border-radius: 5px;
}

/* ==========================================
   Contact Section
   ========================================== */

.contact {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 50%, var(--dark-bg) 100%);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.contact-blob-1 {
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(249, 115, 22, 0.1);
}

.contact-blob-2 {
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: rgba(251, 191, 36, 0.1);
}

.contact-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-content {
    max-width: 560px;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.1;
}

.contact-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.contact-info-icon-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
}

.contact-info-icon-yellow {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
}

.contact-info-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-info-value {
    font-weight: 500;
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    width: 100%;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-2xl);
}

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

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

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 16px;
    color: var(--white);
    transition: border-color var(--transition);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
}

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

.form-input:focus {
    outline: none;
    border-color: var(--orange);
}

.form-textarea {
    resize: none;
    min-height: 120px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 32px;
    animation: scaleIn 0.3s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.success-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.success-text {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: var(--dark-bg);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 320px;
}

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

.footer-logo .logo-text {
    color: var(--white);
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.social-link:hover {
    background: var(--orange);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.social-link:hover svg {
    color: var(--white);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-list a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--orange);
}

/* ==========================================
   Animations
   ========================================== */

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

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

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

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

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

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

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

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

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

/* ==========================================
   Responsive Adjustments
   ========================================== */

@media (max-width: 767px) {
    :root {
        --section-padding: 64px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-card-value {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-values {
        justify-content: center;
    }
    
    .value-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}
