/* ==========================================================================
   SPARKLINK SOLUTIONS LLC - PREMIUM LIGHT THEME WEB SYSTEM
   ========================================================================== */

:root {
    --bg-base: #ffffff;
    --bg-surface: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.75);
    --border-glow: rgba(0, 102, 255, 0.2);
    --border-muted: rgba(15, 23, 42, 0.06);
    
    --accent-primary: #0066ff;
    --accent-secondary: #00d4ff;
    --accent-gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --accent-glow: rgba(0, 212, 255, 0.15);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --ff-heading: 'Bricolage Grotesque', sans-serif;
    --ff-subheading: 'Inter', sans-serif;
    --ff-body: 'Inter', sans-serif;
    
    --transition-smooth: none;
    --transition-glow: none;
}

/* Base Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--ff-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(#0066ff, #00d4ff);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00d4ff;
}

/* Core Typography */
h1, h2, h3, h4 {
    font-family: var(--ff-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #0f172a 40%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-weight: 800;
}

p {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
    position: relative;
    z-index: 2;
}

/* Background Glow Elements */
.bg-glow-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bg-glow-blob {
    display: none;
}

.blob-1 {
    width: 35vw;
    height: 35vw;
    background: var(--accent-primary);
    top: -10%;
    right: -10%;
}

.blob-2 {
    width: 38vw;
    height: 38vw;
    background: var(--accent-secondary);
    bottom: -15%;
    left: -15%;
}



#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

#scroll-progress {
    display: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: var(--ff-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}



.btn-secondary {
    background: rgba(15, 23, 42, 0.02);
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
}



/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-muted);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

header:not(.scrolled) {
    padding: 1.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.logo-symbol {
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: rotate(-10deg);
}

.logo-symbol i {
    color: #ffffff;
    font-size: 0.95rem;
}

.logo-text span {
    color: var(--accent-secondary);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link a {
    color: var(--text-secondary);
    font-family: var(--ff-subheading);
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
}

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

.nav-link.active a {
    color: var(--text-primary);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger-box {
    width: 26px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 4px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-family: var(--ff-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 0.75rem;
}



.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    line-height: 1.02;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    font-weight: 800;
}

.hero-headline span.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.typewriter-container {
    display: inline-block;
    vertical-align: top;
    min-height: 1.2em;
    font-family: var(--ff-heading);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cursor {
    display: inline-block;
    width: 3px;
    background: var(--accent-primary);
    margin-left: 5px;
    height: 0.8em;
    vertical-align: middle;
}



.hero-subheadline {
    max-width: 600px;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-size: clamp(1.05rem, 1.2vw, 1.2rem);
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Premium Image Framework in Hero (Right Column) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,0.2) 100%);
}

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

/* Overlay Stats Badge in Hero */
.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-muted);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.floating-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-info h4 {
    font-family: var(--ff-subheading);
    font-size: 1.1rem;
    font-weight: 700;
}

.floating-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   INFINITY TICKER / MARQUEE
   ========================================================================== */
.marquee-section {
    background: #f8fafc;
    border-top: 1px solid var(--border-muted);
    border-bottom: 1px solid var(--border-muted);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    gap: 4rem;
    overflow: hidden;
}

.marquee-item {
    font-family: var(--ff-heading);
    font-size: clamp(1.1rem, 1.8vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.marquee-item i {
    color: var(--accent-primary);
    font-size: 0.9em;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.15);
}



/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.services-header p {
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

.service-card {
    padding: 3rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.service-title {
    font-family: var(--ff-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.service-desc {
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.7;
    letter-spacing: -0.005em;
}

/* ==========================================================================
   WHY CHOOSE US & STATS SECTION
   ========================================================================== */
.why-us {
    background: #f8fafc;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 5rem;
    align-items: center;
}

.why-us-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.why-us-intro {
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-family: var(--ff-body);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.why-us-desc {
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.stat-icon {
    color: var(--accent-primary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.1);
}

.stat-number {
    font-family: var(--ff-heading);
    font-size: clamp(2.5rem, 3.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.stat-number span.plus {
    color: var(--accent-primary);
    font-weight: 800;
}

.stat-label {
    font-family: var(--ff-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Why Us Right Column Image Frame */
.why-us-visual-card {
    background: #ffffff;
    border: 1px solid var(--border-muted);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
    position: relative;
}

.why-us-img-box {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.why-us-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-graph-label {
    font-family: var(--ff-subheading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-us-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-us-bar-item span {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.why-us-bar-track {
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.why-us-bar-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem auto;
}

.process-header p {
    margin-top: 1rem;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
}

/* Connecting Flow Line for Desktop */
.process-flow::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(15, 23, 42, 0.05) 0%, 
        var(--accent-primary) 50%, 
        rgba(15, 23, 42, 0.05) 100%);
    z-index: 1;
}

.process-flow::after {
    display: none;
}



.process-step {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-circle {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border: 2px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    font-family: var(--ff-subheading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.process-step:hover .process-circle {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.process-circle span.step-num {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-step-title {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.process-step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
    background: #f8fafc;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.testimonials-header p {
    margin-top: 1rem;
}

.slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1.5rem;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    padding: 3.5rem 3rem;
    position: relative;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3.5rem;
    color: rgba(0, 102, 255, 0.05);
}

.stars-box {
    display: flex;
    gap: 0.3rem;
    color: #ffb700;
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

.testimonial-text {
    font-size: clamp(1.05rem, 1.25vw, 1.3rem);
    color: var(--text-primary);
    font-family: var(--ff-body);
    line-height: 1.75;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2.2rem;
    letter-spacing: -0.01em;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent-gradient);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--ff-subheading);
    color: #ffffff;
}

.client-info h4 {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.client-info span {
    font-size: 0.82rem;
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.slider-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--accent-gradient);
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner-wrapper {
    position: relative;
    border-radius: 30px;
    padding: 5.5rem 4rem;
    overflow: hidden;
    text-align: center;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.08);
}

.cta-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.06) 0%, rgba(0,0,0,0) 60%),
                radial-gradient(circle at 10% 80%, rgba(0, 212, 255, 0.06) 0%, rgba(0,0,0,0) 60%),
                #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 30px;
    z-index: -1;
}

.cta-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #0f172a 30%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    max-width: 650px;
    margin: 0 auto 3rem auto;
    color: var(--text-secondary);
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-email {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
}

/* ==========================================================================
   FOOTER (Dark Contrast anchor for high-end feel)
   ========================================================================== */
footer {
    background: #09090b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 2.5rem 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: #ffffff !important;
}

.footer-about {
    font-size: 0.95rem;
    color: #a0a0ab;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #a0a0ab;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-col h5 {
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.8rem;
    position: relative;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    list-style: none;
}

.footer-link a {
    color: #a0a0ab;
    font-size: 0.92rem;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.footer-link a:hover {
    color: var(--accent-secondary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #a0a0ab;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--accent-secondary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

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

.footer-copyright {
    font-size: 0.9rem;
    color: #6f6f76;
}

.footer-stamp {
    font-size: 0.9rem;
    color: #6f6f76;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-stamp i {
    color: #e25555;
}



/* ==========================================================================
   RESPONSIVE DESIGN (320px to 1920px)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .why-us-content h2, .why-us-content, .why-us-intro {
        text-align: center;
    }
    .why-us-visual-card {
        max-width: 500px;
        margin: 0 auto;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 991px) {
    section {
        padding: 5rem 0;
    }
    
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        z-index: 1000;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--border-muted);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links.open ~ .hamburger .hamburger-inner {
        background-color: transparent;
    }
    
    .nav-links.open ~ .hamburger .hamburger-inner::before {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-links.open ~ .hamburger .hamburger-inner::after {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .hero-image-frame {
        height: 380px;
    }

    .hero-floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .process-flow::before {
        width: 2px;
        height: 70%;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .process-flow::after {
        display: none;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
    }

    .process-circle {
        margin-bottom: 1.2rem;
    }

    .process-step-desc {
        max-width: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        align-items: center;
        text-align: center;
    }

    .cta-banner-wrapper {
        padding: 4rem 2rem;
        border-radius: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-info {
        align-items: center;
        text-align: center;
    }

    .footer-about {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-image-frame {
        height: 300px;
    }
    
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    
    .quote-icon {
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
}
