:root {
    --primary-color: #00d4ff;
    --secondary-color: #0066cc;
    --dark-bg: #0a1628;
    --darker-bg: #050d1a;
    --card-bg: #0f2140;
    --text-light: #ffffff;
    --text-muted: #a0b3c6;
    --accent-green: #00ff88;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    --gradient-dark: linear-gradient(180deg, #0a1628 0%, #050d1a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 13, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 30s linear infinite;
}

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

/* Cyber circles */
.cyber-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cyber-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.cyber-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: rotateSlow 60s linear infinite;
}

.cyber-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    border-color: rgba(0, 255, 136, 0.1);
    animation: rotateSlow 45s linear infinite reverse;
}

.cyber-circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 10%;
    border-style: dashed;
    animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero wrapper - two column layout */
.hero-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 60px;
    z-index: 1;
}

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

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: var(--primary-color);
    animation: fadeInUp 0.6s ease;
}

.badge-icon {
    font-size: 1.1rem;
}

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

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-content h1 .highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Hero features list */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* Hero visual - shield */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.shield-container {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.shield-glow {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.3));
}

/* Pulse animations for shield */
.pulse-ring {
    animation: pulseRing 3s ease-in-out infinite;
}

.pulse-ring-delay {
    animation: pulseRing 3s ease-in-out infinite 1.5s;
}

@keyframes pulseRing {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
}

.keyhole-pulse {
    animation: keyholePulse 2s ease-in-out infinite;
}

@keyframes keyholePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Floating elements around shield */
.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.floating-element svg {
    width: 20px;
    height: 20px;
}

.floating-1 {
    top: 10%;
    left: -20px;
    animation: floatElement 4s ease-in-out infinite;
}

.floating-2 {
    top: 30%;
    right: -30px;
    animation: floatElement 4s ease-in-out infinite 1s;
}

.floating-3 {
    bottom: 20%;
    left: -10px;
    animation: floatElement 4s ease-in-out infinite 2s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero stats bar */
.hero-stats-bar {
    background: rgba(15, 33, 64, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 30px 0;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.stat-icon.deadline {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.stat-icon.deadline svg {
    color: var(--accent-green);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.stat-number.highlight {
    color: var(--accent-green);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 3px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 212, 255, 0.2);
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* NIS2 Section */
.nis2-section {
    background: var(--dark-bg);
    position: relative;
}

.nis2-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nis2-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.nis2-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.nis2-highlights {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--dark-bg);
}

.nis2-image {
    position: relative;
}

.nis2-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.deadline-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-primary);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.deadline-badge .year {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.deadline-badge .text {
    font-size: 0.8rem;
}

/* Services Section */
.services-section {
    background: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--dark-bg);
    fill: none;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
}

/* Process Section */
.process-section {
    background: var(--dark-bg);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 0;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--gradient-primary);
    color: var(--dark-bg);
}

.process-step h4 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Packages Section */
.packages-section {
    background: var(--darker-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured::before {
    content: 'DOPORUČENO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.package-description {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.package-features li.included::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
}

.package-features li.excluded::before {
    content: '✗';
    color: #ff4444;
    font-weight: bold;
}

/* Additional Services */
.additional-services {
    margin-top: 60px;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.additional-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.additional-item h4 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.additional-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.additional-price {
    color: var(--primary-color);
    font-weight: bold;
    white-space: nowrap;
}

/* Team Section */
.team-section {
    background: var(--dark-bg);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.team-image {
    height: 380px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.team-avatar svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-color);
}

.packages-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.packages-note strong {
    color: var(--primary-color);
}

.team-image.has-photo {
    padding: 0;
}

.team-image.has-photo::before {
    display: none;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.team-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-contact a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.team-contact a:hover {
    color: var(--primary-color);
}

.team-contact svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Contact Section */
.contact-section {
    background: var(--darker-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--dark-bg);
}

.contact-item-text h4 {
    color: var(--text-light);
    margin-bottom: 3px;
}

.contact-item-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.contact-item-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-text a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-green);
}

/* Responsive */
@media (max-width: 1024px) {
    .nis2-content {
        grid-template-columns: 1fr;
    }
    
    .nis2-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Navigation mobile */
    .nav-container {
        padding: 12px 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    /* Hero responsive */
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 20px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 280px;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    /* Sections mobile */
    section {
        padding: 60px 0;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-timeline {
        flex-direction: column;
    }
    
    .process-step {
        flex: 1 1 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* NIS2 section */
    .nis2-content {
        grid-template-columns: 1fr;
    }
    
    .nis2-image {
        order: -1;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Contact section */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
    
    .deadline-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
    
    /* Hero mobile */
    .hero {
        padding-top: 70px;
    }
    
    .hero-wrapper {
        padding: 15px;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-content .subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .hero-visual {
        max-width: 220px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    /* NIS2 section mobile */
    .nis2-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nis2-text h3 {
        font-size: 1.3rem;
    }
    
    .nis2-image img {
        border-radius: 15px;
    }
    
    .deadline-badge {
        padding: 15px;
    }
    
    .deadline-badge .year {
        font-size: 2rem;
    }
    
    /* Services mobile */
    .service-card,
    .package-card,
    .contact-form {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Packages mobile */
    .package-card.featured {
        transform: none;
    }
    
    .package-price {
        font-size: 1.8rem;
    }
    
    .package-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    .packages-note {
        font-size: 0.8rem;
        padding: 15px;
    }
    
    /* Process mobile */
    .process-timeline {
        gap: 20px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Team mobile */
    .team-intro {
        font-size: 0.95rem;
    }
    
    .team-card {
        margin: 0;
    }
    
    .team-image {
        height: 250px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .team-info h3 {
        font-size: 1.1rem;
    }
    
    .team-contact a {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer mobile */
    .footer-content {
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Additional services mobile */
    .additional-grid {
        gap: 15px;
    }
    
    .additional-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .additional-price {
        font-size: 1rem;
    }
    
    /* Cyber circles - hide on small screens */
    .cyber-circles {
        display: none;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Server rack decoration */
.server-decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .server-decoration {
        display: none;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px;
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-text svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
