/* ================================
   RAYAAR CONSULTING - PREMIUM EDITION
   Modern, Animated, Glassmorphic Design
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Clean, confident palette: slate blue + sky blue + amber */
    --primary-color: #0f172a;
    --primary-dark: #1e293b;
    --primary-darker: #334155;
    --secondary-color: #0ea5e9;
    --secondary-dark: #0284c7;
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-warm: #f1f5f9;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 20px 60px rgba(15, 23, 42, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    /* RGB for rgba() usage */
    --primary-rgb: 15, 23, 42;
    --secondary-rgb: 14, 165, 233;
    --accent-rgb: 245, 158, 11;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 100%);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

section {
    padding: 6rem 0;
    position: relative;
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */

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

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

.scroll-fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.scroll-fade-in.active {
    opacity: 1;
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ================================
   GLASSMORPHIC NAVBAR
   ================================ */

.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1001;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.85;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    white-space: nowrap;
    display: none; /* Hidden by default, shown if image fails */
}

/* Show text if image doesn't exist or fails to load */
.logo-img:not([src]),
.logo-img[src=""],
.logo-img[src*="undefined"] {
    display: none;
}

.logo-img:not([src]) ~ .logo-text,
.logo-img[src=""] ~ .logo-text {
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 38px;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: width 0.4s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* ================================
   MOUSE FOLLOWER - ULTRA LUX
   ================================ */

.mouse-follower {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.07) 0%, rgba(var(--accent-rgb), 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease, transform 0.15s ease-out;
    will-change: transform;
}

.mouse-follower.hidden {
    opacity: 0;
}

@media (max-width: 768px) {
    .mouse-follower {
        display: none;
    }
}

/* ================================
   HERO SECTION - GRADIENT MESH + PARTICLES
   ================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    color: var(--white);
    padding: 10rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient mesh - ultra lux feel */
.hero-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    mix-blend-mode: soft-light;
    will-change: transform;
}

.mesh-blob-1 {
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.3) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: meshFloat1 18s ease-in-out infinite;
}

.mesh-blob-2 {
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18) 0%, transparent 70%);
    top: 40%;
    right: -15%;
    animation: meshFloat2 22s ease-in-out infinite;
}

.mesh-blob-3 {
    width: 45vmax;
    height: 45vmax;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.22) 0%, transparent 70%);
    bottom: -15%;
    left: 20%;
    animation: meshFloat3 20s ease-in-out infinite;
}

.mesh-blob-4 {
    width: 35vmax;
    height: 35vmax;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    top: 30%;
    left: 50%;
    animation: meshFloat2 25s ease-in-out infinite reverse;
}

.mesh-blob-5 {
    width: 40vmax;
    height: 40vmax;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation: meshFloat1 24s ease-in-out infinite 2s;
}

@keyframes meshFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, -8%) scale(1.05); }
    66% { transform: translate(-5%, 5%) scale(0.98); }
}

@keyframes meshFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8%, 3%) scale(1.08); }
}

@keyframes meshFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(6%, 6%) scale(1.03); }
}

/* Particle canvas overlay */
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

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

/* Hero text reveal - smooth staggered lines */
.hero-title-reveal .reveal-line,
.hero-text-reveal .reveal-line {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.hero-title-reveal .reveal-line {
    animation: textRevealUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-text-reveal .reveal-line {
    animation: textRevealUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-subtitle .reveal-line { animation-delay: 0.4s; }
.hero-description .reveal-line { animation-delay: 0.65s; }

.hero-buttons-reveal {
    animation: textRevealUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

@keyframes textRevealUp {
    from {
        opacity: 0;
        transform: translateY(1.2em);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
    background: linear-gradient(90deg, var(--secondary-color), rgba(255,255,255,0.92));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   GLASSMORPHIC BUTTONS
   ================================ */

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.35);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.btn-whatsapp,
.btn-whatsapp-large {
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: var(--white);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover,
.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ================================
   SECTION TITLES WITH ANIMATION
   ================================ */

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Section title smooth reveal */
.section-title.reveal-active,
.section-subtitle.reveal-active {
    animation: textRevealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

/* ================================
   GLASSMORPHIC FEATURE CARDS
   ================================ */

.features {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%230ea5e9" fill-opacity="0.1"/></svg>');
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

/* 3D tilt cards - subtle premium effect */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    will-change: transform;
}

.tilt-card .tilt-inner {
    transform: translateZ(20px);
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease, background 0.5s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.08) 0%, rgba(var(--accent-rgb), 0.06) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.12);
    border-color: rgba(var(--secondary-rgb), 0.4);
}

.feature-card.tilt-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Icon glow - premium feel */
.feature-icon.icon-glow,
.service-icon.icon-glow {
    position: relative;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
    filter: drop-shadow(0 0 20px rgba(var(--secondary-rgb), 0.3)) drop-shadow(0 5px 15px rgba(0,0,0,0.08));
}

.feature-card:hover .feature-icon.icon-glow,
.service-card:hover .service-icon.icon-glow {
    filter: drop-shadow(0 0 35px rgba(var(--secondary-rgb), 0.5)) drop-shadow(0 0 55px rgba(var(--secondary-rgb), 0.2)) drop-shadow(0 5px 20px rgba(0,0,0,0.12));
    transform: scale(1.15) rotate(5deg);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ================================
   ABOUT SECTION WITH GLASS EFFECTS
   ================================ */

.about-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.9;
    text-align: center;
    margin-bottom: 4rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.mv-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--secondary-color);
    transition: all 0.5s ease;
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.06);
    position: relative;
    overflow: hidden;
}

.mv-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    transition: height 0.5s ease;
    z-index: 0;
}

.mv-box:hover::before {
    height: 100%;
}

.mv-box:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.mv-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.mv-box p {
    color: var(--text-light);
    line-height: 1.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.5s ease;
    border: 1px solid rgba(var(--secondary-rgb), 0.12);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.08);
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ================================
   SERVICES SECTION - PREMIUM CARDS
   ================================ */

.services-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%230ea5e9" fill-opacity="0.12"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.services-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.08) 0%, rgba(var(--accent-rgb), 0.08) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-top-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 5px 20px rgba(var(--secondary-rgb), 0.35));
}

.service-card:hover .service-icon:not(.icon-glow) {
    transform: scale(1.15) rotate(-5deg);
}

/* Service card tilt - keep lift on hover when no JS tilt */
/* Fallback lift when JS tilt not available (e.g. no mouse) */
.service-card.tilt-card:hover {
    transform: translateY(-20px) scale(1.03);
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
    font-weight: 600;
}

.service-card p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ================================
   PROCESS SECTION - GLASSMORPHIC
   ================================ */

.process-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 5rem 3rem;
    border-radius: 30px;
    margin-top: 6rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 4rem;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(var(--secondary-rgb), 0.4);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

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

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
}

.process-step h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.process-step p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

/* ================================
   CONTACT SECTION - MODERN GLASS
   ================================ */

.contact-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-warm) 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.contact-method {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.5s ease;
    border: 1px solid rgba(var(--secondary-rgb), 0.12);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px rgba(var(--primary-rgb), 0.08);
    transform: translateX(10px);
    border-color: var(--secondary-color);
}

.method-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.method-details h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.method-details p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.method-details a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.method-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.method-details a:hover::after {
    width: 100%;
}

.whatsapp-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ================================
   GLASSMORPHIC CONTACT FORM
   ================================ */

.contact-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.12);
    background: var(--white);
}

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

.form-group select {
    cursor: pointer;
}

.contact-form button {
    width: 100%;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    display: none;
    font-weight: 500;
    animation: slideDown 0.5s ease;
}

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

.form-message.success {
    background: rgba(212, 237, 218, 0.9);
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: rgba(248, 215, 218, 0.9);
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

/* ================================
   MAP SECTION
   ================================ */

.map-section {
    margin-top: 6rem;
}

.map-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    border: 5px solid rgba(255, 255, 255, 0.5);
}

/* ================================
   FOOTER - GLASSMORPHIC
   ================================ */

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23ffffff" fill-opacity="0.1"/></svg>');
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-col {
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.footer-col p {
    line-height: 1.9;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: rgba(255,255,255,0.9);
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
}

.footer-col a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 20px;
}

.footer-col a:hover::before {
    opacity: 1;
    left: 0;
}

.license {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.75;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative;
}

.footer-bottom p {
    opacity: 0.85;
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-wrapper {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 600px;
        padding: 2rem 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        padding: 1rem 2rem;
    }
    
    .hero {
        padding: 6rem 0 5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* ================================
   FLOATING ELEMENTS
   ================================ */

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.fade-in-on-scroll {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
}