/* 
 * TechCorp Consolidated Premium Stylesheet
 * Optimized for performance and fast rendering.
 */

:root {
    /* Premium Indigo / Deep Blue Palette */
    --primary: #4f46e5;
    /* Indigo 600 */
    --primary-light: #6366f1;
    /* Indigo 500 */
    --primary-dark: #3730a3;
    /* Indigo 800 */
    --secondary: #0ea5e9;
    /* Sky 500 */
    --dark-bg: #030712;
    /* Gray 950 */
    --card-bg: rgba(17, 24, 39, 0.6);
    /* Gray 900 */
    --text-main: #f8fafc;

    /* Refined Glassmorphism Variables */
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-border-light: rgba(255, 255, 255, 0.12);
    --glass-bg: rgba(17, 24, 39, 0.4);

    /* Neon Colors & Theme Variables */
    --primary-neon: #22d3ee;
    /* Cyan 400 */
    --secondary-neon: #818cf8;
    /* Indigo 400 */
    --neon-cyan: #22d3ee;
    --main-bg-color: #030712;
    --article-resalt-color: #4f46e5;

    /* Font Families */
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ==========================================
   Base Layout & Resets
   ========================================== */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-neon);
}

/* Premium Text Selection */
::selection {
    background: var(--primary-neon);
    color: #030712;
}

/* High-End Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-neon);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
}

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

section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
}

/* Glassmorphism Cards */
.service-card,
.why-card,
.portfolio-item,
.testimonial-card,
.blog-card,
.contact-form-container {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border) !important;
    border-top-color: var(--glass-border-light) !important;
    border-left-color: var(--glass-border-light) !important;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover,
.why-card:hover,
.portfolio-item:hover,
.testimonial-card:hover,
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4) !important;
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top-color: var(--glass-border-light);
    border-left-color: var(--glass-border-light);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
}

/* Typography & Interactive Elements */
.highlight,
.subtitle-neon {
    background: linear-gradient(135deg, var(--primary-neon), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-weight: 800;
    display: inline-block;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark)) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-top-color: rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: var(--primary-neon) !important;
}

/* ==========================================
   Header & Navigation
   ========================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.btn-contact {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: var(--primary);
    color: #0b0f19;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    color: white;
    padding: 0;
}

/* ==========================================
   Hero Section & Particles
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #94a3b8;
}

/* ==========================================
   Grids & Layout elements
   ========================================== */
.services-grid,
.why-grid,
.blog-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ==========================================
   Services & Ecosistema (Tabs)
   ========================================== */
.service-card {
    padding: 40px 30px;
    text-align: left;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #94a3b8;
}

.premium-services-tabs {
    position: relative;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tabs-sidebar {
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 20px 25px;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 3px solid transparent;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.tab-btn.active {
    background: rgba(0, 240, 255, 0.05);
    color: #fff;
    border-left: 3px solid var(--primary-neon);
}

.tab-btn i {
    font-size: 1.3rem;
    color: var(--primary-neon);
    opacity: 0.7;
}

.tab-btn.active i {
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--primary-neon));
}

.tabs-content {
    flex: 1;
    padding: 40px;
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.4s ease-out forwards;
}

.tab-pane.active {
    display: block;
}

.pane-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pane-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.pane-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.8rem;
    color: #fff;
}

.pane-header p {
    margin: 0;
    color: #94a3b8;
    font-size: 1rem;
}

.pane-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: default;
}

.service-chip:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
}

.service-chip i {
    color: var(--primary-neon);
    font-size: 1.1rem;
}

/* ==========================================
   Technologies (Modern grid)
   ========================================== */
.tech-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.tech-card-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.tech-card-modern:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
    transform: translateY(-8px);
}

.tech-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.tech-card-modern:hover .tech-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px currentColor);
}

.tech-card-modern span {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

/* ==========================================
   About Section & Why Choose Us
   ========================================== */
.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--primary);
}

.why-card {
    padding: 30px;
    text-align: left;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.why-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.why-card p {
    color: #94a3b8;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ==========================================
   Creations Accordion Gallery
   ========================================== */
.creations-section {
    padding: 100px 20px;
    text-align: center;
}

.accordion-gallery {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 400px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    position: relative;
    flex-grow: 1;
    width: 224px;
    height: 100%;
    transition: all 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    padding: 0 !important;
}

.accordion-item:hover {
    width: 100%;
    flex-grow: 5;
}

.accordion-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.accordion-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: left;
}

.accordion-item:hover .accordion-content {
    opacity: 1;
}

.accordion-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.accordion-content p {
    font-size: 0.95rem;
    color: #e2e8f0;
}

/* ==========================================
   Carousel Framework
   ========================================== */
.carousel-wrapper {
    width: 100%;
    margin: auto;
    display: flex;
    max-width: 1200px;
    position: relative;
}

.carousel-wrapper i {
    top: 50%;
    height: 44px;
    width: 44px;
    z-index: 150;
    display: flex;
    color: var(--article-resalt-color);
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #fff;
    border-radius: 50%;
    flex-direction: row;
    align-items: center;
    transition: ease 0.5s;
    justify-content: center;
    transform: translateY(-50%);
}

.carousel-wrapper i:active {
    transform: translateY(-50%) scale(0.9);
}

.carousel-wrapper i:hover {
    background: #f2f2f2;
}

.carousel-wrapper i:first-child {
    left: -22px;
    display: none;
}

.carousel-wrapper i:last-child {
    right: -22px;
}

.carousel-wrapper .carousel {
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.carousel.dragging>img,
.carousel.dragging>.item {
    pointer-events: none;
}

.carousel>img {
    height: 400px;
    user-select: none;
    margin-left: 14px;
    object-fit: cover;
    width: calc(100% / 3);
}

.carousel img:first-child {
    margin-left: 0px;
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonials-carousel {
    padding: 30px 0;
}

.testimonials-carousel .item {
    user-select: none;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.testimonials-carousel .item:first-child {
    margin-left: 0px;
}

.testimonials-wrapper>i {
    background: var(--card-bg) !important;
    color: var(--primary-neon) !important;
    border: 1px solid var(--primary-neon);
}

.testimonials-wrapper>i:hover {
    background: var(--primary-neon) !important;
    color: #0b0f19 !important;
}

.testimonial-card.item {
    background: var(--card-bg) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    white-space: normal;
    font-size: 1rem;
    padding: 40px;
    color: #e2e8f0;
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info .avatar i {
    font-size: 3rem;
    color: #94a3b8;
}

.indicators {
    display: flex;
    margin-top: 60px;
    flex-direction: row;
    justify-content: center;
}

.indicators .item {
    width: 15px;
    height: 15px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 100%;
    transition: all ease 1s;
    border: 1px solid white;
}

.indicators .item.active {
    background-color: white;
}

.testimonials-indicators .item {
    border: 1px solid var(--primary);
}

.testimonials-indicators .item.active {
    background-color: var(--primary);
}

/* ==========================================
   Contact Form
   ========================================== */
.contact-form-wrapper.glass-box {
    text-align: left;
    padding: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.info-list {
    list-style: none;
    margin-top: 30px;
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.info-list i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* ==========================================
   Galaxy Footer
   ========================================== */
.galaxy-footer {
    background-color: #0d1326;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    color: #fff;
    padding-top: 150px;
    position: relative;
    margin-top: 150px;
    font-family: 'Inter', sans-serif;
}

.footer-cta {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 85, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 40px 60px;
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.1);
    z-index: 10;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.btn-contact-white {
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.btn-contact-white:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-neon);
    border-color: var(--primary-neon);
    color: #000;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-form .input-group {
    display: flex;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
}

.footer-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    outline: none;
    color: #fff;
}

.footer-form input[type="email"]::placeholder {
    color: #94a3b8;
}

.footer-form button {
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 36px;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-form button:hover {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.footer-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    font-size: 0.9rem;
}

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

.bottom-flex p {
    margin: 0;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.bottom-links a:hover {
    opacity: 0.8;
}

.global-whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

/* ==========================================
   Animations & Transitions
   ========================================== */
.animate-on-scroll {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    visibility: visible;
}

.fade-up {
    transform: translateY(40px);
}

.fade-up.is-visible {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-left.is-visible {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(40px);
}

.fade-right.is-visible {
    transform: translateX(0);
}

.zoom-in {
    transform: scale(0.9);
}

.zoom-in.is-visible {
    transform: scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.infine-rotate {
    animation: rotate-animation 15s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

/* shine effect */
.image-shine {
    overflow: hidden;
    position: relative;
}

.image-shine::before {
    content: '';
    width: 80px;
    left: -250px;
    height: 500px;
    border-radius: 20%;
    position: absolute;
    transform: skewX(-30deg);
    background-color: rgba(255, 255, 255, 0.5);
}

.image-shine:hover::before {
    animation: shine 1s;
}

@keyframes shine {

    0%,
    100% {
        left: -250px;
    }

    50% {
        left: 100%;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Media Queries & Responsive Layouts
   ========================================== */
@media (min-width: 992px) {
    .tabs-container {
        flex-direction: row;
        min-height: 500px;
    }

    .tabs-sidebar {
        width: 320px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
}

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

    .footer-cta {
        top: -60px;
        padding: 30px;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    /* Horizontal scrollable services tab bar on tablet/mobile */
    .tabs-container {
        flex-direction: column;
    }

    .tabs-sidebar {
        width: 100% !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-right: none !important;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .tabs-sidebar::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .tab-btn {
        padding: 15px 20px !important;
        flex-shrink: 0 !important;
        border-left: none !important;
        border-bottom: 3px solid transparent !important;
    }

    .tab-btn.active {
        border-left: none !important;
        border-bottom: 3px solid var(--primary-neon) !important;
        background: rgba(0, 240, 255, 0.05) !important;
    }
}

@media screen and (max-width: 900px) {
    .carousel img {
        width: calc(100% / 2);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    /* Functional Slide-Down Mobile Navigation Menu */
    nav {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 9, 19, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px 30px;
        gap: 15px;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
        color: #e2e8f0;
        text-decoration: none;
        transition: color 0.2s;
    }

    nav ul li a:hover {
        color: var(--primary-neon);
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .btn-contact {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .two-col-layout,
    .form-row,
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    header {
        padding: 20px;
    }

    .glass-box {
        padding: 25px;
    }

    .footer-cta {
        position: relative;
        top: 0;
        margin-top: -80px;
        margin-bottom: 40px;
        width: 100%;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .accordion-gallery {
        flex-direction: column;
        height: 600px;
    }

    .accordion-item {
        width: 100%;
        height: 150px;
    }

    .accordion-item:hover {
        height: 300px;
        width: 100%;
    }
}

@media screen and (max-width: 550px) {
    .carousel-wrapper {
        width: 100%;
    }

    .carousel img,
    .carousel .item {
        width: 100%;
    }
}

/* ==========================================
   Toast Notifications System
   ========================================== */
#toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    width: calc(100vw - 60px);
}

.toast {
    background: rgba(11, 15, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    opacity: 0;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(120%);
    opacity: 0;
}

.toast-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    color: #10b981;
    /* Success Green */
}

.toast-message {
    font-size: 0.95rem;
    font-weight: 500;
    flex-grow: 1;
    color: #f1f5f9;
}

.toast-close-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.toast-close-btn:hover {
    color: white;
}

/* Spinner Animation for forms */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

/* ==========================================
   ULTIMATE PREMIUM REDESIGN STYLES
   ========================================== */

/* --- Pill Nav --- */
.pill-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    width: 80%;
    max-width: 1000px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(11, 15, 25, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* --- Hero Section & Aurora --- */
.premium-hero {
    background: transparent !important;
}

.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background-color: var(--dark-bg);
}

.aurora {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: moveAurora 20s infinite alternate ease-in-out;
}

.aurora-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.aurora-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary-neon) 0%, transparent 70%);
    animation-delay: -5s;
}

.aurora-3 {
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--primary-neon) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes moveAurora {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.2) translate(5%, 10%);
    }

    100% {
        transform: scale(0.9) translate(-5%, -5%);
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    text-align: left;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge-premium {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-neon);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.mega-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Floating UI Elements --- */
.hero-floating-ui {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px !important;
    background: rgba(17, 24, 39, 0.7) !important;
    backdrop-filter: blur(24px) !important;
    border-radius: 16px !important;
    animation: float 6s ease-in-out infinite;
}

.float-card i {
    font-size: 2rem;
}

.float-text h4 {
    font-size: 1rem;
    margin: 0;
    color: #fff;
}

.float-text span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

/* --- Magic Border --- */
.magic-border {
    position: relative;
}

.magic-border::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(to right, var(--primary), var(--primary-neon), var(--secondary-neon));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.magic-border:hover::before {
    opacity: 1;
}

/* --- Bento Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-item.span-2 {
    grid-column: span 2;
}

.bento-item.row-span-2 {
    grid-row: span 2;
}

.bento-bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0.15;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.bento-item:hover .bento-bg-gradient {
    opacity: 0.3;
}

.dev-bg {
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 50%);
}

.app-bg {
    background: radial-gradient(circle at center, var(--secondary) 0%, transparent 50%);
}

.sec-bg {
    background: radial-gradient(circle at top right, #10b981 0%, transparent 50%);
}

.ai-bg {
    background: radial-gradient(circle at bottom left, #a855f7 0%, transparent 50%);
}

.cloud-bg {
    background: radial-gradient(circle at center, var(--primary-neon) 0%, transparent 50%);
}

.bento-content {
    position: relative;
    z-index: 1;
}

.bento-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.bento-content p {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.bento-tags {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
}

.bento-tags li {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-neon);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-top: 20px;
}

.security-chart .bar {
    flex: 1;
    background: linear-gradient(to top, rgba(16, 185, 129, 0.2), #10b981);
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

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

    .bento-item.span-2,
    .bento-item.row-span-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-floating-ui {
        display: none;
    }

    .mega-title {
        font-size: 3.5rem;
    }
}

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

    .pill-nav {
        width: 95%;
        padding: 15px 20px;
    }
}

/* ==========================================
   PHASE 2: ELITE UI OVERHAUL
   ========================================== */

/* --- Infinite Marquee (Tech) --- */
.tech-marquee-section {
    padding: 100px 0;
    overflow: hidden;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-wrapper {
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 30s linear infinite;
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
}

.marquee-item {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: var(--primary-neon);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Elite Asymmetric Grid (About) --- */
.about-elite {
    padding: 150px 0;
    position: relative;
}

.elite-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.elite-sticky-col {
    position: sticky;
    top: 120px;
}

.elite-subtitle {
    color: var(--primary-neon);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.elite-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
}

.elite-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.elite-stats {
    display: flex;
    gap: 40px;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-neon);
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-transform: uppercase;
}

.elite-scroll-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.elite-card {
    padding: 50px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-neon);
    margin-bottom: 20px;
}

.elite-card h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.elite-card p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* --- Elite Features (Why choose us) --- */
.elite-features {
    padding: 120px 0;
}

.elite-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 80px;
}

.feature-row {
    display: grid;
    grid-template-columns: 80px 1fr 2fr 50px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature-row:hover {
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.05), transparent);
}

.feature-num {
    font-size: 1.2rem;
    color: #64748b;
    font-family: 'Outfit', sans-serif;
}

.feature-text h3 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
}

.feature-desc p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin: 0;
}

.feature-arrow {
    font-size: 2rem;
    color: var(--primary-neon);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.feature-row:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* --- FAQ Elite --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.faq-item-elite {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.faq-item-elite summary {
    list-style: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item-elite summary::-webkit-details-marker {
    display: none;
}

.faq-answer-elite {
    padding-bottom: 30px;
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.icon-cross {
    font-size: 2rem;
    color: var(--primary-neon);
    font-weight: 300;
    transition: transform 0.3s ease;
}

details[open] .icon-cross {
    transform: rotate(45deg);
}

/* --- Timeline Elite --- */
.process-elite {
    padding: 120px 0;
    background: var(--dark-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding: 40px 0;
}

.timeline-dot {
    position: absolute;
    left: -56px;
    top: 50px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-neon);
    box-shadow: 0 0 15px var(--primary-neon);
}

.timeline-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1.2rem;
    color: #94a3b8;
}

/* --- Masonry Testimonials --- */
.masonry-grid {
    display: columns;
    columns: 2;
    column-gap: 30px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 30px;
    padding: 40px;
    background: rgba(15, 23, 42, 0.5);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--secondary-neon);
    margin-bottom: 20px;
    opacity: 0.5;
}

.elite-quote {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.client-elite strong {
    display: block;
    color: var(--primary-neon);
    font-size: 1.1rem;
}

.client-elite span {
    color: #64748b;
    font-size: 0.9rem;
}

/* --- Minimal Form --- */
.elite-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.elite-contact-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.elite-contact-list li {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.elite-contact-list a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.elite-contact-list a:hover {
    color: var(--primary-neon);
}

.input-line {
    position: relative;
    margin-bottom: 40px;
}

.input-line input,
.input-line textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    font-size: 1.5rem;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    resize: none;
}

.input-line input:focus,
.input-line textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-neon);
}

.input-line label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-line input:focus~label,
.input-line input:not(:placeholder-shown)~label,
.input-line textarea:focus~label,
.input-line textarea:not(:placeholder-shown)~label {
    top: -20px;
    font-size: 0.9rem;
    color: var(--primary-neon);
}

@media (max-width: 992px) {

    .elite-grid,
    .faq-grid,
    .elite-contact-grid {
        grid-template-columns: 1fr;
    }

    .elite-sticky-col {
        position: relative;
        top: 0;
    }

    .feature-row {
        grid-template-columns: 50px 1fr;
        gap: 10px;
    }

    .feature-text,
    .feature-desc {
        grid-column: span 2;
    }

    .feature-arrow {
        display: none;
    }

    .masonry-grid {
        columns: 1;
    }
}