/* ===================================
   Network Consulting EU - Modern Design
   iTodo-Inspired Theme with Darker Blue
   =================================== */

/* CSS Variables */
:root {
    --primary: #1e3a5f;
    --primary-light: #2d5a8a;
    --primary-dark: #0f2744;
    --secondary: #ff6b35;
    --accent: #17a2b8;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --text-light: #f8f9fa;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.15s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    color: var(--gray-900) !important;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand img {
    height: 40px;
}

.navbar-brand:hover {
    color: var(--primary) !important;
}

.nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Language Switch Button */
.nav-link.lang-switch {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.4rem 1.25rem !important;
    margin-left: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-link.lang-switch::after {
    display: none;
}

.nav-link.lang-switch:hover {
    background: var(--primary-dark);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231e3a5f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1.5rem;
        border-radius: var(--border-radius-lg);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: var(--border-radius);
    }

    .nav-link:hover {
        background: var(--gray-100);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.lang-switch {
        display: inline-block;
        width: auto;
        margin: 1rem 0 0 0;
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ===================================
   Hero Slider Section
   =================================== */
.hero-slider {
    position: relative;
}

.hero-slider .carousel {
    background: var(--primary-dark);
}

.hero-slide {
    padding: 10rem 0 6rem;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../assets/placeholder_carousel.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay for readability */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 39, 68, 0.75);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

/* White text for slider */
.hero-slide h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-slide .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-slide p {
    color: rgba(255, 255, 255, 0.9);
}

.hero-slide .btn-primary {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.hero-slide .btn-primary:hover {
    background: var(--gray-100);
    border-color: var(--gray-100);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Carousel Indicators */
.hero-slider .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Carousel Navigation Arrows */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider .carousel-control-prev {
    left: 30px;
}

.hero-slider .carousel-control-next {
    right: 30px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Slide Content Animation */
.hero-slider .carousel-item {
    transition: transform 0.8s ease-in-out;
}

.hero-slider .hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-slider .carousel-item.active .hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .hero-slider .carousel-control-prev {
        left: 15px;
    }

    .hero-slider .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        padding: 7rem 0 5rem;
        min-height: 500px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }
}

/* ===================================
   Hero Section (Single, non-slider)
   =================================== */
.hero {
    background-image: url('../assets/placeholder_carousel.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 39, 68, 0.75);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero h1,
.hero h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
}

.hero .btn-primary {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.hero .btn-primary:hover {
    background: var(--gray-100);
    border-color: var(--gray-100);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Subtitle/Tag */
.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

/* ===================================
   Sections
   =================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Alternating Backgrounds */
.section-alt {
    background: var(--gray-50);
}

.section-gray {
    background: var(--gray-100);
}

.section-dark {
    background: var(--primary);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Cards
   =================================== */
.card {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    border-color: var(--primary);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-medium);
}

.service-card:hover .icon {
    transform: scale(1.1);
}

.service-card .icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.service-card h4 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Feature Cards with border accent */
.feature-card {
    position: relative;
    padding: 2rem;
    border-left: 4px solid var(--primary);
}

.feature-card .icon {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h4 {
    color: var(--primary);
}

/* ===================================
   Partners Section
   =================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

@media (max-width: 991.98px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

.partner-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.partner-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.partner-item img {
    max-height: 50px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-medium);
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-item p {
    margin: 1rem 0 0;
    font-weight: 600;
    color: var(--gray-700);
}

/* ===================================
   Enterprise Card (Services Page)
   =================================== */
.enterprise-card {
    position: relative;
    min-height: 350px;
    border-radius: var(--border-radius-lg);
}

.enterprise-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px);
    transform: scale(1.02);
}

.enterprise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(15, 39, 68, 0.9) 100%);
}

.enterprise-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.enterprise-content h3 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.enterprise-content p {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.enterprise-content svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ===================================
   Security Card (Services Page)
   =================================== */
.security-card {
    position: relative;
    min-height: 350px;
    border-radius: var(--border-radius-lg);
}

.security-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px);
    transform: scale(1.02);
}

.security-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(15, 15, 15, 0.9) 100%);
}

.security-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.security-content h3 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.security-content p {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.security-content svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ===================================
   Why Icon (Partners Page)
   =================================== */
.why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.why-icon svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background-image: url('../assets/placeholder_carousel.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 39, 68, 0.8);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section .btn-primary {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
    border-color: var(--gray-100);
}

/* ===================================
   Blog Post Styles
   =================================== */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post h1 {
    color: var(--black);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.blog-post-meta a {
    color: var(--medium-blue);
    text-decoration: none;
}

.blog-post-meta a:hover {
    text-decoration: underline;
}

.blog-post img {
    margin: 2rem 0;
}

.blog-post h2 {
    color: var(--black);
    font-size: 2rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.blog-post h3 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post p {
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post ul,
.blog-post ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.blog-post li {
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.blog-post blockquote {
    background: var(--cream);
    border-left: 4px solid var(--medium-blue);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.blog-post blockquote p {
    color: var(--black);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.blog-post blockquote footer {
    color: var(--gray-600);
    font-size: 0.95rem;
    font-style: normal;
    margin-top: 0.5rem;
}

.blog-post blockquote cite {
    font-style: normal;
}

/* ===================================
   Footer
   =================================== */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1.5rem;
        margin-top: 3rem;
    }

    section {
        padding: 2.5rem 0;
    }

    section:last-of-type {
        margin-bottom: 7rem;
    }

    .hero {
        padding: 3rem 0 !important;
    }

    main {
        padding-bottom: 0;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .text-center .btn {
        display: block;
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .text-center {
        margin-bottom: 4rem;
        padding-bottom: 2rem;
    }

    section:last-of-type .text-center {
        margin-bottom: 5rem;
        padding-bottom: 3rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .card-body {
        padding: 1.5rem !important;
    }

    .note-box {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    p.lead {
        font-size: 1.1rem;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-brand span {
    font-weight: 700;
    font-size: 1.1rem;
}

footer h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

footer ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-medium);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* ===================================
   Forms
   =================================== */
.form-control {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-fast);
    color: var(--text-dark);
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
    color: var(--text-dark);
}

.form-control::placeholder {
    color: var(--gray-500);
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   Service List Styling
   =================================== */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

/* ===================================
   Note Box
   =================================== */
.note-box {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.note-box p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.note-box strong {
    color: var(--gray-900);
}

/* ===================================
   Page Content Animation
   =================================== */
.page-content {
    animation: fadeIn 0.4s ease-out;
}

/* ===================================
   Contact Info Cards
   =================================== */
.contact-info {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.contact-info h3 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

/* ===================================
   Blog Cards
   =================================== */
.blog-card .card-footer {
    background: transparent;
    border-top: 1px solid var(--gray-200);
    padding: 1rem 2rem;
}

.blog-card .date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===================================
   Stats Section (for future use)
   =================================== */
.stats-section {
    background: var(--primary);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
}

/* ===================================
   Keep Language Selection Page Styles
   (These are inline in index.html)
   =================================== */

/* ===================================
   Breadcrumbs
   =================================== */
.breadcrumb-container {
    padding: 1rem 0;
    background: var(--gray-100);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--gray-500);
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* ===================================
   Regulatory Footer
   =================================== */
.regulatory-footer {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 0;
    text-align: center;
}

.regulatory-footer h3 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.regulatory-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.regulatory-logo-item {
    display: inline-block;
    transition: all var(--transition-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.regulatory-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.regulatory-footer .regulatory-logo-item img {
    height: 40px;
    width: auto;
    max-width: 160px;
    display: block;
}

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.25rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    min-width: 250px;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: var(--white);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 50px;
}

.cookie-btn-accept {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.cookie-btn-reject {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cookie-btn-reject:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.98px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .regulatory-logo-item img {
        max-height: 30px;
    }
}

