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

:root {
    --blue-dark:   #003DA5;
    --blue-mid:    #0052CC;
    --blue-bright: #0066CC;
    --blue-light:  #00A8E8;
    --blue-pale:   #E8F1FF;
    --blue-ultra:  #F0F6FF;
    --white:       #FFFFFF;
    --gray-50:     #F8FAFC;
    --gray-100:    #F1F5F9;
    --gray-200:    #E2E8F0;
    --gray-400:    #94A3B8;
    --gray-600:    #475569;
    --gray-800:    #1E293B;
    --gray-900:    #0F172A;
    --shadow-sm:   0 1px 3px rgba(0,61,165,0.08), 0 1px 2px rgba(0,61,165,0.04);
    --shadow-md:   0 4px 16px rgba(0,61,165,0.12), 0 2px 8px rgba(0,61,165,0.06);
    --shadow-lg:   0 10px 40px rgba(0,61,165,0.15), 0 4px 16px rgba(0,61,165,0.08);
    --shadow-xl:   0 20px 60px rgba(0,61,165,0.18);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue-dark); border-radius: 3px; }

/* ── NAVBAR ── */
/*Admi*/
.navbar {
    background: rgba(255, 255, 255, 0.685);
    z-index: 1000;
}
.nav-logo {
user-select: none;
-webkit-user-drag: none;
}
.contenedor-logo {
    width: 48px;
    height: 46px;
    display: flex;       /* Centra la imagen si es más pequeña */
    align-items: center;
    justify-content: center;
    overflow: hidden;    /* Evita que nada se salga del cuadro */
}
.contenedor-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; /* Ajusta el logo sin recortarlo ni estirarlo */
}
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.685);
    padding: 0 2rem;
    transition: all 0.3s ease;
}
nav.scrolled {
    height: 56px;
    box-shadow: 0 4px 20px rgba(0, 60, 165, 0.541);
    background: rgba(255, 255, 255, 0.685);
}
.nav-inner {
    background: rgba(255, 255, 255, 0.479);
    margin-bottom: 5px;
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 56px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 42px; height: 42px;
    position: relative;
}
.nav-logo-icon svg { width: 100%; height: 100%; }

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; font-weight: 650;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex; align-items: center; gap: 0.25rem;
    list-style: none;
}
.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem; font-weight: 500;
    color: rgba(1, 3, 27, 0.726);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.nav-links a:hover { color: var(--blue-dark); background: var(--blue-pale); }
.nav-cta {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright)) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(0,61,165,0.3);
    transition: all 0.2s ease !important;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,61,165,0.4) !important;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-light)) !important;
}
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--blue-dark); border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu {
    display: none;
    position: fixed; top: 72px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 30px rgba(0,61,165,0.1);
    padding: 1rem;
    z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block; padding: 0.75rem 1rem;
    color: var(--gray-700); text-decoration: none;
    font-weight: 500; border-radius: 8px;
    transition: all 0.2s;
}
.mobile-menu a:hover { background: var(--blue-pale); color: var(--blue-dark); }
.mobile-menu .nav-cta {
    display: block; margin-top: 0.5rem; text-align: center;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright)) !important;
    color: white !important; border-radius: 50px !important;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--white);
    display: flex; align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-bg-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,168,232,0.12), transparent);
    top: -100px; right: -100px;
}
.hero-bg-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,61,165,0.08), transparent);
    bottom: -50px; left: -50px;
}
.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
    linear-gradient(rgba(0,61,165,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,61,165,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}
.hero-inner {

    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    position: relative; z-index: 1;
    width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-pale);
    border: 1px solid rgba(0,61,165,0.15);
    color: var(--blue-dark);
    font-size: 0.8rem; font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--blue-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800; line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-title span {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-bright) 50%, var(--blue-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.05rem; color: var(--gray-600);
    line-height: 1.7; margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    color: white;
    font-family: 'Outfit', sans-serif;;
    font-size: 0.95rem; font-weight: 600;
    padding: 0.875rem 2rem; border-radius: 50px;
    text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 6px 24px rgba(0,61,165,0.3);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(0,61,165,0.4);
}
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--blue-dark);
    font-family: 'Outfit', sans-serif;;
    font-size: 0.95rem; font-weight: 600;
    padding: 0.875rem 2rem; border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(0,61,165,0.25);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    border-color: var(--blue-dark);
    background: var(--blue-pale);
    transform: translateY(-2px);
}
.hero-stats {
    display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number {
    white-space: nowrap;
    min-width: max-content;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem; font-weight: 800;
    color: var(--blue-dark); line-height: 1;
}
.hero-stat-label {
    font-size: 0.78rem; color: var(--gray-500);
    font-weight: 500; margin-top: 0.25rem;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.hero-stat-divider {
    width: 1px; background: var(--gray-200);
    height: 40px; align-self: center;
}

/* Hero right card */
.hero-visual {
    z-index: 100;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.hero-card-main {
    z-index: 5;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    width: 100%; max-width: 420px;
    position: relative;
    overflow: hidden;
}
.hero-card-main::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-bright), var(--blue-light));
}
.hero-card-logo {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 2rem;
}
.hero-card-logo-icon { width: 52px; height: 52px; }
.hero-card-logo-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem; font-weight: 900;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-card-tagline {
    font-size: 0.78rem; color: var(--gray-500);
    letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-card-services { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-card-service {
    display: flex; align-items: center; gap: 12px;
    padding: 0.875rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
}
.hero-card-service:hover {
    background: var(--blue-pale);
    border-color: rgba(0,61,165,0.2);
    transform: translateX(4px);
}
.hero-service-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
    color: white;
}
.hero-service-text { font-size: 0.875rem; font-weight: 500; color: var(--gray-700); }
.hero-card-float {
    z-index: 10;
    position: absolute;
    background: white; border: 1px solid var(--gray-200);
    border-radius: 14px; padding: 0.875rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px;
    white-space: nowrap;
}
.hero-card-float-1 {
    top: -20px; right: -20px;
    animation: float1 4s ease-in-out infinite;
}
.hero-card-float-2 {
    bottom: -20px; left: -30px;
    animation: float2 5s ease-in-out infinite;
}
@keyframes float1 {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes float2 {
    0%,100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(8px) rotate(-1deg); }
}
.float-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 0.875rem; color: white;
}
.float-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); }
.float-sub { font-size: 0.7rem; color: var(--gray-500); }

/* ── SECTIONS GENERAL ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700;
    color: var(--blue-bright); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 0.875rem;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800; color: var(--gray-900);
    letter-spacing: -0.025em; margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1rem; color: var(--gray-500); max-width: 560px;
    line-height: 1.7;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── STATS BAR ── */
.stats-bar {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 50%, var(--blue-bright) 100%);
    padding: 3rem 2rem;
}
.stats-bar-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem; text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 60px;
    background: rgba(255,255,255,0.2);
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem; font-weight: 900;
    color: white; line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ── SERVICES ── */
.services-section { background: var(--gray-50); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: white; border: 1px solid var(--gray-200);
    border-radius: 20px; padding: 2rem;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
    cursor: default;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-bright));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.25rem;
    box-shadow: 0 6px 20px rgba(0,61,165,0.25);
}
.service-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--gray-900); margin-bottom: 0.625rem;
}
.service-desc {
    font-size: 0.875rem; color: var(--gray-500); line-height: 1.6;
    margin-bottom: 1.25rem;
}
.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.service-features li {
    font-size: 0.8rem; color: var(--gray-600);
    display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
    content: '✓';
    width: 18px; height: 18px;
    background: var(--blue-pale);
    color: var(--blue-dark);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 0.65rem; font-weight: 700;
    flex-shrink: 0;
}

/* ── ABOUT ── */
.about-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.value-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: all 0.25s ease;
}
.value-item:hover { background: var(--blue-pale); border-color: rgba(0,61,165,0.2); }
.value-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 1rem;
}
.value-content {}
.value-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem; font-weight: 700; color: var(--gray-900);
}
.value-desc { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.2rem; }
.about-visual-side { position: relative; }
.about-mission-vision {
    display: flex; flex-direction: column; gap: 1.5rem;
}
.mv-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 20px; padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
}
.mv-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--blue-dark), var(--blue-bright));
}
.mv-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--blue-bright);
    margin-bottom: 0.5rem;
}
.mv-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 700; color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.mv-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ── PRODUCTS ── */
.products-section { background: var(--gray-50); }
.products-tabs {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.tab-btn {
    padding: 0.6rem 1.25rem; border-radius: 50px;
    font-family: 'Outfit', sans-serif;;
    font-size: 0.85rem; font-weight: 600;
    border: 2px solid var(--gray-200);
    background: white; color: var(--gray-600);
    cursor: pointer; transition: all 0.2s ease;
}
.tab-btn:hover { border-color: var(--blue-bright); color: var(--blue-dark); background: var(--blue-pale); }
.tab-btn.active {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    border-color: transparent; color: white;
    box-shadow: 0 4px 14px rgba(0,61,165,0.3);
}
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.product-chip {
    background: white; border: 1px solid var(--gray-200);
    border-radius: 14px; padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 10px;
    transition: all 0.2s ease; cursor: default;
}
.product-chip:hover { border-color: var(--blue-bright); background: var(--blue-pale); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-chip-dot {
    width: 10px; height: 10px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
    border-radius: 50%;
}
.product-chip-name { font-size: 0.85rem; font-weight: 500; color: var(--gray-700); }

/* ── PROJECTS ── */
.projects-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.project-card {
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--gray-200);
    background: white; box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-img {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    position: relative; overflow: hidden;
}
.project-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,61,165,0.4), transparent);
}
.project-img span { position: relative; z-index: 1; }
.project-info { padding: 1.5rem; }
.project-tag {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--blue-bright); margin-bottom: 0.5rem;
}
.project-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem; font-weight: 700; color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.project-desc { font-size: 0.825rem; color: var(--gray-500); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: 20px; padding: 2rem;
    transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: white; }
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-text {
    font-size: 0.9rem; color: var(--gray-600); line-height: 1.7;
    margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem; font-weight: 700; color: white;
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--gray-800); }
.author-role { font-size: 0.775rem; color: var(--gray-500); }

/* ── CONTACT ── */
.contact-section { background: var(--gray-50); }
.contact-inner {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem; background: white;
    border: 1px solid var(--gray-200); border-radius: 16px;
    transition: all 0.2s ease;
}
.contact-item:hover { border-color: rgba(0,61,165,0.2); background: var(--blue-ultra); }
.contact-item-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.contact-item-label { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item-value { font-size: 0.9rem; color: var(--gray-800); font-weight: 600; }
.contact-form {
    background: white; border: 1px solid var(--gray-200);
    border-radius: 24px; padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: var(--gray-900);
    margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-600); }
.form-input, .form-select, .form-textarea {
    padding: 0.75rem 1rem; border-radius: 12px;
    border: 1.5px solid var(--gray-200);
    font-family: 'Outfit', sans-serif;;
    font-size: 0.875rem; color: var(--gray-800);
    background: white; outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--blue-bright);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.12);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-honey { display: none; }
.form-submit {
    width: 100%; padding: 0.875rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright));
    color: white; border: none; border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0,61,165,0.3);
    transition: all 0.3s ease;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(0,61,165,0.4); }

/* ── FOOTER ── */
footer {
    background: var(--gray-900);
    color: white; padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem; font-weight: 900;
    background: linear-gradient(135deg, var(--blue-light), white);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}
.footer-brand-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 0.9rem;
    transition: all 0.2s ease; color: white;
}
.social-btn:hover { background: var(--blue-bright); transform: translateY(-3px); }
.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    color: white; letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--blue-light); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom span strong { color: var(--blue-light); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    text-decoration: none;
}
.whatsapp-btn {
    width: 58px; height: 58px; border-radius: 60%;
    background: linear-gradient(135deg, #25D366, #1DB566);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px #25D366;
    transition: all 0.3s ease;
    animation: wa-bounce 3s ease-in-out infinite;
    font-size: 1.6rem;
}
@keyframes wa-bounce {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.whatsapp-btn:hover { transform: scale(1.15) !important; box-shadow: 0 10px 35px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
    position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
    background: var(--gray-900); color: white;
    font-size: 0.8rem; font-weight: 600;
    padding: 0.4rem 0.875rem; border-radius: 8px;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-inner { padding: 2rem 0; }
    .hero-card-float { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 3.5rem 1.25rem; }
}
.project-icon-img{
    width: 100%;
    height: auto;
    display: block;
}

/* ── PROJECTS NEW CARD STYLES ── */
.proj-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 50px; margin: 8px 0 10px; letter-spacing: 0.03em; }
.proj-badge-blue   { background: #dbeafe; color: #1e40af; }
.proj-badge-teal   { background: #d1fae5; color: #065f46; }
.proj-badge-purple { background: #ede9fe; color: #4c1d95; }
.proj-badge-amber  { background: #fef3c7; color: #78350f; }
.proj-badge-green  { background: #dcfce7; color: #14532d; }
.proj-badge-coral  { background: #fee2e2; color: #7f1d1d; }
.proj-tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 14px; }
.proj-chip { font-size: 11px; padding: 3px 9px; border-radius: 20px; border: 1px solid var(--gray-200); color: var(--gray-600); background: var(--gray-50); text-decoration: none; display: inline-block; transition: all 0.2s ease; cursor: pointer; }
.proj-chip:hover { background: var(--blue-pale); border-color: var(--blue-bright); color: var(--blue-dark); transform: translateY(-1px); }
.proj-cta { display: inline-block; font-size: 12px; font-weight: 600; color: var(--blue-bright); text-decoration: none; padding-top: 10px; border-top: 1px solid var(--gray-200); width: 100%; transition: color 0.2s ease; margin-top: auto; }
.proj-cta:hover { color: var(--blue-dark); }
.project-card-featured { border: 2px solid rgba(0,102,204,0.35) !important; }
.proj-premium-badge { font-size: 10px; font-weight: 700; background: var(--blue-pale); color: var(--blue-dark); padding: 3px 10px; border-radius: 50px; letter-spacing: 0.04em; white-space: nowrap; }
.project-card { display: flex; flex-direction: column; }
.project-info { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.project-name { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0; line-height: 1.3; }
.project-desc { font-size: 0.825rem; color: var(--gray-500); line-height: 1.6; margin-top: 8px; }
