/* Base */
:root {
  --bg: #f7fafc;
  --text: #0f2942;
  --muted: #5f7d99;
  --primary: #0a67b2;
  --accent: #ff8a3d;
  --card: #ffffff;
  --ring: rgba(10, 103, 178, 0.25);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #eef2f7;
  transition: all 0.3s ease;
}

.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 12px 0; 
  transition: padding 0.3s ease;
}

@media (max-width: 768px) {
  .nav {
    padding: 10px 0;
  }
}

.brand img { 
  height: 60px; 
  display: block; 
  transition: height 0.3s ease;
  width: auto;
}

@media (max-width: 768px) {
  .brand img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .brand img {
    height: 45px;
  }
}

.menu { 
  display: flex; 
  gap: 24px; 
}

@media (max-width: 760px) {
  .menu {
    gap: 0;
  }
}

.menu a { 
  color: var(--text); 
  text-decoration: none; 
  font-weight: 600; 
  opacity: 0.8; 
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

.menu a:hover { 
  opacity: 1; 
  color: var(--primary); 
  background: rgba(10, 103, 178, 0.1);
}

.actions { 
  display: flex; 
  gap: 10px; 
}

.menu-toggle { 
  display: none; 
  background: transparent; 
  border: 0; 
  font-size: 28px; 
  line-height: 1; 
  cursor: pointer; 
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(10, 103, 178, 0.1);
}

.btn { 
  border: 0; 
  padding: 12px 18px; 
  border-radius: 10px; 
  font-weight: 700; 
  cursor: pointer; 
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #084a7a; transform: translateY(-2px); }
.btn-light { background: #e8f1f9; color: var(--primary); }
.btn-light:hover { background: #d1e5f7; transform: translateY(-2px); }
.btn-accent { 
  background: var(--accent); 
  color: #fff; 
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 138, 61, 0.3);
}
.btn-accent:hover { 
  background: #e67e22; 
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 138, 61, 0.4);
}
.btn.full { width: 100%; }

/* Sections */
.section { 
  padding: 72px 0; 
  position: relative; 
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
}

.two-col { 
  display: grid; 
  grid-template-columns: 1.2fr 0.8fr; 
  gap: 40px; 
  align-items: center; 
}

.two-col.reverse { 
  grid-template-columns: 0.9fr 1.1fr; 
}

@media (max-width: 1024px) {
  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.two-col .text h2 { 
  font-size: 36px; 
  line-height: 1.2; 
  margin: 0 0 12px; 
}

@media (max-width: 768px) {
  .two-col .text h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .two-col .text h2 {
    font-size: 24px;
  }
}

.two-col .text p { 
  color: var(--muted); 
  font-size: 18px; 
}

@media (max-width: 768px) {
  .two-col .text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .two-col .text p {
    font-size: 14px;
  }
}

.two-col .media img { 
  width: 100%; 
  height: auto; 
  display: block; 
}

/* Hero */
.hero { 
  padding-top: 10px; 
  overflow: hidden; 
  background: url('images/bg-accueil.png') ;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
}

.hero-main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 20px 0 40px 0;
  width: 100%;
  min-height: calc(100vh - 120px);
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-main-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 0 60px 0;
    min-height: calc(100vh - 100px);
  }
}

@media (min-width: 1024px) {
  .hero-main-content {
    gap: 60px;
    padding: 60px 0 80px 0;
    min-height: calc(100vh - 80px);
  }
}

.hero-text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-text-section {
    text-align: left;
    max-width: 60%;
    flex: 1.2;
  }
}

@media (min-width: 1024px) {
  .hero-text-section {
    max-width: 65%;
    flex: 1.5;
  }
}

.hero-title {
  font-size: 28px;
  color: #0A3F65;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 36px;
    margin: 0 0 24px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 42px;
    margin: 0 0 32px;
  }
}

.hero-description {
  color: #0A3F65;
  letter-spacing: 0.025em;
  font-size: 16px;
  margin: 0 0 16px;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 18px;
    margin: 0 0 18px;
  }
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 20px;
    margin: 0 0 20px;
  }
}

.hero-cta {
  margin-top: 32px;
}

.hero-carousel-section {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

@media (min-width: 768px) {
  .hero-carousel-section {
    max-width: 450px;
    margin: 0;
    flex: 0.8;
  }
}

@media (min-width: 1024px) {
  .hero-carousel-section {
    max-width: 500px;
    flex: 1;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .carousel-container {
    padding: 20px;
  }
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
}

@media (min-width: 768px) {
  .carousel-slides {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .carousel-slides {
    height: 450px;
  }
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(10, 63, 101, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-dot.active {
  background: #0A3F65;
  border-color: #4A6985;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: #4A6985;
  transform: scale(1.1);
}

/* Subscription Section */
.subscription-section {
  position: relative;
  background: linear-gradient(to bottom, #ff914d, #fed7aa, transparent);
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .subscription-section {
    background: linear-gradient(to right, #ff914d, #fed7aa, transparent);
    margin-top: 60px;
  }
}

.subscription-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #ff914d, #fed7aa, transparent);
  opacity: 0.85;
}

@media (min-width: 768px) {
  .subscription-section::before {
    background: linear-gradient(to right, #ff914d, #fed7aa, transparent);
  }
}

.subscription-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 30px;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .subscription-content {
    padding: 50px 40px;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .subscription-content {
    grid-template-columns: 1fr 1fr;
    padding: 60px 50px;
    gap: 50px;
  }
}

.subscription-text {
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subscription-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px;
  color: black;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .subscription-title {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .subscription-title {
    font-size: 32px;
    margin: 0 0 24px;
  }
}

@media (min-width: 1024px) {
  .subscription-title {
    font-size: 36px;
    margin: 0 0 28px;
  }
}

.subscription-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  font-size: 16px;
  color: black;
}

@media (min-width: 640px) {
  .subscription-list {
    font-size: 18px;
    gap: 14px;
  }
}

@media (min-width: 768px) {
  .subscription-list {
    font-size: 20px;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .subscription-list {
    font-size: 22px;
    gap: 18px;
  }
}

.subscription-list li {
  line-height: 1.6;
}

.subscription-link {
  border-radius: 6px;
  color: white;
  font-size: inherit;
  text-decoration: none;
  background: #0A3F65;
  padding: 2px 8px;
  margin: 0 4px;
  transition: all 0.3s;
}

.subscription-link:hover {
  background: #4A6985;
}

.subscription-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .subscription-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.subscription-image img {
  width: 80vw;
  height: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .subscription-image img {
    width: 70vw;
  }
}

@media (min-width: 768px) {
  .subscription-image img {
    width: 60vw;
  }
}

@media (min-width: 1024px) {
  .subscription-image img {
    width: 50vw;
  }
}

/* About Section */
.about-section {
  background: linear-gradient(to bottom, #0A3F65, #4A6985, transparent);
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .about-section {
    background: linear-gradient(to left, #0A3F65, #4A6985, transparent);
    margin-top: 60px;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 30px;
}

@media (min-width: 768px) {
  .about-content {
    padding: 50px 40px;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    padding: 60px 50px;
    gap: 50px;
  }
}

.about-text {
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  order: 1;
}

@media (min-width: 1024px) {
  .about-text {
    order: 2;
  }
}

.about-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px;
  color: white;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .about-title {
    font-size: 32px;
    margin: 0 0 24px;
  }
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 36px;
    margin: 0 0 28px;
  }
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
  text-align: center;
  font-size: 16px;
}

@media (min-width: 640px) {
  .about-list {
    font-size: 18px;
    gap: 14px;
  }
}

@media (min-width: 768px) {
  .about-list {
    font-size: 20px;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .about-list {
    font-size: 22px;
    gap: 18px;
  }
}

.about-list li {
  line-height: 1.6;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  order: 2;
}

@media (min-width: 1024px) {
  .about-image {
    order: 1;
  }
}

.about-image img {
  width: 80vw;
  max-width: 100%;
  height: 80vh;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .about-image img {
    width: 50vw;
    height: 60vh;
  }
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  border-radius: 50%;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse-size 3s infinite;
}

.whatsapp-button:hover {
  background: #128c7e;
  transform: scale(1.1);
}

.whatsapp-icon {
  color: white;
  width: 32px;
  height: 32px;
}

@keyframes pulse-size {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.hero-bg { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  opacity: 0.15; 
  z-index: -1; 
}

/* Offers */
.offers { background: #fff; }
.list-check { list-style: none; padding: 0; margin: 18px 0 24px; }
.list-check li { position: relative; padding-left: 28px; margin: 8px 0; }
.list-check li::before { content: "✔"; position: absolute; left: 0; color: var(--accent); }

/* Subscription */
.subscription .gradient-mask { position: relative; }
.subscription .gradient-mask::after {
  content: "";
  position: absolute; inset: 0 40% 0 0;
  background: linear-gradient(90deg, rgba(255,168,108,0.65), rgba(255,168,108,0));
  pointer-events: none;
}

/* About */
.about { background: linear-gradient(135deg, #eaf3fb, #d8e8f7); }
.about .text.dark { background: linear-gradient(135deg, #154062, #0a2a44); color: #fff; padding: 32px; border-radius: 16px; }
.about .text.dark p { color: #d7e6f5; }

/* Contact */
.newsletter-map-container { 
  display: flex; 
  justify-content: center; 
  max-width: 800px; 
  flex-direction: column; 
  gap: 32px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .newsletter-map-container {
    max-width: 900px;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .newsletter-map-container { 
    max-width: 1000px;
    gap: 60px;
  }
}

.newsletter-card { 
  border: 1px solid #e5e7eb; 
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06); 
  max-width: 400px; 
  background: #0A3F65; 
  border-radius: 8px; 
  margin: 32px 0;
}

@media (min-width: 640px) {
  .newsletter-card { 
    border-radius: 12px; 
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 1024px) {
  .newsletter-card { 
    margin: 0;
  }
}

.newsletter-header { 
  position: relative; 
  border-bottom: 1px solid #d1d5db; 
  padding: 32px 16px; 
}

@media (min-width: 640px) {
  .newsletter-header { 
    padding: 32px; 
  }
}

.newsletter-header h3 { 
  margin: 0 0 4px; 
  text-align: center; 
  font-size: 20px; 
  font-weight: 500; 
}

.newsletter-header span { 
  margin-right: 16px; 
  text-transform: uppercase; 
  color: white; 
}

.form-inputs { 
  padding: 16px; 
}

@media (min-width: 640px) {
  .form-inputs { 
    padding: 32px; 
  }
}

.form-inputs input { 
  margin-top: 16px; 
  width: 100%; 
  resize: vertical; 
  overflow: auto; 
  border-radius: 8px; 
  border: 1px solid #d1d5db; 
  padding: 16px; 
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); 
  font-size: 16px;
  outline: none;
  background: white;
}

.form-inputs input:focus { 
  border-color: #3b82f6; 
  outline: none; 
}

.form-inputs input:hover { 
  border-color: #3b82f6; 
}

.newsletter-submit { 
  width: 100%; 
  margin-top: 12px; 
  border-radius: 8px; 
  border: 1px solid white; 
  padding: 12px; 
  text-align: center; 
  font-weight: 500; 
  color: white; 
  outline: none; 
  transition: all 0.2s; 
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}

.newsletter-submit:hover { 
  color: white; 
  background: rgba(255, 255, 255, 0.1);
}

.map-container { 
  height: 300px; 
  border-radius: 12px; 
  width: 100%; 
  margin: 0 auto; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .map-container {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .map-container { 
    height: 400px; 
  }
}

.google-map { 
  height: 100%; 
  border-radius: 12px; 
  width: 100%; 
  border: 0;
}

/* Footer */
.footer-wrapper { 
  text-align: center; 
  background: #f3f4f6; 
  color: #4b5563; 
}

.site-footer { 
  background: #1f2937; 
}

.footer-content { 
  max-width: 1280px; 
  padding: 20px 16px; 
  margin: 0 auto; 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width: 640px) {
  .footer-content { 
    padding: 20px 24px; 
    gap: 25px;
  }
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
}

@media (min-width: 1024px) {
  .footer-content { 
    padding: 20px 32px; 
    gap: 40px;
  }
}

.footer-logo { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  order: 1;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

@media (max-width: 480px) {
  .footer-logo img {
    height: 35px;
  }
}

.social-links { 
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  order: 2;
}

@media (min-width: 768px) {
  .social-links { 
    order: 3; 
    gap: 24px;
  }
}

.social-link { 
  color: white; 
  text-decoration: none; 
  transition: all 0.3s ease;
}

.social-link:hover { 
  color: #d1d5db; 
  transform: scale(1.1);
}

.social-icon { 
  height: 28px; 
  width: 28px; 
}

@media (min-width: 768px) {
  .social-icon {
    height: 32px;
    width: 32px;
  }
}

.sr-only { 
  position: absolute; 
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0, 0, 0, 0); 
  white-space: nowrap; 
  border: 0; 
}

.copyright-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  order: 3;
  text-align: center;
}

@media (min-width: 768px) {
  .copyright-info {
    order: 2;
    text-align: left;
    gap: 4px;
  }
  
  .contact-info {
    display: inline;
  }
  
  .contact-info:first-of-type::after {
    content: " • ";
    color: #d1d5db;
    margin: 0 8px;
  }
}

.copyright { 
  font-size: 14px; 
  color: #d1d5db; 
  margin: 0;
}

.contact-info {
  margin: 0;
}

.phone-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Global Responsive Improvements */
@media (max-width: 1200px) {
  .container {
    width: min(100%, 92%);
    padding: 0 20px;
  }
  
  .hero-container {
    padding: 0 20px;
  }
}

/* Tablet and smaller screens */
@media (max-width: 1024px) {
  .two-col { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  
  .two-col.reverse { 
    grid-template-columns: 1fr; 
  }
  
  .subscription-content,
  .about-content {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
  
  .subscription-image img,
  .about-image img {
    width: 70vw;
    max-width: 400px;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  
  .hero-main-content {
    padding: 40px 0;
    gap: 30px;
  }
  
  .hero-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .hero-description {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .carousel-slides {
    height: 300px;
  }
  
  .subscription-title,
  .about-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .subscription-list,
  .about-list {
    font-size: 16px;
  }
  
  .newsletter-map-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .newsletter-card {
    max-width: 100%;
    margin: 20px 0;
  }
}

/* Mobile portrait */
@media (max-width: 640px) {
  .nav {
    padding: 8px 0;
  }
  
  .brand img {
    height: 36px;
  }
  
  .hero {
    padding-top: 80px;
    min-height: 80vh;
  }
  
  .hero-main-content {
    padding: 30px 0;
    gap: 25px;
  }
  
  .hero-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .hero-description {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .hero-cta {
    margin-top: 20px;
  }
  
  .btn-accent {
    padding: 12px 24px;
    font-size: 16px;
  }
  
  .carousel-slides {
    height: 280px;
  }
  
  .carousel-container {
    padding: 15px;
  }
  
  .subscription-section,
  .about-section {
    margin-top: 40px;
    border-radius: 15px;
  }
  
  .subscription-content,
  .about-content {
    padding: 30px 20px;
    gap: 25px;
  }
  
  .subscription-title,
  .about-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .subscription-list,
  .about-list {
    font-size: 14px;
  }
  
  .subscription-image img,
  .about-image img {
    width: 80vw;
    max-width: 300px;
  }
  
  .map-container {
    height: 200px;
    margin: 0 0 20px 0;
  }
  
  .google-map {
    height: 200px;
  }
  
  .whatsapp-button {
    bottom: 15px;
    right: 15px;
    padding: 12px;
  }
  
  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 13px;
  }
  
  .btn-accent {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .carousel-slides {
    height: 250px;
  }
  
  .subscription-title,
  .about-title {
    font-size: 18px;
  }
  
  .subscription-list,
  .about-list {
    font-size: 13px;
  }
  
  .form-inputs {
    padding: 12px;
  }
  
  .form-inputs input {
    padding: 12px;
    font-size: 14px;
  }
  
  .newsletter-submit {
    padding: 10px;
    font-size: 14px;
  }
}

/* Navigation Mobile */
@media (max-width: 760px) {
  .menu-toggle { 
    display: block; 
  }
  
  .menu { 
    position: absolute; 
    top: 60px; 
    left: 0; 
    right: 0; 
    background: #ffffff; 
    border-bottom: 1px solid #eef2f7; 
    display: none; 
    flex-direction: column; 
    gap: 0; 
    padding: 15px 20px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); 
    z-index: 50;
  }
  
  .menu a { 
    padding: 15px 12px; 
    border-radius: 8px; 
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .menu a:last-child {
    border-bottom: none;
  }
  
  .menu.open { 
    display: flex; 
  }
  
  .actions { 
    display: none; 
  }
  
  .site-header .nav { 
    position: relative; 
  }
  
  .two-col .text h2 { 
    font-size: 24px; 
  }
}


