@charset "utf-8";

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #4a90e2;
  background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), url('/images/background.jpg') fixed;
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header unifié avec téléphone et navigation */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  z-index: 1000;
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.header-fixed .container {
  position: relative;
}

.header-fixed.visible {
  transform: translateY(0);
}

/* Header top avec téléphone et réseaux sociaux */
.header-top-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  padding: 5px 0;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.phone-number:hover {
  color: #357abd;
}

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

.social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Navigation */
.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 0rem 0.5rem 0rem;
  margin-left: 120px;
}

.logo-section {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.nav-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4a90e2;
  letter-spacing: -0.5px;
}

.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 1.5rem;
  position: relative;
}

.nav-menu a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu a:hover {
  background: #4a90e2;
  color: white;
  transform: translateY(-2px);
}

/* Menu déroulant Services */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 15px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #4a90e2;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background: #f8fbff;
  color: #4a90e2;
  border-left-color: #4a90e2;
  transform: translateX(5px);
}

.dropdown-arrow {
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #4a90e2;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(124, 102, 179, 0.9)), url('/images/background-hero.jpg');
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(124, 102, 179, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(74, 144, 226, 0.3) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.3; }
  100% { opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.1rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-content .subtitle {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  color: #01ffff;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.hero-btn:hover {
  background: white;
  color: #4a90e2;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* About Section */
.about {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.8);
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: translateY(-10px);
}

.about-text h2 {
  font-size: 3rem;
  color: #4a90e2;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.about-text p {
  margin-bottom: 1.8rem;
  color: #4a90e2;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}

/* Consultations Section */
.consultations {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.8);
}

.consultations-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  align-items: center;
}

.consultations-image {
  position: relative;
}

.consultations-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.consultations-image:hover img {
  transform: translateY(-10px);
}

.consultations-text h2 {
  font-size: 3rem;
  color: #4a90e2;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.consultations-text p {
  margin-bottom: 1.8rem;
  color: #4a90e2;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
}

/* Services Section */
.services {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.8);
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title h2 {
  font-size: 3.5rem;
  color: #4a90e2;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title p {
  font-size: 1.3rem;
  color: #4a90e2;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: 450px 1fr;
  min-height: 600px;
  align-items: stretch;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

/* Alternance des images */
.service-card:nth-child(even) {
  grid-template-columns: 1fr 450px;
}

.service-card:nth-child(even) .service-content {
  order: 1;
}

.service-card:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gestion responsive des images */
@media (min-width: 1001px) {
  .service-livret .service-image {
    background-image: url('/images/livret-p.jpg');
  }
  
  .service-acceptation .service-image {
    background-image: url('/images/handicap-p.jpg');
  }
  
  .service-deuil .service-image {
    background-image: url('/images/deuil-p.jpg');
  }
  
  .service-ateliers .service-image {
    background-image: url('/images/ateliers-p.jpg');
  }

  .service-restitution .service-image {
    background-image: url('/images/restitution-p.jpg');
  }

  .service-mediation .service-image {
    background-image: url('/images/mediation-p.jpg');
  }
}

@media (max-width: 1000px) {
  .service-livret .service-image {
    background-image: url('/images/livret.jpg');
  }
  
  .service-acceptation .service-image {
    background-image: url('/images/handicap.jpg');
  }
  
  .service-deuil .service-image {
    background-image: url('/images/deuil.jpg');
  }
  
  .service-ateliers .service-image {
    background-image: url('/images/ateliers.jpg');
  }

  .service-restitution .service-image {
    background-image: url('/images/restitution.jpg');
  }

  .service-mediation .service-image {
    background-image: url('/images/mediation.jpg');
  }

  .consultations-image img {
    content: url('/images/bureau2.jpg');
  }
}

.service-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(124, 102, 179, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-image::before {
  opacity: 1;
}

.service-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-title {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

.service-description {
  color: #4a90e2;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: justify;
}

.service-details {
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  padding: 2.5rem;
  border-radius: 20px;
  margin: 2rem 0;
  border-left: 4px solid #4a90e2;
  text-align: justify;
}

.service-details h4 {
  color: #4a90e2;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.service-details ul {
  color: #4a90e2;
  line-height: 1.8;
  padding-left: 1.5rem;
}

.service-details li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.service-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.service-pricing.compact {
  justify-content: flex-start;
}

.price-card {
  background: #ffffff;
  border: 2px solid #f0f4f8;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  width: 220px;
  margin: 0 auto;
}

.price-card-compact {
  width: 220px;
  margin: 0 auto;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.price-card:hover {
  border-color: #4a90e2;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
}

.price-label {
  color: #4a90e2;
  font-size: 1rem;
  margin-bottom: auto;
  line-height: 1.4;
  font-weight: 500;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-value {
  font-weight: 700;
  color: #4a90e2;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.price-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.service-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.btn-primary {
  padding: 18px 30px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #357abd, #2c5282);
  transition: left 0.3s ease;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
}

.btn-primary span {
  position: relative;
  z-index: 2;
}

.btn-secondary {
  padding: 18px 30px;
  background: transparent;
  color: #4a90e2;
  text-decoration: none;
  border: 2px solid #4a90e2;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #4a90e2;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(74, 144, 226, 0.3);
}

/* Liens utiles Section */
.liens-utiles {
  padding: 80px 0;
  background: rgba(248, 251, 255, 0.9);
}

.liens-utiles .section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.lien-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.lien-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lien-card a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.lien-card a:hover {
  color: #357abd;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, #4a90e2, #7c66b3);
  color: white;
}

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

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 25px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-map {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 25px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  color: white;
  font-weight: 600;
}

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

.info-item i {
  color: #01ffff;
  font-size: 1.3rem;
  min-width: 25px;
}

.info-item span {
  font-size: 1.1rem;
  opacity: 0.95;
}

.map-container {
  border-radius: 25px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  opacity: 0.95;
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  color: #4a90e2;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.btn-submit {
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #4a90e2;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-submit:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.erreurs {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 107, 107, 0.3);
  backdrop-filter: blur(10px);
}

.succes {
  background: rgba(81, 207, 102, 0.15);
  color: #51cf66;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border: 1px solid rgba(81, 207, 102, 0.3);
  backdrop-filter: blur(10px);
}

/* Footer */
footer {
  background: #4a90e2;
  color: white;
  text-align: center;
  padding: 3rem 0;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .service-card {
    grid-template-columns: 400px 1fr;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 1fr 400px;
  }
}

@media (max-width: 1000px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
    margin-left: 0;
    position: relative;
  }

  .logo-section {
    position: relative;
    left: 0;
    top: auto;
    transform: none;
  }

  .nav-logo-img {
    width: 55px;
    height: 55px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 0.8rem 0;
    width: 100%;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    width: 100%;
    justify-content: space-between;
  }

  /* Menu déroulant mobile */
  .dropdown-content {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    margin-top: 0;
    transition: all 0.3s ease;
  }

  .dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    margin-top: 0.5rem;
  }

  .dropdown-content a {
    padding: 0.6rem 1rem 0.6rem 2rem;
    font-size: 1rem;
    border-left: none;
    background: rgba(74, 144, 226, 0.05);
    margin: 0.2rem 0;
    border-radius: 10px;
  }

  .dropdown-content a:hover {
    transform: none;
    background: rgba(74, 144, 226, 0.15);
  }

  .service-card {
    grid-template-columns: 1fr;
    grid-template-rows: 400px 1fr;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-rows: 400px 1fr;
  }

  .service-card:nth-child(even) .service-content {
    order: 2;
  }

  .service-card:nth-child(even) .service-image {
    order: 1;
  }

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

  .consultations-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    width: 70%;
    margin: 0 auto;
  }

  .about-image img {
    height: 400px;
  }

  .consultations-image {
    width: 70%;
    margin: 0 auto;
  }

  .consultations-image img {
    height: 400px;
  }

  .header-top-content {
    gap: 1.5rem;
    padding: 5px 0;
  }

  .phone-number {
    font-size: 1rem;
  }

  .social-links img {
    width: 28px;
    height: 28px;
  }

  .nav-container {
    padding: 0.3rem 0;
  }

  .nav-logo {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-content .subtitle {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .service-content {
    padding: 2.5rem;
  }

  .service-title {
    font-size: 2rem;
  }

  .service-card {
    grid-template-rows: 300px 1fr;
  }

  .service-pricing {
    grid-template-columns: 1fr;
  }

  .service-actions {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .consultations-text h2 {
    font-size: 2.2rem;
  }

  .contact-form,
  .contact-info {
    padding: 2rem;
  }

  .hero-btn {
    bottom: 30px;
    padding: 5px 30px;
    font-size: 1rem;
    white-space: nowrap;
    min-width: auto;
  }
}

@media (max-width: 700px) {
  .about-image {
    width: 100%;
    margin: 0;
  }

  .consultations-image {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-logo-img {
    width: 45px;
    height: 45px;
  }

  .nav-logo {
    font-size: 1rem;
  }

  .hamburger {
    right: 15px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content .subtitle {
    font-size: 1.4rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .service-content {
    padding: 2rem;
  }

  .service-title {
    font-size: 1.8rem;
  }

  .service-details {
    padding: 0 0.3rem;
  }

  .service-details ul {
    padding-left: 0.5rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .consultations-text h2 {
    font-size: 1.8rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }

  .hero-btn {
    font-size: 0.9rem;
    padding: 5px 25px;
    white-space: nowrap;
  }

  .header-top-content {
    gap: 1rem;
    padding: 5px 0;
  }

  .phone-number {
    font-size: 0.95rem;
  }

  .social-links img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 360px) {
  .hero-btn {
    font-size: 0.85rem;
    padding: 5px 20px;
    white-space: nowrap;
  }

  .nav-menu {
    padding: 60px 20px 20px;
  }

  .header-top-content {
    gap: 0.8rem;
  }

  .phone-number {
    font-size: 0.9rem;
  }

  .social-links img {
    width: 22px;
    height: 22px;
  }

  .social-links {
    gap: 0.8rem;
  }
}

@media (max-width: 320px) {
  .nav-logo-img {
    width: 40px;
    height: 40px;
  }

  .nav-logo {
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .hero-btn {
    font-size: 0.8rem;
    padding: 5px 15px;
  }

  .header-top-content {
    gap: 0.6rem;
  }

  .phone-number {
    font-size: 0.85rem;
  }

  .phone-number i {
    font-size: 0.9rem;
  }

  .social-links img {
    width: 20px;
    height: 20px;
  }

  .social-links {
    gap: 0.6rem;
  }
}