* { margin: 0; padding: 0; box-sizing: border-box; }
        
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  overflow-x: hidden;
}

nav {
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(255,255,255,0.98);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a 0%, #0c4a6e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover { color: #1e3a8a; }

/*.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}*/

.hero {
  height: 100vh;
  background: linear-gradient(135deg, #1e3a8a 0%, #0c4a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 2px, transparent 2px);
  background-size: 60px 60px;
  animation: parallaxBg 30s linear infinite;
}

@keyframes parallaxBg {
  100% { transform: translate(60px, 60px); }
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.2s ease;
}

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

.hero h1 { 
  font-size: 4rem; 
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero p { 
  font-size: 1.5rem; 
  margin-bottom: 2rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.location { 
  font-size: 1.2rem; 
  margin-bottom: 2rem; 
  opacity: 0.95;
}

.cta-btn-espace {
  //display: inline-block;
  padding: 0.5rem 1rem;
  background: #1e3a8a;
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  //box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-btn-espace:hover {
 // transform: translateY(-5px) scale(1.05);
  box-shadow: 0 5px 5px rgba(0,0,0,0.4);
}

.cta-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: white;
  color: #1e3a8a;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

section {
  padding: 6rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e3a8a;
}

.services {
  background: #f8f9fa;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30,58,138,0.1), transparent);
  transition: left 0.5s;
}

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

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(30,58,138,0.25);
}

.service-card .cta-btn {
  margin-top: 30px;
}

.service-icon { 
  font-size: 3.5rem; 
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.service-card h3 { 
  font-size: 1.5rem; 
  margin-bottom: 1rem; 
  color: #1e3a8a;
}

.service-card p { 
  color: #666; 
  line-height: 1.6; 
}

.about {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 { 
  font-size: 2.5rem; 
  margin-bottom: 1.5rem;
  color: #1e3a8a;
}

.about-text p { 
  color: #666; 
  line-height: 1.8; 
  margin-bottom: 1rem; 
  font-size: 1.1rem; 
}

.about-image {
  background: linear-gradient(135deg, #1e3a8a 0%, #0c4a6e 100%);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: 0 20px 60px rgba(30,58,138,0.3);
  transition: transform 0.3s;
}

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

.contact {
  background: linear-gradient(135deg, #1e3a8a 0%, #0c4a6e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 2px, transparent 2px);
  background-size: 50px 50px;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.contact-info h2 { 
  font-size: 2.5rem; 
  margin-bottom: 2rem; 
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-form {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.9);
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

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

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: white;
  color: #1e3a8a;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
}

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

footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 2rem;
}

footer a {
  color: #60a5fa;
  text-decoration: none;
}

/* Service Detail Page Styles */
        .service-detail {
            padding-top: 100px;
            min-height: 100vh;
        }

        .service-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #0c4a6e 100%);
            color: white;
            padding: 4rem 5%;
            text-align: center;
        }

        .service-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-header .icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .service-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 5%;
        }

        .service-description {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }

        .service-description h2 {
            color: #1e3a8a;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .service-description p {
            color: #666;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-item {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #1e3a8a;
        }

        .feature-item h3 {
            color: #1e3a8a;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .feature-item p {
            color: #666;
            line-height: 1.6;
        }

        .pricing-section {
            background: #f8f9fa;
            padding: 4rem 5%;
            margin-top: 3rem;
        }

        .pricing-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .pricing-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30,58,138,0.2);
        }

        .pricing-card.featured {
            border: 3px solid #1e3a8a;
            transform: scale(1.05);
        }

        .pricing-card h3 {
            color: #1e3a8a;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin: 1.5rem 0;
        }

        .price-detail {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .pricing-features {
            text-align: left;
            margin: 2rem 0;
        }

        .pricing-features li {
            color: #666;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #1e3a8a;
            font-weight: 700;
        }

        .back-btn {
            display: inline-block;
            margin: 2rem 0;
            padding: 1rem 2rem;
            background: #1e3a8a;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .back-btn:hover {
            background: #0c4a6e;
            transform: translateX(-5px);
        }

@media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            .about-content, .contact-content { grid-template-columns: 1fr; }
            .service-header h1 { font-size: 2rem; }
            .pricing-grid { grid-template-columns: 1fr; }
            .pricing-card.featured { transform: scale(1); }
        }