/* NEO GROUPE - Style CSS Principal */
/* Responsive 360px - 1920px+ */

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

:root {
    --primary-blue: #2563eb;
    --dark-blue: #0a1f44;
    --medium-blue: #1565C0;
    --light-blue: #60a5fa;
    --text-dark: #1e3a5f;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --accent-cyan: #67e8f9;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

/* Container responsive */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-light);
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(2);
    transform-origin: left top;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-menu {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-menu {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-chevron {
    transition: transform 0.3s ease;
}

.dropdown:hover .icon-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    min-width: 300px;
    padding-top: 12px;
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

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

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
    padding-left: 2rem;
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.lang-btn:hover, .lang-btn.active {
    background: var(--primary-blue);
    color: white;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: #f0f0f0;
}

.theme-icon {
    color: var(--text-dark);
}

.hidden {
    display: none !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    color: var(--text-dark);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.mobile-menu-content {
    padding: 2rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-item {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-menu-item:hover {
    color: var(--light-blue);
    padding-left: 1rem;
}

.mobile-dropdown-toggle {
    font-weight: 600;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.mobile-dropdown-content.active {
    display: flex;
}

.mobile-submenu-item {
    color: rgba(0,0,0,0.7);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.mobile-submenu-item:hover {
    color: var(--light-blue);
    padding-left: 1rem;
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-lang-selector {
    display: flex;
    gap: 1rem;
}

.mobile-theme-toggle {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 50%, var(--primary-blue) 100%);
    color: white;
    padding: 140px 1rem 80px;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Sections */
section {
    padding: 80px 1rem;
}

@media (min-width: 768px) {
    section {
        padding: 100px 2rem;
    }
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.4);
    z-index: 100;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-image-container {
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image-container {
    z-index: 10;
}

.service-card:hover .service-card-image {
    transform: scale(1.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.service-card a:hover {
    text-decoration: underline;
}

/* Service Detail Page */
.service-intro {
    color: #666;
}

.service-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.rating {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.2;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    color: var(--primary-blue);
}

.contact-item-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    color: #666;
}

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

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

.social-link:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-submit {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.contact-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    color: white;
    padding: 3rem 1rem 1rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-column > img {
    transition: all 0.3s ease;
}

.footer-column > img:hover {
    transform: scale(2);
    transform-origin: left center;
}

/* Dark Theme */
.theme-dark {
    background-color: var(--dark-blue);
    color: var(--text-light);
}

.theme-dark .navbar {
    background: var(--dark-blue);
}

.theme-dark .nav-link {
    color: var(--text-light);
}

.theme-dark .service-card {
    background: linear-gradient(135deg, #1e3a5f 0%, var(--dark-blue) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
}

.theme-dark .service-card h3 {
    color: var(--text-light);
}

.theme-dark .testimonial-card {
    background: linear-gradient(135deg, #1e3a5f 0%, var(--dark-blue) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.theme-dark .form-group input,
.theme-dark .form-group select,
.theme-dark .form-group textarea {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: white;
}

.theme-dark .mobile-menu-btn svg {
    color: var(--text-light);
}

.theme-dark .mobile-menu {
    background: rgba(10,31,68,0.98);
}

.theme-dark .mobile-menu-close {
    color: var(--text-light);
}

.theme-dark .mobile-menu-item {
    color: var(--text-light);
    border-bottom-color: rgba(255,255,255,0.1);
}

.theme-dark .mobile-submenu-item {
    color: rgba(255,255,255,0.8);
}

.theme-dark .mobile-menu-footer {
    border-top-color: rgba(255,255,255,0.1);
}

.theme-dark .service-intro {
    color: rgba(255,255,255,0.8);
}

.theme-dark .service-features {
    background: linear-gradient(135deg, #1e3a5f 0%, var(--dark-blue) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
}

.theme-dark .theme-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.theme-dark .theme-icon {
    color: var(--text-light);
}

.theme-dark .lang-btn {
    color: rgba(255,255,255,0.6);
}

.theme-dark .lang-btn:hover,
.theme-dark .lang-btn.active {
    background: var(--primary-blue);
    color: white;
}

/* Dark theme — sections à fond gris */
.theme-dark .bg-gray {
    background-color: #0d2137;
}

/* Dark theme — dropdown menus */
.theme-dark .dropdown-menu {
    background: #0a1f44;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.theme-dark .dropdown-item {
    color: var(--text-light);
    border-bottom-color: rgba(255,255,255,0.1);
}

.theme-dark .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: var(--accent-cyan);
}

/* Dark theme — textes secondaires gris */
.theme-dark .section-subtitle,
.theme-dark .service-card p,
.theme-dark .about-content p,
.theme-dark .stat-label,
.theme-dark .value-card p,
.theme-dark .testimonial-text,
.theme-dark .author-info p,
.theme-dark .contact-item-content p {
    color: rgba(255,255,255,0.7);
}

/* Dark theme — value cards */
.theme-dark .value-card {
    background: linear-gradient(135deg, #1e3a5f 0%, var(--dark-blue) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.theme-dark .value-card h4 {
    color: var(--text-light);
}

/* Dark theme — contact section */
.theme-dark .contact-info h3,
.theme-dark .contact-item-content h4 {
    color: var(--text-light);
}

.theme-dark .form-group label {
    color: var(--text-light);
}

.theme-dark .btn-submit {
    background: var(--primary-blue);
    color: white;
}

.theme-dark .contact-message.success {
    background: rgba(22,101,52,0.2);
    color: #86efac;
    border-color: rgba(134,239,172,0.3);
}

.theme-dark .contact-message.error {
    background: rgba(153,27,27,0.2);
    color: #fca5a5;
    border-color: rgba(252,165,165,0.3);
}

/* Dark theme — titres de section */
.theme-dark .section-title,
.theme-dark .about-content h2 {
    color: var(--text-light);
}

/* Dark theme — scrollbar */
.theme-dark::-webkit-scrollbar-track {
    background: var(--dark-blue);
}

/* Dark theme — liens service cards */
.theme-dark .service-card a {
    color: var(--accent-cyan);
}

/* Service detail page — base styles */
.btn-back {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-blue);
    color: white;
}

.subservice-link {
    text-decoration: none;
    color: inherit;
}

.subservice-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.subservice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.subservice-desc {
    color: #666;
}

.subservice-cta {
    color: var(--primary-blue);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Dark theme — service detail page */
.theme-dark .btn-back {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.theme-dark .btn-back:hover {
    background: var(--accent-cyan);
    color: var(--dark-blue);
}

.theme-dark .service-page-title {
    color: var(--text-light);
}

.theme-dark .subservice-card {
    background: linear-gradient(135deg, #1e3a5f 0%, var(--dark-blue) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.theme-dark .subservice-card h4 {
    color: var(--text-light);
}

.theme-dark .subservice-desc {
    color: rgba(255,255,255,0.7);
}

.theme-dark .subservice-cta {
    color: var(--accent-cyan);
}

.theme-dark .subservice-link {
    color: var(--text-light);
}

.theme-dark .service-highlight {
    background: linear-gradient(135deg, #1e3a5f 0%, var(--dark-blue) 100%) !important;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
}

.theme-dark .service-highlight h3,
.theme-dark .service-highlight h4 {
    color: var(--text-light);
}

.theme-dark .service-features li {
    border-bottom-color: rgba(255,255,255,0.15) !important;
}

.theme-dark .btn.btn-primary {
    background: var(--primary-blue);
    color: white;
}

/* Dark theme — service tagline */
.service-tagline {
    color: #666;
}

.theme-dark .service-tagline {
    color: rgba(255,255,255,0.7);
}

/* Dark theme — pricing cards */
.theme-dark .pricing-card {
    background: linear-gradient(135deg, #1e3a5f 0%, var(--dark-blue) 100%) !important;
    border-color: rgba(255,255,255,0.15) !important;
}

.theme-dark .pricing-card-header {
    border-bottom-color: rgba(255,255,255,0.1) !important;
}

.theme-dark .pricing-subtitle {
    color: rgba(255,255,255,0.5) !important;
}

.theme-dark .pricing-price {
    color: var(--text-light) !important;
}

.theme-dark .pricing-alt-price {
    color: rgba(255,255,255,0.5) !important;
}

.theme-dark .pricing-meta {
    color: rgba(255,255,255,0.6) !important;
}

.theme-dark .pricing-desc {
    color: rgba(255,255,255,0.7) !important;
}

.theme-dark .pricing-feature {
    color: rgba(255,255,255,0.8) !important;
}

/* Dark theme — addon cards */
.theme-dark .addon-card {
    background: rgba(255,255,255,0.08) !important;
    box-shadow: none !important;
}

.addon-price {
    color: #666;
}

.theme-dark .addon-price {
    color: rgba(255,255,255,0.6);
}

/* Dark theme — process steps */
.theme-dark .process-step {
    background: linear-gradient(135deg, #1e3a5f 0%, var(--dark-blue) 100%) !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.theme-dark .process-step h4 {
    color: var(--text-light);
}

.process-step-desc {
    color: #666;
}

.theme-dark .process-step-desc {
    color: rgba(255,255,255,0.7);
}

/* Dark theme — guarantee items */
.theme-dark .guarantee-item {
    border-bottom-color: rgba(255,255,255,0.1) !important;
}

/* Dark theme — extension badges DNS */
.theme-dark .ext-badge {
    background: rgba(255,255,255,0.1) !important;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.15);
}

/* Utility Classes */
.bg-gray {
    background-color: var(--bg-gray);
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}
