/* XK Interactive - Dark Theme with Orange/Yellow Highlights */

/* CSS Custom Properties (Variables) */
:root {
    /* Dark Theme Colors */
    --primary-color: #FF6B35;        /* Orange */
    --secondary-color: #FFD23F;      /* Yellow */
    --dark-bg: #0D1117;              /* Very dark gray/black */
    --dark-alt-bg: #161B22;          /* Dark gray */
    --dark-card-bg: #21262D;         /* Dark card background */
    --text-primary: #F0F6FC;         /* Light text */
    --text-secondary: #8B949E;       /* Muted text */
    --border-color: #30363D;         /* Border color */
    --accent-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Orbitron', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

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

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

a:hover {
    color: var(--secondary-color);
}

/* Container */
.container {
    max-width: var(--container-max-width);
}

/* Section Padding */
.section-padding {
    padding: var(--section-padding);
}

/* Background Variants */
.bg-dark-alt {
    background-color: var(--dark-alt-bg);
}

.bg-gradient-primary {
    background: var(--accent-gradient);
    color: white;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-normal);
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-icon {
    font-size: 3rem;
    color: var(--primary-color);
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.loading-brand .brand-text {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.loading-brand .brand-accent {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.loading-spinner {
    display: flex;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}

/* Navigation */
.navbar {
    background-color: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(13, 17, 23, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary) !important;
}

.navbar-brand .brand-text {
    color: var(--text-primary);
}

.navbar-brand .brand-accent {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(255, 107, 53, 0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

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

.navbar-cta .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

/* Navigation Progress Bar */
.nav-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 1000;
    transition: width var(--transition-fast);
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, #FF7A47, #FFD84D);
}

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

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

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    border-color: white;
    color: var(--dark-bg);
    transform: translateY(-2px);
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(13, 17, 23, 0.8) 0%,
        rgba(22, 27, 34, 0.9) 50%,
        rgba(13, 17, 23, 0.8) 100%);
}

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

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .title-main {
    color: var(--text-primary);
    display: block;
}

.hero-title .title-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats .stat-item {
    text-align: center;
    padding: 1rem 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    background: rgba(255, 210, 63, 0.6);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 53, 0.4);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-link {
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.scroll-link:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.scroll-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-link i {
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Cards */
.card {
    background-color: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-secondary);
}

/* Footer Styles */
.footer {
    background: var(--dark-alt-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.brand-text {
    color: var(--text-primary);
}

.brand-accent {
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.contact-item {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.newsletter-title {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form .form-control {
    background: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control:focus {
    background: var(--dark-card-bg);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
    border: 1px solid var(--primary-color);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-legal li {
    margin: 0;
}

.footer-legal .footer-link {
    font-size: 0.9rem;
}

/* Web Design Info Section */
.web-design-info {
    background: var(--dark-alt-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.feature-item h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.stat-card {
    background: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    transition: var(--transition-fast);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Enhanced Portfolio Styles */
.portfolio-card {
    background: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(255,107,53,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 1rem 1rem 1.5rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-client {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.portfolio-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.portfolio-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
    padding-bottom: 0.5rem;
}

.portfolio-actions .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.portfolio-info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-meta .portfolio-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.portfolio-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.portfolio-results {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-value {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.result-label {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Case Study Modal Styles */
.case-study-content {
    color: var(--text-primary);
}

.case-study-section {
    background: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    height: 100%;
}

.case-study-section h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.case-study-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.result-card {
    background: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    transition: var(--transition-fast);
}

.result-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.result-card .result-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-card .result-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.tech-tags .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
}

.project-overview p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.project-overview strong {
    color: var(--text-primary);
}

/* Modal Dark Theme */
.modal-content {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    color: var(--text-primary);
}

.btn-close {
    filter: invert(1);
}

/* CTA Features */
.cta-features {
    margin-top: 2rem;
}

.cta-features i {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
    display: block;
}

.cta-features p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Clean Fancybox Gallery Styles */
.xk-clean-gallery {
    --fancybox-bg: rgba(0, 0, 0, 0.95);
    --fancybox-color: #ffffff;
}

.xk-clean-gallery .fancybox__backdrop {
    background: var(--fancybox-bg);
    backdrop-filter: blur(10px);
}

.xk-clean-gallery .fancybox__toolbar {
    background: transparent;
    padding: 1rem;
}

.xk-clean-gallery .fancybox__button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.xk-clean-gallery .fancybox__button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.xk-clean-gallery .fancybox__button--close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
}

.xk-clean-gallery .fancybox__caption {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 2rem 1rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.xk-clean-gallery .fancybox__slide {
    padding: 2rem;
}

.xk-clean-gallery .fancybox__content {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Hide unwanted elements */
.xk-clean-gallery .fancybox__thumbs,
.xk-clean-gallery .fancybox__nav,
.xk-clean-gallery .fancybox__infobar {
    display: none !important;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .xk-clean-gallery .fancybox__slide {
        padding: 1rem;
    }

    .xk-clean-gallery .fancybox__button--close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
    }
}

/* No Positions Styling */
.no-positions-card {
    background: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
}

.no-positions-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.no-positions-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.no-positions-icon i {
    font-size: 2rem;
    color: #000;
}

.no-positions-card h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.no-positions-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.future-opportunities h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.interest-tag {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.interest-tag:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .no-positions-card {
        padding: 2rem 1.5rem;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }

    .navbar-cta {
        text-align: center;
        margin-top: 1rem;
    }

    /* Footer responsive */
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-legal {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .footer-legal li {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-stats .row > div {
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .floating-elements {
        width: 200px;
        height: 200px;
    }

    .element-1 { width: 60px; height: 60px; }
    .element-2 { width: 45px; height: 45px; }
    .element-3 { width: 75px; height: 75px; }

    /* Footer mobile spacing */
    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }

    .footer-brand {
        margin-bottom: 1.5rem;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .contact-item {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 0.75rem;
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-alt-bg) 100%);
    position: relative;
}

.page-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    height: 100%;
    transition: var(--transition-normal);
    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, 107, 53, 0.1), transparent);
    transition: var(--transition-slow);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin: 0.25rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.price-range {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.125rem;
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-card-bg);
    transition: var(--transition-normal);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.portfolio-content h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.portfolio-actions .btn {
    margin: 0 0.5rem;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-category {
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* Team Cards */
.team-card {
    background: var(--dark-card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--dark-card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    background: var(--dark-alt-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.form-control:focus {
    background: var(--dark-alt-bg);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

/* Contact Info Cards */
.contact-info-card {
    background: var(--dark-card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Value Cards */
.value-card {
    background: var(--dark-card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Stat Cards */
.stat-card {
    background: var(--dark-card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Accordion */
.accordion-item {
    background: var(--dark-card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-card-bg);
    color: var(--text-primary);
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--dark-alt-bg);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    background: var(--dark-alt-bg);
    color: var(--text-secondary);
    padding: 1.5rem;
}

/* CTA Section */
.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    margin: 0.5rem;
}
