:root {
    --bg-color: #0A0C10;
    --primary-color: #1B1E25;
    --accent-color: #FF6F00;
    --secondary-color: #26FFF2;
    --text-color: #FFFFFF;
    --soft-accent: #2C2F38;
    --contrast-color: #F72585;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    max-width: 100px;
    height: auto;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}

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

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
    background-color: var(--soft-accent);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background-color: var(--soft-accent);
}

.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='rgba%2826, 255, 242, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 111, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(38, 255, 242, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 111, 0, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 111, 0, 0.2);
}

.hero-badge span {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .text-accent {
    color: var(--accent-color) !important;
    -webkit-text-fill-color: var(--accent-color);
}

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

.hero .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e55a00);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3);
}

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

.hero .btn-outline-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(38, 255, 242, 0.3);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.hero-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.02);
}

.hero-image-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    transform: translate(20px, 20px);
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-image-wrapper {
        padding: 1rem;
    }
    
    .hero-image-shape {
        transform: translate(10px, 10px);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
    }
    
    .hero-badge span {
        font-size: 1rem;
    }
}

/* Text Colors */
.text-accent {
    color: var(--accent-color) !important;
}

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

.text-contrast {
    color: var(--contrast-color) !important;
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e55a00);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a00, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3);
}

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

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(38, 255, 242, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, var(--contrast-color), #d01a6b);
    color: white;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #d01a6b, var(--contrast-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(247, 37, 133, 0.3);
}

/* Services Overview */
.services-overview {
    background-color: var(--primary-color);
}

.service-card {
    background-color: var(--soft-accent);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

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

.service-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon-img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Main Services */
.main-services {
    background-color: var(--bg-color);
}

.service-detail-card {
    background-color: var(--soft-accent);
    padding: 2rem;
    border-radius: 16px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-detail-icon {
    flex-shrink: 0;
    width: 200px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-detail-content {
    flex: 1;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-detail-card:hover .service-icon-img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.service-detail-content h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-content p {
    color: #b8b8b8;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--soft-accent) 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(247, 37, 133, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    border-top: 1px solid var(--soft-accent);
}

.footer h5,
.footer h6 {
    color: var(--accent-color);
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--soft-accent) 100%);
    background-image: url('img/bg.avif');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 12, 16, 0.9) 0%,
        rgba(10, 12, 16, 0.7) 50%,
        rgba(10, 12, 16, 0.9) 100%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background-color: var(--primary-color);
}

/* Form Styles */
.form-control {
    background-color: var(--soft-accent);
    border: 1px solid #444;
    color: var(--text-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: var(--soft-accent);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 111, 0, 0.25);
    color: var(--text-color);
}

.form-control::placeholder {
    color: #888;
}

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

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

/* Cards */
.card {
    background-color: var(--soft-accent);
    border: 1px solid #444;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.card-header {
    background-color: var(--primary-color);
    border-bottom: 1px solid #444;
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}

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

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .service-detail-card {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
    }
    
    .service-detail-icon {
        width: 60px;
        height: 60px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .service-card,
    .service-detail-card {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.bg-soft {
    background-color: var(--soft-accent) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-accent {
    border-color: var(--accent-color) !important;
}

.border-secondary-custom {
    border-color: var(--secondary-color) !important;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .service-card,
    .service-detail-card,
    .card {
        border: 2px solid var(--text-color);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}
/* Process Steps */
.process-step {
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: -400px;
    background-color: var(--primary-color);
    border: 1px solid var(--soft-accent);
    border-radius: 12px;
    padding: 1rem;
    min-width: 300px;
    max-width: 400px;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notification.show {
    right: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background-color: var(--soft-accent);
    color: var(--accent-color);
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid var(--contrast-color);
}

.notification-warning {
    border-left: 4px solid var(--accent-color);
}

.notification-info {
    border-left: 4px solid var(--secondary-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-top: 2px solid var(--accent-color);
    padding: 1.5rem 0;
    z-index: 9999;
    transition: bottom 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    gap: 2rem;
}

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

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

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

/* Accordion Styles */
.accordion {
    --bs-accordion-bg: var(--soft-accent);
    --bs-accordion-border-color: #444;
    --bs-accordion-border-radius: 12px;
    --bs-accordion-inner-border-radius: 8px;
    --bs-accordion-btn-color: var(--text-color);
    --bs-accordion-btn-bg: var(--soft-accent);
    --bs-accordion-btn-focus-border-color: var(--accent-color);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 111, 0, 0.25);
    --bs-accordion-body-color: var(--text-color);
    --bs-accordion-active-color: var(--accent-color);
    --bs-accordion-active-bg: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(85%) sepia(6%) saturate(206%) hue-rotate(314deg) brightness(92%) contrast(88%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(48%) sepia(96%) saturate(1056%) hue-rotate(12deg) brightness(101%) contrast(101%);
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    border: 1px solid;
}

.alert-info {
    background-color: rgba(38, 255, 242, 0.1);
    border-color: var(--secondary-color);
    color: var(--text-color);
}

.alert-warning {
    background-color: rgba(255, 111, 0, 0.1);
    border-color: var(--accent-color);
    color: var(--text-color);
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: var(--text-color);
}

.alert-danger {
    background-color: rgba(247, 37, 133, 0.1);
    border-color: var(--contrast-color);
    color: var(--text-color);
}

/* Table Styles */
.table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-color);
    --bs-table-border-color: #444;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
    --bs-table-hover-bg: rgba(255, 255, 255, 0.075);
}

.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: var(--bs-table-striped-bg);
}

.table-hover > tbody > tr:hover > td {
    background-color: var(--bs-table-hover-bg);
}

/* Badge Styles */
.badge {
    font-size: 0.875em;
    padding: 0.5em 0.75em;
    border-radius: 8px;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
    color: var(--bg-color) !important;
}

/* Office Info Styles */
.office-info .table td {
    border: none;
    padding: 0.5rem 0;
}

.office-info .table td:first-child {
    font-weight: 500;
    color: var(--text-color);
}

.office-info .table td:last-child {
    color: var(--secondary-color);
    text-align: right;
}

/* Timeline Styles */
.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 2px solid var(--bg-color);
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1.5rem;
    bottom: -1rem;
    width: 2px;
    background-color: var(--soft-accent);
}

/* Form Validation Styles */
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.6.6 3.4-3.4-.6-.6L3 5.67l-1.4-1.4-.6.6z'/%3e%3c/svg%3e");
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--contrast-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F72585'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 5.8 4.4 4.4m0-4.4L5.8 10.2'/%3e%3c/svg%3e");
}

.invalid-feedback {
    color: var(--contrast-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Ripple Effect for Buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.125em;
}

/* Pricing Card Enhancements */
.card.border-accent {
    border: 2px solid var(--accent-color) !important;
    transform: scale(1.05);
    position: relative;
    z-index: 2;
}

.card.border-accent::before {
    content: '⭐ POPULAIR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Smooth Page Transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Focus States */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 111, 0, 0.25);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a00;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
    }
    
    .notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .notification.show {
        right: 10px;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .card.border-accent {
        transform: none;
    }
    
    .card.border-accent::before {
        font-size: 0.65rem;
        padding: 0.25rem 0.75rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .accordion-button {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .cookie-consent,
    .notification,
    .skip-link {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
    }
    
    .page-header {
        background: none !important;
        color: black !important;
    }
    
    .card {
        border: 1px solid #ccc !important;
        background: white !important;
    }
    
    .text-accent,
    .text-secondary,
    .text-contrast {
        color: black !important;
    }
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Hover Effects Enhancement */
.service-card:hover,
.service-detail-card:hover,
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.footer-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Success/Error States */
.form-success {
    border: 2px solid #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}

.form-error {
    border: 2px solid var(--contrast-color);
    background-color: rgba(247, 37, 133, 0.1);
}

/* Enhanced Typography */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .service-card,
    .service-detail-card,
    .card {
        border: 2px solid var(--text-color);
    }
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .text-accent,
    .text-secondary,
    .text-contrast {
        filter: contrast(2);
    }
}

.service-detail-card .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e55a00);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-detail-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3);
}

.service-detail-card .btn-primary i {
    transition: transform 0.3s ease;
}

.service-detail-card .btn-primary:hover i {
    transform: translateX(5px);
}

.service-detail-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

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

/* Global Styles */

/* Image Section Styles */
.image-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

.image-content {
    animation: fadeInLeft 1s ease-out;
}

.image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.image-wrapper img {
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 111, 0, 0.1), rgba(38, 255, 242, 0.1));
    border-radius: 12px;
    pointer-events: none;
}

.image-section .list-unstyled li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.image-section .list-unstyled i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .image-section {
        text-align: center;
    }
    
    .image-content {
        margin-bottom: 2rem;
    }
    
    .image-section .list-unstyled {
        display: inline-block;
        text-align: left;
    }
}

/* Hero Image Section Styles */
.hero-image-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-image: url('https://via.placeholder.com/1920x1080/0A0C10/26FFF2?text=Career+Success');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 12, 16, 0.9) 0%,
        rgba(10, 12, 16, 0.7) 50%,
        rgba(10, 12, 16, 0.9) 100%);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-image-section h2 {
    animation: fadeInDown 1s ease-out;
}

.hero-image-section p {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.stat-item h3 {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
}

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

@media (max-width: 768px) {
    .hero-image-section {
        height: auto;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-image-overlay {
        padding: 3rem 0;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .hero-image-section h2 {
        font-size: 2.5rem;
    }
    
    .hero-image-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-image-section {
        min-height: 400px;
    }
    
    .hero-image-overlay {
        padding: 2rem 0;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .hero-image-section h2 {
        font-size: 2rem;
    }
}

/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

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

.scroll-animate:nth-child(2) {
    transition-delay: 0.1s;
}

.scroll-animate:nth-child(3) {
    transition-delay: 0.2s;
}

/* Results Section Styles */
.results-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--soft-accent) 100%);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 111, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(38, 255, 242, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.result-card:hover::before {
    opacity: 0.1;
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.result-card:hover .result-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.result-card .display-4 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.result-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.result-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Counter Animation */
.counter {
    opacity: 0;
    transform: translateY(20px);
    animation: countUp 1s ease-out forwards;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .result-card {
        padding: 2rem 1.5rem;
    }
    
    .result-card .display-4 {
        font-size: 3rem;
    }
    
    .result-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .result-card {
        padding: 1.5rem 1rem;
    }
    
    .result-card .display-4 {
        font-size: 2.5rem;
    }
    
    .result-icon {
        font-size: 1.75rem;
    }
}

/* Testimonial Profile Images */
.card .rounded-circle {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

@media (max-width: 576px) {
    .card .rounded-circle {
        width: 50px;
        height: 50px;
    }
}

/* Micro Note Styles */
.micro-note {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 15px 20px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.3s ease-in-out;
}

.micro-note.show {
    transform: translateY(0);
}

.micro-note-content {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.micro-note-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 4px;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.micro-note-close:hover {
    opacity: 1;
}

@media (max-width: 576px) {
    .micro-note {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}