/* CSS Test - if this loads, test.html will show BLUE background */
.test-box {
  background: #021f46 !important;
}

/* Base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
  color: #2c3e50;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation bar */
.navbar {
  background-color: #021f46;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.navbar .logo-container img {
  display: none !important;
}

.navbar .logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  padding: 0.5rem 0;
}

.navbar nav {
  display: flex;
  align-items: center;
}

.navbar nav a {
  margin-left: 2rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #a3cff3;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  .navbar .logo-container img {
    display: none !important;
  }
  
  .navbar .logo-text {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .navbar nav {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: #021f46;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  
  .navbar nav.active {
    left: 0;
  }
  
  .navbar nav a {
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    display: block;
    font-size: 1.1rem;
  }
}

/* Categories carousel section */
.categories {
  padding: 4rem 1rem;
  background-color: #f5f7fa;
  text-align: center;
}

.categories h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #021f46;
}

.categories p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #5d6d7e;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.category-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-carousel::-webkit-scrollbar {
  display: none;
}

.category-slide {
  flex: 0 0 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  cursor: pointer;
  color: #fff;
}

.category-slide .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.category-slide .overlay h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.category-slide .overlay p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #e0e0e0;
}

.carousel-control {
  background-color: rgba(2, 31, 70, 0.7);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-control.prev {
  left: -16px;
}

.carousel-control.next {
  right: -16px;
}

/* Experiences section */
.experiences {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.experiences h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #021f46;
}

.experiences p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #5d6d7e;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.experience-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.experience-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.experience-card h3 {
  margin: 1rem;
  font-size: 1.2rem;
  color: #021f46;
}

.experience-card p,
.experience-card ul {
  margin: 0 1rem 1.5rem;
  font-size: 0.9rem;
  color: #5d6d7e;
  line-height: 1.5;
}

.experience-card ul {
  padding-left: 1.2rem;
}

.experience-card ul li {
  margin-bottom: 0.5rem;
}

/* Booking process */
.booking {
  background-color: #f5f7fa;
  padding: 4rem 1rem;
  text-align: center;
}

.booking h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #021f46;
}

.booking p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #5d6d7e;
}

.process-list {
  list-style-type: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  max-width: 600px;
  text-align: left;
}

.process-list li {
  background-color: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #0080ff;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
}

.btn:hover {
  background-color: #0064cc;
}

.btn.whatsapp {
  background-color: #25D366;
  color: #fff;
}

.btn.whatsapp:hover {
  background-color: #1faa52;
}

/* Listing page */
.listing-container {
  padding: 2rem 1rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.listing-container h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #021f46;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.card img {
  flex: 0 0 35%;
  height: 220px;
  object-fit: cover;
}

.card-info {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
}

.info-top h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #021f46;
}

.info-top .company {
  font-size: 0.9rem;
  color: #6c7a89;
  margin: 0.2rem 0;
}

.info-top .location {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #6c7a89;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}

.tag {
  background-color: #eef7ff;
  color: #0070f3;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 5px;
  font-weight: 500;
}

.info-top .specs {
  font-size: 0.85rem;
  color: #5d6d7e;
  margin-bottom: 0.8rem;
}

.info-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
}

.info-bottom .price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0.6rem;
}

/* FIXED: Price label visibility - changed from black to white */
.price-label {
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #021f46;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}

/*
 * On listing pages the price text was using a green color on a light background
 * which made it difficult to read when combined with certain card designs.
 * Change the default price color to black so it remains legible.
 */
.price-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}

.price-value strong {
  font-weight: 700;
}

.price-note {
  font-size: 0.75rem;
  color: #6c7a89;
}

.info-bottom .btn.whatsapp {
  margin-top: 0.5rem;
}

/* Yacht detail page */
.yacht-detail {
  padding: 2rem 1rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.yacht-hero img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.yacht-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #021f46;
}

.yacht-info .company {
  font-size: 0.9rem;
  color: #6c7a89;
  margin-bottom: 0.3rem;
}

.yacht-info .location {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #6c7a89;
}

.rating {
  font-size: 1rem;
  font-weight: 600;
  color: #00a96d;
  margin-bottom: 0.7rem;
}

.reviews {
  font-size: 0.8rem;
  color: #6c7a89;
  margin-left: 0.3rem;
}

.yacht-info .tags {
  margin-bottom: 1rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spec-grid div {
  background-color: #eef7ff;
  padding: 0.7rem;
  border-radius: 6px;
  text-align: center;
}

.spec-grid div span {
  display: block;
  font-size: 0.75rem;
  color: #6c7a89;
  margin-bottom: 0.3rem;
}

.spec-grid div strong {
  font-size: 1rem;
  color: #021f46;
}

.price-section {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.price-section h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #021f46;
}

/*
 * On the yacht detail page, the price is displayed over a dark gradient
 * background. Use a white color for the value to maximize contrast.
 */
.price-section .price-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.price-section .price-note {
  font-size: 0.8rem;
  color: #6c7a89;
  margin-bottom: 0.8rem;
}

.price-section .btn {
  background-color: #0080ff;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  margin-right: 0.5rem;
}

.price-section .btn.whatsapp {
  background-color: #25D366;
  margin-left: 0;
  margin-top: 0.5rem;
}

/* Contact page */
.contact {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #021f46;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
}

/* Footer */
.site-footer {
  background-color: #021f46;
  color: #fff;
  padding: 2rem 1rem;
  font-size: 0.85rem;
}

.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 1rem;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-container img {
  display: none !important;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav a {
  margin-left: 1rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #a3cff3;
}

.site-footer p {
  text-align: center;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }
  .card img {
    width: 100%;
    height: 200px;
  }
  .card-info {
    width: 100%;
  }
}
/* Services Page Styles */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.services-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #021f46 0%, #0a3d7a 100%);
  color: #fff;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.services-section {
  margin-bottom: 4rem;
}

.services-section h2 {
  font-size: 2rem;
  color: #021f46;
  margin-bottom: 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: #021f46;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #021f46;
  margin-bottom: 0.5rem;
}

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

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

/* Food Section Specific Styles */
.food-section {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
}

.food-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.food-info h3 {
  font-size: 1.8rem;
  color: #021f46;
  margin-bottom: 1rem;
}

.minimum-order {
  color: #e74c3c;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cuisine-options {
  margin: 2rem 0;
}

.cuisine-options h4 {
  font-size: 1.3rem;
  color: #021f46;
  margin-bottom: 1rem;
}

.cuisine-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cuisine-list li {
  font-size: 1.2rem;
  color: #333;
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.food-note {
  font-style: italic;
  color: #555;
  margin-top: 2rem;
  font-size: 1.05rem;
}

/* Services CTA Section */
.services-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #021f46 0%, #0a3d7a 100%);
  color: #fff;
  border-radius: 12px;
  margin-top: 3rem;
}

.services-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.services-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Responsive for Services Page */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2rem;
  }
  
  .services-section h2 {
    font-size: 1.5rem;
  }
  
  .cuisine-list {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Yacht Detail Page - Image Carousel */
.yacht-detail {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.yacht-gallery {
  position: relative;
  width: 100%;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide-img {
  width: 100%;
  flex-shrink: 0;
  height: 400px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2, 31, 70, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(2, 31, 70, 0.9);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: #021f46;
  width: 30px;
  border-radius: 5px;
}

.yacht-info {
  padding: 1rem;
}

.yacht-info h1 {
  font-size: 2rem;
  color: #021f46;
  margin-bottom: 0.5rem;
}

.yacht-info .company {
  color: #666;
  margin-bottom: 0.25rem;
}

.yacht-info .location {
  color: #888;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.spec-grid div {
  display: flex;
  flex-direction: column;
}

.spec-grid span {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.spec-grid strong {
  color: #021f46;
  font-size: 1.1rem;
}

.price-section {
  background: linear-gradient(135deg, #021f46 0%, #0a3d7a 100%);
  padding: 2rem;
  border-radius: 12px;
  color: white;
  margin-top: 2rem;
}

.price-section h3 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  /* Ensure the "Price per hour" label stands out on the dark gradient background */
  color: #ffffff;
}

/*
 * Remove overly broad styling that forced the price-value text to white
 * everywhere. The color is now defined in context-specific rules above.
 */
/*
  .price-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #ffffff !important;
  }

  .price-note {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  }
*/

.price-section .btn {
  width: 100%;
  margin-bottom: 1rem;
}

/* Add-Ons Section on Yacht Detail Pages */
.addons-section {
  margin-top: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.addons-section h2 {
  font-size: 1.8rem;
  color: #021f46;
  margin-bottom: 1.5rem;
  text-align: center;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.addon-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.addon-card h3 {
  font-size: 1.2rem;
  color: #021f46;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.addon-price {
  font-size: 1.3rem;
  color: #e74c3c;
  font-weight: 700;
  margin: 0.5rem 0;
}

.addon-card p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Social Media Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #021f46 0%, #0a3d7a 100%);
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 31, 70, 0.3);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook:hover {
  background: #1877f2;
}

.social-link.whatsapp:hover {
  background: #25D366;
}

.social-link.tiktok:hover {
  background: #000000;
}

/* Responsive for yacht detail */
@media (max-width: 968px) {
  .yacht-detail {
    grid-template-columns: 1fr;
  }
  
  .carousel-slide-img {
    height: 300px;
  }
  
  .spec-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}


/* --- Benefits Section --- */
.benefits-section {
  padding: 3rem 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto 1.5rem;
}

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

.benefit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: #ffcf4a;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #0b1f35; /* dark navy for icons */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.benefit-text h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.15rem;
  color: #021f46;
}

.benefit-text p {
  margin: 0;
  color: #5d6d7e;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { grid-template-columns: 48px 1fr; }
  .benefit-icon { width: 48px; height: 48px; border-radius: 14px; }
  .benefit-text h3 { font-size: 1.05rem; }
  .benefit-text p { font-size: 0.93rem; }
}
