/*
  Astra Capital e.U. - MEGA Area Pages CSS
  ALLE Elemente aus Ultimex, Blackex, Doex + CUSTOM KRASSE Effekte
*/

/* ============================================
   AREA COLOR SCHEMES
   ============================================ */

/* Development - Cyan/Blue */
.area-development {
    --area-color: #00d4ff;
    --area-color-rgb: 0, 212, 255;
    --area-gradient: linear-gradient(135deg, #00d4ff, #0099cc);
    --area-glow: 0 0 30px rgba(0, 212, 255, 0.4);
}

/* Ecom - Green */
.area-ecom {
    --area-color: #00ff88;
    --area-color-rgb: 0, 255, 136;
    --area-gradient: linear-gradient(135deg, #00ff88, #00cc6a);
    --area-glow: 0 0 30px rgba(0, 255, 136, 0.4);
}

/* Consulting - Gold */
.area-consulting {
    --area-color: #ffaa00;
    --area-color-rgb: 255, 170, 0;
    --area-gradient: linear-gradient(135deg, #ffaa00, #ff8800);
    --area-glow: 0 0 30px rgba(255, 170, 0, 0.4);
}

/* Vending - Purple */
.area-vending {
    --area-color: #aa00ff;
    --area-color-rgb: 170, 0, 255;
    --area-gradient: linear-gradient(135deg, #aa00ff, #8800cc);
    --area-glow: 0 0 30px rgba(170, 0, 255, 0.4);
}

/* ============================================
   BASE STYLES
   ============================================ */
.area-page {
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.area-page * {
    box-sizing: border-box;
}

/* ============================================
   CUSTOM CURSOR EFFECT
   ============================================ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--area-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--area-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.15s ease;
    opacity: 0.5;
}

.cursor-ring.hover {
    transform: scale(1.5);
    opacity: 1;
    background: rgba(var(--area-color-rgb), 0.1);
}

/* ============================================
   NAVIGATION - MEGA VERSION
   ============================================ */
.area-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.area-nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.area-nav .nav-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.area-nav .nav-logo:hover {
    text-shadow: var(--area-glow);
}

.area-nav .nav-logo .logo-prefix {
    opacity: 0.5;
}

.area-nav .nav-logo .logo-name {
    color: var(--area-color);
}

.area-nav .nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.area-nav .nav-menu li a {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.area-nav .nav-menu li a:hover,
.area-nav .nav-menu li a.active {
    color: var(--area-color);
}

.area-nav .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--area-color);
    transition: width 0.3s ease;
    box-shadow: var(--area-glow);
}

.area-nav .nav-menu li a:hover::after,
.area-nav .nav-menu li a.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .area-nav .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .area-nav .nav-menu.open {
        right: 0;
    }
    
    .area-nav .nav-menu li a {
        font-size: 20px;
    }
}

/* ============================================
   HERO SECTION - EPIC VERSION
   ============================================ */
.area-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.area-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 20s ease;
    will-change: transform;
}

.area-hero:hover .area-hero-bg {
    transform: scale(1);
}

/* Parallax Effect */
.area-hero-bg.parallax {
    background-attachment: fixed;
}

.area-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
}

/* Animated Gradient Overlay */
.area-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(var(--area-color-rgb), 0.15) 0%, transparent 100%);
    animation: gradientPulse 4s ease infinite;
}

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

/* Noise Texture */
.area-hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.area-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.area-hero-label {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--area-color);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    text-shadow: var(--area-glow);
}

.area-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(50px, 12vw, 120px);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.area-hero-title span {
    color: var(--area-color);
    text-shadow: var(--area-glow);
}

/* Glitch Effect on Title */
.area-hero-title:hover {
    animation: glitch 0.3s ease;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.area-hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.9;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.area-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

/* Floating Elements */
.floating-shape {
    position: absolute;
    border: 1px solid rgba(var(--area-color-rgb), 0.3);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 25%;
    border-radius: 50%;
    animation-delay: 4s;
}

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

/* Scroll Indicator */
.area-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.area-scroll-indicator span {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.area-scroll-indicator .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--area-color), transparent);
    animation: scrollPulse 2s ease infinite;
}

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

/* ============================================
   BUTTONS - MEGA VERSION
   ============================================ */
.btn-area {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border: 2px solid var(--area-color);
    color: #fff;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--area-color);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-area:hover {
    color: #000;
    box-shadow: var(--area-glow);
}

.btn-area:hover::before {
    left: 0;
}

.btn-area-filled {
    background: var(--area-color);
    color: #000;
}

.btn-area-filled::before {
    background: #fff;
}

/* Magnetic Button Effect */
.btn-area.magnetic {
    transition: transform 0.3s ease;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.area-section {
    padding: 140px 0;
    position: relative;
}

.area-section-dark {
    background: #050505;
}

.area-section-gradient {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

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

.area-container-wide {
    max-width: 1600px;
}

.area-container-full {
    max-width: 100%;
    padding: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-number {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--area-color);
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 6vw, 70px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.section-title span {
    color: var(--area-color);
}

.section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--area-color);
    margin: 30px auto;
    box-shadow: var(--area-glow);
}

/* Dots Pattern */
.section-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--area-color) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.15;
    pointer-events: none;
}

.section-dots.top-left {
    top: 50px;
    left: 50px;
}

.section-dots.bottom-right {
    bottom: 50px;
    right: 50px;
}

/* ============================================
   ABOUT SECTION - ENHANCED
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--area-color);
    z-index: -1;
    transition: all 0.4s ease;
}

.about-image:hover::before {
    top: -30px;
    left: -30px;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: rgba(var(--area-color-rgb), 0.1);
    z-index: -2;
}

.about-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.about-content p a {
    color: var(--area-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.about-content p a:hover {
    border-color: var(--area-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--area-color);
    line-height: 1;
    text-shadow: var(--area-glow);
}

.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image::before,
    .about-image::after {
        display: none;
    }
}

/* ============================================
   SERVICES SECTION - MEGA CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--area-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--area-color-rgb), 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-15px);
    border-color: rgba(var(--area-color-rgb), 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), var(--area-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--area-color);
    font-size: 36px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    text-shadow: var(--area-glow);
}

.service-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* Service Card Number */
.service-card .card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: all 0.4s ease;
}

.service-card:hover .card-number {
    color: rgba(var(--area-color-rgb), 0.1);
}

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

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

/* ============================================
   PORTFOLIO/WORKS - MASONRY STYLE
   ============================================ */
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.works-grid.masonry {
    grid-auto-rows: 250px;
}

.works-grid.masonry .work-item:nth-child(1),
.works-grid.masonry .work-item:nth-child(4) {
    grid-row: span 2;
}

.work-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover img {
    transform: scale(1.15);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(var(--area-color-rgb), 0.3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.work-overlay h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.work-item:hover .work-overlay h4 {
    transform: translateY(0);
}

.work-overlay span {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: var(--area-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s;
}

.work-item:hover .work-overlay span {
    transform: translateY(0);
}

/* View Icon */
.work-overlay .view-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--area-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: var(--area-color);
    transform: scale(0);
    transition: transform 0.5s ease 0.3s;
}

.work-item:hover .work-overlay .view-icon {
    transform: scale(1);
}

@media (max-width: 992px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .works-grid.masonry {
        grid-auto-rows: 200px;
    }
}

@media (max-width: 576px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FACTS/COUNTER SECTION - PARALLAX
   ============================================ */
.facts-section {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.facts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(var(--area-color-rgb), 0.1) 100%);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

.fact-item {
    text-align: center;
    padding: 40px 20px;
    transition: all 0.4s ease;
}

.fact-item:hover {
    transform: scale(1.05);
}

.fact-number {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--area-color);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: var(--area-glow);
}

.fact-label {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.fact-line {
    width: 50px;
    height: 2px;
    background: var(--area-color);
    margin: 20px auto;
    box-shadow: var(--area-glow);
}

@media (max-width: 992px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .fact-number {
        font-size: 56px;
    }
}

/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    padding: 50px 40px;
}

.testimonial-quote {
    font-size: 60px;
    color: var(--area-color);
    margin-bottom: 30px;
    text-shadow: var(--area-glow);
}

.testimonial-text {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.testimonial-author {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-role {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: var(--area-color);
    margin-top: 8px;
    letter-spacing: 0.1em;
}

/* Testimonial Avatar */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--area-color);
    margin: 0 auto 20px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.team-card:hover .team-image img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--area-color);
    color: var(--area-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--area-color);
    color: #000;
}

.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info span {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: var(--area-color);
    letter-spacing: 0.1em;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEWS/BLOG CAROUSEL
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--area-color-rgb), 0.3);
}

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

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

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

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--area-color);
    color: #000;
    padding: 8px 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.news-content {
    padding: 30px;
}

.news-category {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--area-color);
    margin-bottom: 10px;
}

.news-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.news-link {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--area-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 15px;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CLIENTS/LOGOS SECTION
   ============================================ */
.clients-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.client-logo {
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    padding: 20px;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.client-logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   CTA SECTION - EPIC VERSION
   ============================================ */
.cta-section {
    position: relative;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--area-color));
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to top, transparent, var(--area-color));
}

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
}

.cta-title span {
    color: var(--area-color);
    text-shadow: var(--area-glow);
}

.cta-text {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION - ENHANCED
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-info p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(var(--area-color-rgb), 0.3);
    background: rgba(var(--area-color-rgb), 0.05);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--area-color);
    color: var(--area-color);
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
    background: var(--area-color);
    color: #000;
}

.contact-item-text {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--area-color);
    margin-bottom: 8px;
}

/* Contact Form - Enhanced */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px 25px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--area-color);
    background: rgba(var(--area-color-rgb), 0.05);
    box-shadow: 0 0 20px rgba(var(--area-color-rgb), 0.1);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

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

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

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    position: relative;
    height: 500px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%);
    opacity: 0.7;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.5));
    pointer-events: none;
}

/* ============================================
   FOOTER - MEGA VERSION
   ============================================ */
.area-footer {
    background: #030303;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-brand h3 span {
    color: var(--area-color);
}

.footer-brand p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    outline: none;
}

.footer-newsletter input:focus {
    border-color: var(--area-color);
}

.footer-newsletter button {
    padding: 15px 25px;
    background: var(--area-color);
    border: none;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #fff;
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--area-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--area-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--area-color);
    color: var(--area-color);
    box-shadow: var(--area-glow);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   BACK TO TOP - ANIMATED
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--area-color);
    color: #000;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: var(--area-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(var(--area-color-rgb), 0.5);
}

/* Progress Ring */
.back-to-top .progress-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 61px;
    height: 61px;
    transform: rotate(-90deg);
}

.back-to-top .progress-ring circle {
    fill: none;
    stroke: var(--area-color);
    stroke-width: 2;
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    transition: stroke-dashoffset 0.3s ease;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

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

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.from-left {
    transform: translateX(-50px);
}

.reveal.from-left.active {
    transform: translateX(0);
}

.reveal.from-right {
    transform: translateX(50px);
}

.reveal.from-right.active {
    transform: translateX(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-area-color {
    color: var(--area-color) !important;
}

.bg-area-color {
    background: var(--area-color) !important;
}

.border-area-color {
    border-color: var(--area-color) !important;
}

.glow {
    text-shadow: var(--area-glow);
}

/* Gradient Text */
.gradient-text {
    background: var(--area-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(var(--area-color-rgb), 0.2);
    border-top-color: var(--area-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
