:root {
    --primary-color: #7EB4F0;
    --secondary-color: #4399EC;
    --accent-blue: #5ba3e0;
    --light-blue: #a8d0f5;
    --dark-bg: #1e2328;
    --darker-bg: #151820;
    --card-bg: #2a3038;
    --card-light: #343d47;
    --text-light: #ffffff;
    --text-muted: #c5d0de;
    --border-color: #3d4856;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Navigation */
#mainNav {
    background: linear-gradient(135deg, rgba(21, 24, 32, 0.98) 0%, rgba(30, 35, 40, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(67, 153, 236, 0.3);
    transition: var(--transition);
    padding: 1rem 0;
    border-bottom: 2px solid rgba(126, 180, 240, 0.2);
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(67, 153, 236, 0.4);
    background: linear-gradient(135deg, rgba(21, 24, 32, 0.98) 0%, rgba(30, 35, 40, 0.98) 100%);
    border-bottom: 2px solid rgba(126, 180, 240, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white) !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(126, 180, 240, 0.6));
}

.navbar-brand svg {
    width: 40px;
    height: 40px;
}

.brand-text {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #7EB4F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.btn-call {
    background: var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    color: var(--white) !important;
}

.btn-call:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
    transform: translateY(-2px) scale(1.05) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 50%, rgba(126, 180, 240, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(67, 153, 236, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(21, 24, 32, 0.95) 0%, rgba(30, 35, 40, 0.98) 100%),
        url('https://images.unsplash.com/photo-1631545806609-7e7bf40a2b01?w=1920') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(21, 24, 32, 0.85) 0%, rgba(30, 35, 40, 0.9) 50%, rgba(67, 153, 236, 0.15) 100%);
}

.hero-logo-decoration {
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    max-width: 1000px;
    height: auto;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    filter: blur(1px);
}

.hero-logo-decoration svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(42, 149, 215, 0.3));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-buttons .btn {
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Service Cards */
.service-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, var(--card-light) 100%);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    border: 2px solid rgba(126, 180, 240, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(126, 180, 240, 0.4),
                0 0 30px rgba(126, 180, 240, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(145deg, var(--card-light) 0%, var(--card-bg) 100%);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(126, 180, 240, 0.4),
                0 0 40px rgba(126, 180, 240, 0.2);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    filter: blur(10px);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(126, 180, 240, 0.6),
                0 0 60px rgba(126, 180, 240, 0.3);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.service-card-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 10px 40px rgba(126, 180, 240, 0.5),
                0 0 60px rgba(126, 180, 240, 0.3);
}

.service-card-highlight::before {
    background: linear-gradient(90deg, var(--white), var(--light-blue));
}

.service-card-highlight h3,
.service-card-highlight p,
.service-card-highlight .service-link {
    color: var(--white);
}

.service-card-highlight:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Feature Items */
.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(126, 180, 240, 0.5),
                0 0 40px rgba(126, 180, 240, 0.3);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-content {
    flex: 1;
}

/* Stats */
.stats-container {
    background: linear-gradient(135deg, 
        rgba(126, 180, 240, 0.15) 0%, 
        rgba(67, 153, 236, 0.1) 50%,
        rgba(126, 180, 240, 0.15) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(126, 180, 240, 0.3);
    box-shadow: 0 10px 40px rgba(126, 180, 240, 0.2);
}

.stat-card {
    background: linear-gradient(145deg, 
        rgba(42, 48, 56, 0.8) 0%, 
        rgba(52, 61, 71, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(126, 180, 240, 0.3);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(126, 180, 240, 0.1) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(145deg, 
        rgba(52, 61, 71, 0.9) 0%, 
        rgba(42, 48, 56, 0.7) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(126, 180, 240, 0.4);
}

.stat-card:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.stat-card h3 {
    color: var(--white);
    text-shadow: 0 0 20px rgba(126, 180, 240, 0.6);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: 
        radial-gradient(circle at 30% 50%, rgba(126, 180, 240, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(67, 153, 236, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(126, 180, 240, 0.3);
    border-bottom: 2px solid rgba(126, 180, 240, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 180, 240, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 153, 236, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

/* Google Reviews Section */
.google-reviews-section {
    background: linear-gradient(135deg, 
        rgba(126, 180, 240, 0.08) 0%, 
        rgba(67, 153, 236, 0.05) 100%);
    border-top: 1px solid rgba(126, 180, 240, 0.15);
    border-bottom: 1px solid rgba(126, 180, 240, 0.15);
}

.google-reviews-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(126, 180, 240, 0.2);
    transition: var(--transition);
}

.google-reviews-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(126, 180, 240, 0.3);
    border-color: rgba(126, 180, 240, 0.4);
}

.google-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.google-logo-container svg {
    filter: drop-shadow(0 2px 8px rgba(66, 133, 244, 0.3));
}

.rating-display {
    padding: 0.5rem 0;
}

.stars-container i {
    color: #FBBC04;
    font-size: 1.8rem;
    margin: 0 2px;
    filter: drop-shadow(0 2px 4px rgba(251, 188, 4, 0.4));
    animation: starPulse 2s ease-in-out infinite;
}

.stars-container i:nth-child(1) { animation-delay: 0s; }
.stars-container i:nth-child(2) { animation-delay: 0.1s; }
.stars-container i:nth-child(3) { animation-delay: 0.2s; }
.stars-container i:nth-child(4) { animation-delay: 0.3s; }
.stars-container i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.score-number {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-divider {
    color: var(--text-muted);
    margin: 0 5px;
}

.score-max {
    color: var(--text-muted);
}

.review-count {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.review-count strong {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-google {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.5);
    color: white;
}

.btn-google i {
    font-size: 1.2rem;
}

/* Responsive Google Reviews */
@media (max-width: 768px) {
    .google-reviews-card {
        padding: 1.5rem;
    }
    
    .stars-container i {
        font-size: 1.5rem;
    }
    
    .rating-score {
        font-size: 2rem;
    }
    
    .google-logo-container svg {
        width: 100px;
    }
}

/* Testimonials */
.testimonial-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, var(--card-light) 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    height: 100%;
    border: 2px solid rgba(126, 180, 240, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: rgba(126, 180, 240, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(126, 180, 240, 0.3),
                0 0 40px rgba(126, 180, 240, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(145deg, var(--card-light) 0%, var(--card-bg) 100%);
}

.stars i {
    font-size: 1.2rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 5px 20px rgba(126, 180, 240, 0.6),
                0 0 30px rgba(126, 180, 240, 0.4);
}

.avatar i {
    font-size: 2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Page Header */
.page-header {
    min-height: 40vh;
    background: 
        radial-gradient(circle at 80% 50%, rgba(126, 180, 240, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(126, 180, 240, 0.3);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126, 180, 240, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

/* Service Details */
.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(126, 180, 240, 0.6),
                0 0 60px rgba(126, 180, 240, 0.4);
    position: relative;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
    animation: pulse-glow 3s infinite;
}

.service-icon-large i {
    font-size: 3rem;
    color: var(--white);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}

.service-image-placeholder {
    background: var(--card-bg);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.service-image-placeholder i {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.4;
}

.feature-check {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

.feature-check i {
    color: var(--primary-color);
}

.feature-check span {
    color: var(--text-muted);
}

/* About Page */
.about-image-placeholder,
.map-placeholder {
    background: var(--card-bg);
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.about-image-placeholder i,
.map-placeholder i {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.4;
}

/* Styles pour la carte Leaflet interactive */
#interventionMap {
    border: 2px solid rgba(126, 180, 240, 0.2);
    transition: var(--transition);
}

#interventionMap:hover {
    border-color: rgba(126, 180, 240, 0.5);
}

/* Personnalisation des popups Leaflet */
.leaflet-popup-content-wrapper {
    background-color: var(--card-bg);
    color: var(--text-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(126, 180, 240, 0.3);
}

.leaflet-popup-tip {
    background-color: var(--card-bg);
}

.leaflet-popup-content {
    margin: 10px;
}

/* Personnalisation des contrôles de zoom */
.leaflet-control-zoom a {
    background-color: var(--card-bg) !important;
    color: var(--text-color) !important;
    border: 1px solid rgba(126, 180, 240, 0.3) !important;
}

.leaflet-control-zoom a:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Attribution Leaflet */
.leaflet-control-attribution {
    background-color: rgba(30, 35, 40, 0.8) !important;
    color: #999 !important;
    font-size: 10px;
}

.leaflet-control-attribution a {
    color: var(--primary-color) !important;
}

.value-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(126, 180, 240, 0.3);
    border-color: var(--primary-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(126, 180, 240, 0.5),
                0 0 50px rgba(126, 180, 240, 0.3);
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    filter: blur(10px);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.certification-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    border: 2px solid var(--border-color);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(126, 180, 240, 0.3);
    border-color: var(--primary-color);
}

.cert-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-form .form-label {
    font-weight: 600;
    color: var(--text-light);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    background: var(--card-bg);
    color: var(--text-light);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(126, 180, 240, 0.25);
    background: var(--darker-bg);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-select option {
    background: var(--card-bg);
    color: var(--text-light);
}

.contact-info-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, var(--card-light) 100%);
    border-radius: 20px;
    padding: 2rem;
    color: var(--text-light);
    border: 2px solid rgba(126, 180, 240, 0.3);
    box-shadow: 0 10px 40px rgba(126, 180, 240, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    box-shadow: 0 0 20px rgba(126, 180, 240, 0.6);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(126, 180, 240, 0.6),
                0 0 40px rgba(126, 180, 240, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.contact-item h5 {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: var(--card-bg);
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-light);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--card-bg);
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    border-top: 2px solid rgba(126, 180, 240, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(126, 180, 240, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(67, 153, 236, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer h5 {
    position: relative;
    padding-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(126, 180, 240, 0.3);
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(126, 180, 240, 0.5);
}

.footer p {
    color: var(--text-muted);
}

.hover-link {
    transition: var(--transition);
    color: var(--text-muted) !important;
}

.hover-link:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    /* height: 50px; */
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 5px 20px rgba(67, 153, 236, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(67, 153, 236, 0.6);
}

#backToTop i {
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(126, 180, 240, 0.4),
                0 0 30px rgba(126, 180, 240, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(126, 180, 240, 0.6),
                0 0 50px rgba(126, 180, 240, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-blue) 100%);
}

.btn-outline-light {
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    color: var(--white);
    background: transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(126, 180, 240, 0.2);
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.4s;
    z-index: -1;
}

.btn-outline-light:hover::before {
    left: 0;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(126, 180, 240, 0.5),
                0 0 40px rgba(126, 180, 240, 0.3);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-danger {
    background: #dc3545;
    border: none;
    color: var(--white);
}

.btn-danger:hover {
    background: #bb2d3b;
    transform: translateY(-2px);
}

.btn-light {
    background: linear-gradient(145deg, var(--card-light) 0%, var(--card-bg) 100%);
    border: 2px solid var(--primary-color);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(126, 180, 240, 0.3);
}

.btn-light:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(126, 180, 240, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-logo-decoration {
        left: -25%;
        width: 70%;
        opacity: 0.12;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .navbar-collapse {
        background: var(--darker-bg);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        border: 1px solid var(--border-color);
    }
}

@media (max-width: 767px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .hero-logo-decoration {
        left: -35%;
        width: 85%;
        opacity: 0.1;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(21, 24, 32, 0.98) 0%, rgba(30, 35, 40, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(126, 180, 240, 0.3);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 1.5rem 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--light-blue);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
}

.cookie-buttons .btn-primary {
    box-shadow: 0 5px 15px rgba(126, 180, 240, 0.3);
}

.cookie-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(126, 180, 240, 0.4);
}

.cookie-buttons .btn-outline-light {
    border-color: var(--border-color);
    color: var(--text-light);
}

.cookie-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    color: var(--white);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-icon {
        font-size: 2.5rem;
    }
    
    .cookie-text {
        min-width: unset;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Dark Theme Adjustments */
.bg-light {
    background: linear-gradient(180deg, 
        rgba(30, 35, 40, 1) 0%, 
        rgba(42, 48, 56, 1) 50%,
        rgba(30, 35, 40, 1) 100%) !important;
    position: relative;
    z-index: 10;
}

.bg-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(126, 180, 240, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(67, 153, 236, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-dark {
    color: var(--text-light) !important;
}

.card {
    background: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-light);
}

.card-body {
    background: var(--card-bg);
}

.card-title {
    color: var(--text-light);
}

.table {
    color: var(--text-light);
    background-color: transparent;
}

.table tbody, .table tr, .table td, .table th {
    background-color: transparent !important;
}

.table-borderless td {
    color: var(--text-muted);
    background-color: transparent;
}

.alert {
    border-radius: 15px;
    border: 2px solid;
}

.alert-info {
    background: var(--card-bg);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: var(--text-light);
}

.alert-success {
    background: rgba(25, 135, 84, 0.1);
    border-color: #198754;
    color: var(--text-light);
}

hr {
    border-color: var(--border-color) !important;
    opacity: 1;
}

/* Form validation states */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
    background-color: var(--card-bg);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-color: var(--card-bg);
}

.form-check-input {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-muted);
}

/* Typography adjustments */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.display-3, .display-4, .display-5 {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.lead {
    color: var(--text-light);
}

p {
    color: var(--text-muted);
}

a {
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--light-blue);
    text-shadow: 0 0 10px rgba(126, 180, 240, 0.5);
}

/* List styles */
ul li {
    color: var(--text-muted);
}

/* Small text */
small {
    color: var(--text-muted);
}
