/* ===== 444 TEAM DEV - BLUE GALAXY THEME ===== */
:root {
    /* Blue Galaxy Color Palette */
    --blue-deep: #030514;
    --blue-dark: #0a0f1f;
    --blue-medium: #1a2f4a;
    --blue-light: #2a4a7a;
    --blue-accent: #3a6b9f;
    --blue-glow: #4a8bff;
    
    /* Gold Accents */
    --gold: #ffd700;
    --gold-dim: #b8860b;
    --gold-glow: rgba(255, 215, 0, 0.3);
    
    /* Text Colors */
    --text-light: #e0e8ff;
    --text-dim: #a0b0d0;
    --text-dark: #0a0a1a;
    
    /* Backgrounds */
    --bg-dark: #030514;
    --bg-darker: #020210;
    --bg-card: rgba(10, 26, 42, 0.7);
    
    /* Effects */
    --shadow-blue: 0 0 20px rgba(42, 90, 138, 0.3);
    --glow-blue: 0 0 30px rgba(42, 90, 138, 0.5);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, var(--blue-medium), var(--blue-accent));
    --gradient-gold: linear-gradient(135deg, var(--gold-dim), var(--gold));
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Logo */
.bg-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--bg-dark) 100%);
    z-index: 1;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.glow-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff, var(--blue-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--glow-blue);
}

.glitch-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 
        0.05em 0 0 rgba(255, 215, 0, 0.3),
        -0.025em -0.05em 0 rgba(42, 90, 138, 0.3),
        0.025em 0.05em 0 rgba(0, 255, 255, 0.3);
    animation: glitch 500ms infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 
            0.05em 0 0 rgba(255, 215, 0, 0.3),
            -0.025em -0.05em 0 rgba(42, 90, 138, 0.3),
            0.025em 0.05em 0 rgba(0, 255, 255, 0.3);
    }
    14% {
        text-shadow: 
            0.05em 0 0 rgba(255, 215, 0, 0.3),
            -0.025em -0.05em 0 rgba(42, 90, 138, 0.3),
            0.025em 0.05em 0 rgba(0, 255, 255, 0.3);
    }
    15% {
        text-shadow: 
            -0.05em -0.025em 0 rgba(255, 215, 0, 0.3),
            0.025em 0.025em 0 rgba(42, 90, 138, 0.3),
            -0.05em -0.05em 0 rgba(0, 255, 255, 0.3);
    }
    49% {
        text-shadow: 
            -0.05em -0.025em 0 rgba(255, 215, 0, 0.3),
            0.025em 0.025em 0 rgba(42, 90, 138, 0.3),
            -0.05em -0.05em 0 rgba(0, 255, 255, 0.3);
    }
    50% {
        text-shadow: 
            0.025em 0.05em 0 rgba(255, 215, 0, 0.3),
            0.05em 0 0 rgba(42, 90, 138, 0.3),
            0 -0.05em 0 rgba(0, 255, 255, 0.3);
    }
    99% {
        text-shadow: 
            0.025em 0.05em 0 rgba(255, 215, 0, 0.3),
            0.05em 0 0 rgba(42, 90, 138, 0.3),
            0 -0.05em 0 rgba(0, 255, 255, 0.3);
    }
    100% {
        text-shadow: 
            0.05em 0 0 rgba(255, 215, 0, 0.3),
            -0.025em -0.05em 0 rgba(42, 90, 138, 0.3),
            0.025em 0.05em 0 rgba(0, 255, 255, 0.3);
    }
}

.blue-text {
    color: var(--blue-accent);
}

.blue-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 5, 20, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--blue-medium);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-glow {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--glow-blue);
}

.logo-text {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 16px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--blue-medium);
    color: white;
    box-shadow: 0 0 20px var(--blue-medium);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== FLOATING BUTTONS ===== */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.float-wa:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.float-wa i {
    font-size: 1.5rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 150px 0 60px;
    text-align: center;
    background: rgba(2, 5, 20, 0.5);
    position: relative;
}

.page-header h1 {
    font-size: 3.5rem;
    margin: 20px 0 15px;
}

.header-description {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.terminal-badge {
    margin-bottom: 20px;
}

.badge-text {
    background: rgba(42, 90, 138, 0.3);
    border: 1px solid var(--blue-accent);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    display: inline-block;
}

.team-header-stats,
.portfolio-header-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.header-stat {
    text-align: center;
}

.header-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.2;
}

.header-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* ===== HERO SECTION (Index) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 30px;
}

.typing-container {
    font-size: 1.5rem;
    margin: 20px 0;
    min-height: 60px;
    color: var(--gold);
    font-family: 'Fira Code', monospace;
}

.typing-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin: 25px 0;
    line-height: 1.8;
    border-left: 3px solid var(--blue-accent);
    padding-left: 20px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 0 20px var(--blue-accent);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--blue-accent);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--blue-accent);
}

.btn-outline:hover {
    background: var(--blue-accent);
    color: white;
    transform: translateY(-3px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--text-dim);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badges span {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.trust-badges i {
    color: var(--gold);
    margin-right: 5px;
}

/* Terminal Card */
.terminal-card {
    background: rgba(10, 26, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--blue-medium);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(10, 26, 42, 0.5);
}

.terminal-header {
    background: rgba(2, 5, 20, 0.8);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--blue-medium);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    color: var(--gold);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.terminal-body p {
    margin-bottom: 8px;
}

.prompt {
    color: var(--blue-accent);
    margin-right: 10px;
}

.cmd {
    color: var(--gold);
}

.output {
    color: var(--text-dim);
    padding-left: 20px;
}

.success {
    color: #27c93f;
}

.active-status {
    color: #27c93f;
    font-weight: bold;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--text-dim);
    font-size: 1.5rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== TRUSTED BY SECTION ===== */
.trusted-by {
    padding: 50px 0;
    background: rgba(2, 5, 20, 0.5);
}

.trusted-title {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trusted-logo {
    color: var(--text-dim);
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trusted-logo i {
    color: var(--gold);
}

.trusted-logo:hover {
    opacity: 1;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: rgba(2, 5, 20, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--blue-medium);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 0 40px var(--blue-accent);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    color: var(--gold);
    font-size: 0.8rem;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.service-tech span {
    background: rgba(42, 90, 138, 0.3);
    border: 1px solid var(--blue-medium);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 15px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: rgba(10, 26, 42, 0.5);
    border-radius: 10px;
}

.services-cta p {
    color: var(--text-dim);
}

.services-cta a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    margin-left: 10px;
}

/* ===== PORTFOLIO PREVIEW (Index) ===== */
.portfolio-preview {
    padding: 80px 0;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.preview-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s;
}

.preview-card.featured {
    grid-row: span 2;
}

.preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--blue-accent);
}

.preview-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.preview-card.featured .preview-image {
    height: 300px;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.preview-card:hover .preview-image img {
    transform: scale(1.1);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.preview-card:hover .preview-overlay {
    opacity: 1;
}

.preview-links {
    display: flex;
    gap: 15px;
}

.preview-link {
    width: 45px;
    height: 45px;
    background: var(--blue-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.preview-link:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.preview-content {
    padding: 20px;
}

.preview-category {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Fira Code', monospace;
}

.preview-content h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.preview-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.preview-tech {
    display: flex;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.preview-tech span {
    background: rgba(42, 90, 138, 0.3);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.preview-more {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 80px 0;
    background: rgba(2, 5, 20, 0.7);
}

.process-timeline {
    max-width: 800px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--blue-accent), transparent);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 20px var(--blue-accent);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--blue-medium);
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--gold);
}

.step-content p {
    color: var(--text-dim);
    line-height: 1.6;
}

.step-duration {
    margin-top: 10px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.step-duration i {
    margin-right: 5px;
    color: var(--gold);
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 80px 0;
    background: rgba(2, 5, 20, 0.7);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 0 40px var(--blue-accent);
}

.pricing-card.popular {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--gold-glow);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--blue-medium);
}

.pricing-category {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Fira Code', monospace;
}

.pricing-header h3 {
    margin: 15px 0;
    font-size: 1.5rem;
    color: white;
}

.pricing-price {
    margin: 20px 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.period {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--gold);
    width: 20px;
}

.pricing-features .unavailable {
    color: var(--text-dim);
    opacity: 0.5;
}

.pricing-features .unavailable i {
    color: #ff4444;
}

.pricing-footer {
    padding: 0 30px 30px;
}

.payment-methods {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: rgba(10, 26, 42, 0.5);
    border-radius: 10px;
}

.payment-methods p {
    color: var(--text-dim);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.payment-icons span {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.payment-icons i {
    color: var(--gold);
}

.payment-note {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(42, 90, 138, 0.2);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: white;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-dim);
    line-height: 1.8;
}

/* ===== BLOG PREVIEW SECTION ===== */
.blog-preview {
    padding: 80px 0;
    background: rgba(2, 5, 20, 0.7);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--blue-accent);
}

.blog-image {
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--gold);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
    font-family: 'Fira Code', monospace;
}

.blog-date i {
    margin-right: 5px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: white;
}

.blog-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 60px 0;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--blue-medium), var(--blue-dark));
    border-radius: 15px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid var(--gold-dim);
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.newsletter-content p {
    color: var(--text-dim);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    border: 1px solid var(--blue-light);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ===== TEAM PAGE SPECIFIC STYLES ===== */
.team-intro {
    padding: 60px 0;
}

.intro-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 20px;
    padding: 40px;
}

.intro-terminal {
    font-family: 'Fira Code', monospace;
    background: rgba(2, 5, 20, 0.7);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--blue-accent);
}

.terminal-output {
    margin-top: 15px;
    color: var(--text-dim);
}

.terminal-output p {
    margin-bottom: 5px;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-feature i {
    color: var(--gold);
}

.team-showcase {
    padding: 60px 0;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-card-modern {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.team-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--blue-accent);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.team-card-modern:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card-modern:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    gap: 15px;
}

.overlay-content a {
    width: 45px;
    height: 45px;
    background: var(--blue-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.overlay-content a:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: white;
}

.role {
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.skills-tags span {
    background: rgba(42, 90, 138, 0.3);
    border: 1px solid var(--blue-medium);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.8rem;
}

.bio {
    color: var(--text-dim);
    margin-bottom: 15px;
    line-height: 1.6;
}

.stats-mini {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.mini-stat {
    text-align: center;
}

.mini-stat .num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.mini-stat .label {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--blue-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: var(--blue-accent);
    gap: 12px;
}

.team-skills {
    padding: 60px 0;
    background: rgba(2, 5, 20, 0.5);
}

.skills-overview {
    text-align: center;
}

.skills-header {
    margin-bottom: 40px;
}

.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.skill-tag {
    background: rgba(42, 90, 138, 0.3);
    border: 1px solid var(--blue-accent);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.skill-tag:hover {
    background: var(--blue-accent);
    transform: scale(1.05);
}

.team-projects {
    padding: 60px 0;
}

.team-project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
}

.team-project-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
}

.team-project-card:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.project-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.project-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.project-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contributors {
    color: var(--gold);
    font-size: 0.8rem;
}

.why-choose {
    padding: 60px 0;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.reason-list {
    margin: 40px 0;
}

.reason-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.reason-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
}

.reason-text h3 {
    margin-bottom: 5px;
}

.reason-text p {
    color: var(--text-dim);
}

.team-testimonials {
    padding: 60px 0;
    background: rgba(2, 5, 20, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card-small {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    padding: 25px;
    position: relative;
}

.quote-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-card-small p {
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-author p {
    font-size: 0.8rem;
    margin: 0;
}

.cta-team {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--blue-medium), var(--blue-dark));
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-dim);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.response-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
}

/* ===== PORTFOLIO PAGE SPECIFIC STYLES ===== */
.portfolio-filter-section {
    padding: 40px 0 20px;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--blue-medium);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--blue-accent);
    border-color: var(--gold);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(42, 90, 138, 0.3);
    border: 1px solid var(--blue-medium);
    border-radius: 30px;
    padding: 5px 15px;
}

.search-box i {
    color: var(--gold);
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    padding: 8px;
    width: 200px;
}

.search-box input:focus {
    outline: none;
}

.portfolio-grid-section {
    padding: 40px 0 80px;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-card-detailed {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
}

.portfolio-card-detailed:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--blue-accent);
}

.portfolio-media {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.portfolio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.portfolio-card-detailed:hover .portfolio-media img {
    transform: scale(1.05);
}

.portfolio-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.portfolio-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-card-detailed:hover .portfolio-hover {
    opacity: 1;
}

.hover-link {
    width: 45px;
    height: 45px;
    background: var(--blue-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.hover-link:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.portfolio-details {
    padding: 25px;
}

.portfolio-category {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: 'Fira Code', monospace;
}

.portfolio-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.portfolio-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.portfolio-meta span {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.portfolio-meta i {
    margin-right: 5px;
    color: var(--gold);
}

.portfolio-description {
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.6;
}

.portfolio-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.portfolio-tech-stack span {
    background: rgba(42, 90, 138, 0.3);
    border: 1px solid var(--blue-medium);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.8rem;
}

.portfolio-features {
    margin-bottom: 20px;
}

.portfolio-features h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.portfolio-features ul {
    list-style: none;
}

.portfolio-features li {
    color: var(--text-dim);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-features li i {
    color: var(--gold);
    font-size: 0.8rem;
}

.portfolio-testimonial {
    background: rgba(42, 90, 138, 0.2);
    border-left: 3px solid var(--gold);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.portfolio-testimonial i {
    color: var(--gold);
    margin-right: 5px;
    opacity: 0.5;
}

.portfolio-testimonial p {
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 5px;
}

.testimonial-author {
    color: var(--gold);
    font-size: 0.9rem;
}

.portfolio-footer {
    margin-top: 20px;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--blue-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-small:hover {
    background: var(--blue-accent);
    gap: 10px;
}

.no-results {
    text-align: center;
    padding: 50px;
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
}

.no-results i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.no-results h3 {
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-dim);
}

.portfolio-summary {
    padding: 60px 0;
    background: rgba(2, 5, 20, 0.5);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.summary-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s;
}

.summary-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.summary-icon i {
    font-size: 1.8rem;
    color: white;
}

.summary-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.summary-label {
    color: var(--text-dim);
}

.success-stories {
    padding: 60px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.story-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.story-stats {
    margin-bottom: 15px;
}

.story-stats .stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.2;
}

.story-stats .label {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.story-content h3 {
    margin-bottom: 10px;
}

.story-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cta-portfolio {
    padding: 60px 0;
}

.portfolio-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--gold);
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 15px;
    padding: 30px;
}

.contact-info-header {
    margin-bottom: 30px;
}

.contact-info-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: var(--text-dim);
}

.contact-details-list {
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon-large {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-dim);
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--blue-accent);
}

.contact-status-badge {
    display: inline-block;
    background: rgba(39, 201, 63, 0.2);
    color: #27c93f;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    border: 1px solid #27c93f;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(42, 90, 138, 0.3);
    border: 1px solid var(--blue-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 15px;
    padding: 30px;
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--text-dim);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(2, 5, 20, 0.8);
    border: 1px solid var(--blue-medium);
    border-radius: 8px;
    padding: 12px 15px;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--blue-accent);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.form-checkbox a {
    color: var(--gold);
    text-decoration: none;
}

.response-time-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(42, 90, 138, 0.2);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    padding: 15px;
    margin: 30px 0 0;
}

.response-time-box i {
    font-size: 2rem;
    color: var(--gold);
}

.response-time-text h4 {
    margin-bottom: 5px;
}

.response-time-text p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.guarantee-text {
    color: #27c93f;
    font-weight: 600;
}

.contact-faq-preview {
    padding: 60px 0;
    background: rgba(2, 5, 20, 0.5);
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.faq-preview-item {
    background: var(--bg-card);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s;
}

.faq-preview-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.faq-preview-item h4 {
    margin-bottom: 10px;
    color: var(--gold);
}

.faq-preview-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.faq-preview-item a {
    color: var(--blue-accent);
    text-decoration: none;
    font-size: 0.9rem;
}

/* ===== THANK YOU PAGE SPECIFIC STYLES ===== */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.thankyou-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--blue-medium);
    border-radius: 20px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(10, 26, 42, 0.5);
}

.thankyou-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 90, 138, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #27c93f, #1e8b3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
    box-shadow: 0 0 30px rgba(39, 201, 63, 0.5);
    position: relative;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thankyou-card h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.thankyou-message {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 10;
}

.response-box {
    background: rgba(10, 26, 42, 0.5);
    border: 1px solid var(--blue-medium);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.response-box i {
    font-size: 2rem;
    color: var(--gold);
}

.response-text h3 {
    margin-bottom: 5px;
    color: var(--gold);
}

.response-text p {
    color: var(--text-dim);
}

.response-time {
    color: #27c93f;
    font-weight: 600;
}

.terminal-thankyou {
    background: rgba(2, 5, 20, 0.7);
    border-radius: 10px;
    padding: 20px;
    font-family: 'Fira Code', monospace;
    margin: 30px 0;
    position: relative;
    z-index: 10;
}

.quick-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0 20px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
}

.quick-action-btn {
    background: rgba(42, 90, 138, 0.3);
    border: 1px solid var(--blue-medium);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.quick-action-btn:hover {
    background: var(--blue-accent);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.quick-action-btn i {
    color: var(--gold);
}

.countdown {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 20px;
    text-align: center;
}

.countdown-number {
    color: var(--gold);
    font-weight: 600;
}

.redirect-link {
    text-align: center;
    margin-top: 15px;
}

.redirect-link a {
    color: var(--gold);
    text-decoration: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--blue-medium);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text-light);
    font-size: 1.4rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--text-dim);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-contact a {
    color: var(--text-dim);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--blue-medium);
}

.copyright p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .services-grid,
    .pricing-grid,
    .blog-grid,
    .summary-grid,
    .stories-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-description {
        text-align: left;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid-modern,
    .choose-grid,
    .intro-box,
    .contact-grid,
    .faq-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        min-width: auto;
    }
    
    .portfolio-masonry {
        grid-template-columns: 1fr;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 0;
        transition: right 0.3s;
        border-left: 1px solid var(--gold);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .glitch-title,
    .glow-title,
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .pricing-grid,
    .blog-grid,
    .summary-grid,
    .stories-grid,
    .testimonials-grid,
    .footer-grid,
    .team-project-grid {
        grid-template-columns: 1fr;
    }
    
    .team-header-stats,
    .portfolio-header-stats,
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .thankyou-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .response-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .glitch-title,
    .glow-title,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .trusted-logos {
        gap: 20px;
    }
    
    .payment-icons {
        flex-direction: column;
        gap: 10px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}