/* ============================================
   TS DEVELOPMENTS AND PROJECTS - STYLES
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0a2540;
    --primary-dark: #051525;
    --primary-light: #1a3a5c;
    --accent: #2e8fd6;
    --accent-light: #5cb3f0;
    --accent-glow: rgba(46, 143, 214, 0.3);
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.55);
    --text-dark: #333333;
    --bg-light: #f8fafc;
    --border: rgba(46, 143, 214, 0.15);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION - WHITE VERSION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition-slow);
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(46, 143, 214, 0.4));
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(46, 143, 214, 0.1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 40%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 16px 24px;
        width: 100%;
        text-align: center;
        color: var(--primary);
    }

    .hamburger {
        display: flex;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(46, 143, 214, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 143, 214, 0.08) 0%, transparent 40%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 143, 214, 0.15);
    border: 1px solid rgba(46, 143, 214, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #1a7bc8);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(46, 143, 214, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 143, 214, 0.6);
}

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-tag.light {
    color: var(--accent-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 143, 214, 0.08), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 143, 214, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(46, 143, 214, 0.05);
}

.service-card.featured {
    border-color: rgba(46, 143, 214, 0.3);
    background: rgba(46, 143, 214, 0.05);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #1a7bc8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(3deg);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   WHY SECTION
   ============================================ */

.why-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 5;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.why-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 37, 64, 0.6) 100%);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.why-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-content > p {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(46, 143, 214, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.feature-text h4 {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--text-dark);
    opacity: 0.6;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    z-index: 5;
}

.pricing-section .section-title,
.pricing-section .section-desc {
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-slow);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 143, 214, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border-color: rgba(46, 143, 214, 0.4);
    background: rgba(46, 143, 214, 0.08);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent);
    font-size: 0.85rem;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
}

.btn-pricing:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-pricing.btn-popular {
    background: linear-gradient(135deg, var(--accent), #1a7bc8);
    border: none;
    box-shadow: 0 4px 20px rgba(46, 143, 214, 0.4);
}

.btn-pricing.btn-popular:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 143, 214, 0.6);
    color: var(--white);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 5;
    background: var(--primary-dark);
}

.cta-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 143, 214, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent), #1a7bc8);
    color: var(--white);
    padding: 16px 36px;
    box-shadow: 0 8px 30px rgba(46, 143, 214, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(46, 143, 214, 0.55);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 16px 36px;
}

.btn-cta-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(46, 143, 214, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 143, 214, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--accent);
    font-size: 0.9rem;
    width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 37, 64, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 16px 24px;
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: scale(1) translateY(-8px);
    }

    .why-content h2,
    .cta-content h2,
    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .experience-badge {
        padding: 14px 18px;
    }

    .exp-number {
        font-size: 2rem;
    }
}


/* ============================================
   SERVICES PAGE - ADDITIONAL STYLES
   ============================================ */

/* Page Header */
.page-header {
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(46, 143, 214, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(46, 143, 214, 0.08) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 143, 214, 0.15);
    border: 1px solid rgba(46, 143, 214, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-tag i {
    color: var(--accent);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Pricing Category Section */
.pricing-category {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 5;
}

.pricing-category.sars-category {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.pricing-category.sars-category .category-info h2,
.pricing-category.sars-category .category-info p {
    color: var(--white);
}

.pricing-category.sars-category .sub-category h3 {
    color: var(--white);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border);
}

.pricing-category.sars-category .category-header {
    border-bottom-color: rgba(46, 143, 214, 0.2);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #1a7bc8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.category-icon.sars-icon {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.category-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.category-info p {
    color: var(--text-dark);
    opacity: 0.6;
    font-size: 1rem;
}

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--accent), #1a7bc8);
}

.pricing-table thead th {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 18px 24px;
    text-align: left;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-table thead th.price-col {
    text-align: right;
    min-width: 120px;
}

.pricing-table tbody tr {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: rgba(46, 143, 214, 0.03);
}

.pricing-table tbody tr.category-row {
    background: var(--primary);
}

.pricing-table tbody tr.category-row td {
    color: var(--white);
    font-weight: 600;
    padding: 14px 24px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.pricing-table tbody td {
    padding: 16px 24px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.pricing-table tbody td i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 0.85rem;
}

.pricing-table tbody td.price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    text-align: right;
    white-space: nowrap;
}

.pricing-table tbody tr.highlight-row {
    background: rgba(46, 143, 214, 0.05);
    border-left: 4px solid var(--accent);
}

.pricing-table tbody tr.highlight-row td {
    font-weight: 500;
}

.pricing-table tbody tr.highlight-row td.price {
    color: var(--accent);
    font-weight: 800;
}

/* SARS Table Dark Theme */
.pricing-table.sars-table {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-table.sars-table tbody tr {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table.sars-table tbody tr:hover {
    background: rgba(46, 143, 214, 0.08);
}

.pricing-table.sars-table tbody td {
    color: var(--text-light);
}

.pricing-table.sars-table tbody td.price {
    color: var(--accent-light);
}

.pricing-table.sars-table tbody tr.highlight-row {
    background: rgba(46, 143, 214, 0.1);
    border-left: 4px solid var(--accent);
}

.pricing-table.sars-table tbody tr.highlight-row td.price {
    color: var(--accent-light);
}

/* Sub Category */
.sub-category {
    margin-bottom: 50px;
}

.sub-category:last-child {
    margin-bottom: 0;
}

.sub-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sub-category h3 i {
    color: var(--accent);
    font-size: 1.1rem;
}

.pricing-category.sars-category .sub-category h3 {
    color: var(--white);
}

/* Mini Cards */
.pricing-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mini-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.mini-card:hover::before {
    transform: scaleX(1);
}

.mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 143, 214, 0.2);
}

.mini-card.wide {
    grid-column: span 2;
}

.mini-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mini-card-header i {
    width: 40px;
    height: 40px;
    background: rgba(46, 143, 214, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.mini-card-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.mini-card p {
    color: var(--text-dark);
    opacity: 0.6;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.mini-price {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #1a7bc8);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

.mini-price small {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Accounting Card */
.accounting-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(46, 143, 214, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-slow);
}

.accounting-card:hover {
    border-color: rgba(46, 143, 214, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.accounting-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accounting-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.accounting-content {
    flex: 1;
}

.accounting-content h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.accounting-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.accounting-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.price-from {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.accounting-note {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.7;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.additional-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(46, 143, 214, 0.15);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-slow);
}

.additional-card:hover {
    border-color: rgba(46, 143, 214, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.additional-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.additional-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.additional-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE - SERVICES PAGE
   ============================================ */

@media (max-width: 1024px) {
    .pricing-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-card.wide {
        grid-column: span 2;
    }

    .additional-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .pricing-table thead th {
        padding: 14px 16px;
        font-size: 0.8rem;
    }

    .pricing-table tbody td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .pricing-cards-row {
        grid-template-columns: 1fr;
    }

    .mini-card.wide {
        grid-column: span 1;
    }

    .accounting-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

    .accounting-price {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 16px 60px;
    }

    .pricing-category {
        padding: 60px 0;
    }

    .pricing-table-wrapper {
        margin: 0 -16px 40px;
        padding: 0 16px;
    }
}