/* ========== GLOBAL RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
    z-index: 2;
    transition: padding 0.4s ease;
}

.navbar.scrolled .navbar-container {
    padding: 15px 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo {
    color: #0071E3;
    text-shadow: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0071E3, #005BB5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.4);
    transition: all 0.3s ease;
    animation: pulse 3s ease-in-out infinite;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(0, 113, 227, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(0, 113, 227, 0.6);
        transform: scale(1.05);
    }
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.6);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    letter-spacing: 0.3px;
}

.navbar.scrolled .nav-menu a {
    color: #333;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #0071E3, #00A8E8);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover::before {
    transform: scaleX(1);
}

.nav-menu a:hover {
    color: #fff;
    background: rgba(0, 113, 227, 0.15);
    text-shadow: 0 2px 10px rgba(0, 113, 227, 0.3);
}

.navbar.scrolled .nav-menu a:hover {
    color: #0071E3;
    background: rgba(0, 113, 227, 0.08);
    text-shadow: none;
}

.nav-menu a.active {
    background: rgba(0, 113, 227, 0.2);
    color: #fff;
}

.navbar.scrolled .nav-menu a.active {
    background: rgba(0, 113, 227, 0.1);
    color: #0071E3;
}

/* ========== NAV CTA BUTTON ========== */
.nav-cta-btn {
    background: linear-gradient(135deg, #0071E3, #005BB5) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 113, 227, 0.5) !important;
    background: linear-gradient(135deg, #0081FF, #0065CC) !important;
}

.nav-cta-btn::before {
    display: none !important;
}

.navbar.scrolled .nav-cta-btn {
    background: linear-gradient(135deg, #0071E3, #005BB5) !important;
    color: #fff !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar.scrolled .menu-toggle {
    background: rgba(0, 113, 227, 0.1);
    border-color: rgba(0, 113, 227, 0.3);
    color: #0071E3;
}

.menu-toggle:hover {
    background: rgba(0, 113, 227, 0.2);
    transform: scale(1.05);
}

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

.menu-toggle:active::before {
    width: 200px;
    height: 200px;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0D0D0D;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 113, 227, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 113, 227, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5), rgba(0, 20, 40, 0.6));
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.8), transparent);
    animation: scanLine 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 113, 227, 0.6);
}

@keyframes scanLine {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100vh); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: clamp(48px, 8vw, 72px);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero h1::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background: #0071E3;
    margin-left: 8px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #A2A5AA;
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #0071E3, #005BB5);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.4);
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button::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.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 113, 227, 0.5);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* ========== PHILOSOPHY SECTION ========== */
.philosophy {
    background: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.philosophy-content::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0071E3, #00A8E8);
    border-radius: 2px;
}

.philosophy h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: #111;
    margin-bottom: 30px;
    line-height: 1.2;
    margin-top: 20px;
}

.philosophy p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: #F8F9FB;
    padding: 25px;
    border-radius: 12px;
    border-left: 3px solid #0071E3;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0071E3;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.philosophy-image-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0D0D, #1A1A1A);
}

.philosophy-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 113, 227, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 113, 227, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
    pointer-events: none;
}

.philosophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.6s ease;
}

.philosophy-image:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 113, 227, 0.3));
    z-index: 1;
}

.philosophy-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.philosophy-badge-title {
    font-size: 14px;
    color: #0071E3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.philosophy-badge-text {
    font-size: 20px;
    color: #111;
    font-weight: 700;
}

/* ========== SERVICES SECTION ========== */
.services {
    background: #fff;
    padding: 100px 20px;
}

.services h2 {
    font-size: clamp(36px, 6vw, 48px);
    text-align: center;
    margin-bottom: 80px;
    color: #111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 48px;
    color: #0071E3;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
    background: linear-gradient(135deg, #0D0D0D, #1A1A1A);
    padding: 120px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.how-it-works-container {
    position: relative;
    z-index: 1;
}

.how-it-works h2 {
    font-size: clamp(36px, 6vw, 52px);
    text-align: center;
    margin-bottom: 80px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071E3, #005BB5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

.step-icon {
    font-size: 36px;
    color: #fff;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step p {
    color: #A2A5AA;
    font-size: 16px;
    line-height: 1.6;
}

.step-arrow {
    display: none;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial {
    background: #0D0D0D;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 113, 227, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 113, 227, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-header {
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 15px;
}

.testimonial-header p {
    color: #A2A5AA;
    font-size: 18px;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.quote-icon {
    font-size: 48px;
    color: #0071E3;
    margin-bottom: 30px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: clamp(20px, 3vw, 32px);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #fff;
}

.testimonial-author {
    font-size: 18px;
    color: #A2A5AA;
    font-weight: 400;
}

.testimonial-company {
    font-size: 16px;
    color: #0071E3;
    margin-top: 5px;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 20px;
    color: #FFD700;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0071E3;
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(0, 113, 227, 0.6);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.testimonial-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background: rgba(0, 113, 227, 0.3);
    border-color: #0071E3;
    transform: scale(1.1);
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: #F8F9FB;
    padding: 120px 20px;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: clamp(36px, 6vw, 48px);
    margin-bottom: 15px;
    color: #111;
}

.contact-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0071E3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

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

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #0071E3, #005BB5);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 113, 227, 0.4);
}

.submit-button.success {
    background: #34C759;
    pointer-events: none;
}

/* ========== FOOTER ========== */
.footer {
    background: #111;
    color: #A2A5AA;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0071E3, #00A8E8);
    border-radius: 2px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #A2A5AA;
    margin-bottom: 10px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column a {
    color: #A2A5AA;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    display: inline-block;
}

.footer-links-column a:hover {
    color: #0071E3;
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact i {
    color: #0071E3;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.footer-contact a {
    color: #A2A5AA;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #0071E3;
}

.footer-social {
    margin-top: 25px;
}

.footer-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #A2A5AA;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.3);
}

.social-link i {
    font-size: 20px;
}

.social-link span {
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: #666;
}

/* ========== FAQ CHATBOT ========== */
.faq-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.faq-button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071E3, #00A8E8);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 113, 227, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.faq-button:hover::before {
    transform: scale(1);
}

.faq-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 113, 227, 0.6);
}

.faq-button i {
    font-size: 28px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.faq-button.active i {
    transform: rotate(180deg);
}

.faq-widget {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.faq-widget.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.faq-header {
    background: linear-gradient(135deg, #0071E3, #00A8E8);
    padding: 25px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.faq-header h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.faq-header p {
    font-size: 14px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    margin: 0;
}

.faq-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #F8F9FB;
}

.faq-welcome-message {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideInUp 0.5s ease;
}

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

.faq-welcome-message p {
    font-size: 14px;
    color: #555;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-question-btn {
    background: #fff;
    border: 2px solid #E5E7EB;
    padding: 14px 16px;
    border-radius: 10px;
    text-align: left;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question-btn:hover {
    border-color: #0071E3;
    background: rgba(0, 113, 227, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.15);
}

.faq-question-btn i {
    color: #0071E3;
    font-size: 16px;
}

.faq-answer {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideInUp 0.4s ease;
    border-left: 4px solid #0071E3;
}

.faq-answer h4 {
    font-size: 15px;
    color: #0071E3;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.faq-answer ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.faq-answer li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 5px;
}

.faq-back-btn {
    background: linear-gradient(135deg, #0071E3, #00A8E8);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
}

.faq-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

.faq-footer {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.faq-footer p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.faq-footer a {
    color: #0071E3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-footer a:hover {
    color: #005BB5;
}

.faq-body::-webkit-scrollbar { width: 6px; }
.faq-body::-webkit-scrollbar-track { background: #F0F2F5; border-radius: 10px; }
.faq-body::-webkit-scrollbar-thumb { background: #C7CDD4; border-radius: 10px; }
.faq-body::-webkit-scrollbar-thumb:hover { background: #A8B0BB; }

/* ========== SCROLL ANIMATIONS ========== */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 968px) {
    .philosophy-container { grid-template-columns: 1fr; }
    .philosophy-content { padding: 60px 30px; }
    .philosophy-content::before { left: 30px; }
    .philosophy-image-container { min-height: 400px; }
    .philosophy-stats { grid-template-columns: 1fr; }
}

@media (min-width: 900px) {
    .steps-container { grid-template-columns: repeat(3, 1fr); }
    .step:not(:last-child)::after {
        content: '\2192';
        position: absolute;
        right: -30px;
        top: 40px;
        font-size: 32px;
        color: #0071E3;
    }
}

/* Desktop logo size - smaller than mobile */
@media (min-width: 768px) {
    .logo-icon { width: 28px; height: 28px; font-size: 14px; }
}

@media (max-width: 768px) {
    .navbar-container { padding: 15px 20px; }
    .logo { font-size: 16px; }
    .logo-icon { width: 32px; height: 32px; font-size: 16px; }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
        opacity: 1;
        padding: 20px;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(-10px);
        animation: slideInNav 0.3s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }

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

    .nav-menu a {
        padding: 15px 20px;
        width: 100%;
        color: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li:last-child a { border-bottom: none; }
    .nav-menu a::before { bottom: 15px; }

    .philosophy, .services, .how-it-works, .contact { padding: 60px 20px; }
    .contact-form { padding: 30px 20px; }
    .services-grid { gap: 30px; }
    .steps-container { gap: 40px; }

    .testimonial-nav button { width: 40px; height: 40px; font-size: 16px; }
    .testimonial-text { font-size: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .faq-chatbot { bottom: 20px; right: 20px; }
    .faq-widget { width: calc(100vw - 40px); max-width: 380px; right: 0; }
    .faq-button { width: 60px; height: 60px; }
    .faq-button i { font-size: 24px; }
}