/* Signia Hearing Aid Page Styles */
/* :root {
  --primary-color: #2a7fba;
  --secondary-color: #e67e22;
  --text-color: #333;
  --light-text: #666;
  --light-bg: #f8fafc;
  --white: #fff;
  --border-color: #e2e8f0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
} */

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

/* body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  position: relative;
} */

/* h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-color);
} */

/* p {
  margin-bottom: 20px;
  color: var(--light-text);
} */

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 16px;
}

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

.btn-primary:hover {
  background-color: #1e6a99;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 127, 186, 0.3);
}

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

.btn-secondary:hover {
  background-color: #d46b1b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* Hero Section */
.hero-subheading {
  font-size: 1.5rem;
  color: #2d3748;
  margin: 1rem 0 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.dotted-features {
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.dotted-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  color: #4a5568;
  font-size: 1rem;
}

.dotted-feature i {
  color: #3182ce;
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.dotted-feature span {
  display: inline-block;
  vertical-align: middle;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0;
  text-align: left;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  text-align: left;
  max-width: 80%;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 80%;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* Carousel Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-control:hover {
  background: rgba(255, 255, 255, 0.4);
}

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

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

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
    max-width: 90%;
  }
  
  .hero-content p {
    font-size: 1.3rem;
  }
  
  .carousel-control {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 70vh;
    min-height: 400px;
  }
  
  .hero-slide {
    background-position: 99% center !important; /* Adjust this value to show more left side */
  }
  
  .hero-content h1,
  .hero-content p {
    max-width: 100%;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .carousel-control {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .hero-carousel {
    height: 60vh;
    min-height: 300px;
  }
  
  .hero-slide {
    background-position: 89% center !important; /* More aggressive left shift for mobile */
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-content h1,
  .hero-content p {
    max-width: 100%;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .carousel-control {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
  }
}

/* Hero Section */
.signia-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
  position: relative;
  overflow: hidden;

}

.signia-hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.signia-hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding-right: 20px;
  animation: fadeInUp 0.8s ease-out;
}

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

.signia-hero h1 {
  font-size: 48px;
  color: #1a365d;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.signia-hero p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 90%;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #3182ce;
  color: white;
}

.btn-primary:hover {
  background-color: #2c5282;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #e53e3e;
  color: white;
}

.btn-secondary:hover {
  background-color: #c53030;
  transform: translateY(-2px);
}

.signia-hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  padding: 20px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.signia-hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
}

.price-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 180px;
  background-color: #e67e22;
  color: white;
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 15px 5px;
  border-radius: 5px 0 0 5px;
  box-shadow: -2px 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}






.chat-btn i {
  font-size: 24px;
}

.chat-btn span {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
}

.chat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.chat-btn:hover span {
  bottom: -20px;
  opacity: 1;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 36px;
  color: #1a365d;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
}

/* Appointment Form Section */
.appointment-section {
  padding: 100px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../images/bg-of-section-3.jpg') center/cover no-repeat;
  background-blend-mode: overlay;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #1a365d;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #3182ce;
}

.section-header p {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
}

.appointment-form-container {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 0 auto;
  max-width: 1000px;
}

.appointment-form {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .appointment-form {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

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

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 10px;
}

.appointment-features {
  flex: 1;
  min-width: 300px;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.appointment-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/form-bg-2.png') center/cover;
  opacity: 0.3; /* Increased from 0.1 to 0.3 for better visibility */
  filter: brightness(1.1) contrast(1.1); /* Enhanced contrast and brightness */
  z-index: 0;
}

/* Add a subtle white overlay to ensure text remains readable */
.appointment-features::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4); /* White overlay with 40% opacity */
  z-index: 0;
}

.appointment-features > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .appointment-features {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px 20px;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #2d3748;
}

.feature-item i {
  color: #3182ce;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Benefits Section */
.benefits-section {
  padding: 50px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.6s ease-out;
  opacity: 1 !important; /* Ensure cards are visible */
  transform: translateY(0) !important; /* Reset any transform */
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #ebf5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #3182ce;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a365d;
}

.benefit-card p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
}

/* Smart Signia Section */
.smart-signia-section {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../images/bg-of-section-3.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  background-blend-mode: overlay;
}

.smart-signia-content {
  display: flex;
  align-items: center;
  gap: 0px;
  position: relative;
  z-index: 1;
}

.hearing-aid-image {
  flex: 1;
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hearing-aid-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.smart-signia-text {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.smart-signia-text h2 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.smart-signia-text p {
  color: #2d3748;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  font-weight: 400;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.feature-list .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-list .feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

.feature-list .feature-item i {
  color: #2a7fba;
  font-size: 1.2rem;
  margin-right: 12px;
  flex-shrink: 0;
  background: rgba(42, 127, 186, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list .feature-item span {
  color: #1a365d;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 992px) {
  .smart-signia-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hearing-aid-image {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .smart-signia-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .smart-signia-section {
    padding: 60px 0;
  }
  
  .smart-signia-text h2 {
    font-size: 1.8rem;
  }
  
  .feature-list .feature-item {
    justify-content: center;
  }
}

/* Models Section */
.models-section {
  padding: 80px 0;
  background-color: white;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.model-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.6s ease-out;
  display: flex;
  flex-direction: column;
  opacity: 1 !important; /* Ensure cards are visible */
  transform: translateY(0) !important; /* Reset any transform */
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.model-image {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f2f9;
  padding: 0px;
}

.model-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.model-card:hover .model-image img {
  transform: scale(1.05);
}

.model-card h3 {
  font-size: 20px;
  margin: 20px 20px 10px;
  color: #1a365d;
}

.model-card p {
  padding: 0 20px;
  color: #4a5568;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.model-card .btn-outline {
  margin: 0 0px 20px;
  padding: 8px 20px;
  border: 2px solid #3182ce;
  color: #3182ce;
  background: transparent;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.model-card .btn-outline:hover {
  background: #3182ce;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .benefits-grid,
  .models-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .model-card {
    max-width: 100%;
  }
}

/* Ensure the container has proper width */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Testimonial Section */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9)), url('../images/testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-section .section-header h2,
.testimonial-section .section-header p {
  color: white;
}

.testimonial-section .section-header h2:after {
  background-color: #e67e22;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 40px;
  margin: 0 20px;
  position: relative;
}

.quote-icon {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  margin: 0 0 5px;
  color: white;
}

.author-info span {
  font-size: 14px;
  color: #cbd5e0;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-white {
  background: white;
  color: var(--primary-color);
  padding: 12px 40px;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
}

.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/heronewimg.jpg') center/cover;
  opacity: 0.1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-white {
  background: white;
  color: #3182ce;
  padding: 12px 35px;
  font-size: 18px;
  font-weight: 600;
}

.btn-white:hover {
  background: #f7fafc;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .signia-hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .signia-hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .appointment-form-container {
    flex-direction: column;
  }
  
  .appointment-form {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .appointment-features {
    width: 100%;
    padding: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .feature-item {
    margin: 0;
    flex: 0 0 calc(50% - 20px);
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .signia-hero h1 {
    font-size: 40px;
  }
  
  .signia-hero p {
    font-size: 17px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-header p {
    font-size: 17px;
  }
  
  .benefits-grid,
  .models-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  .signia-hero {
    padding: 75px 0 60px;
  }
  
  .signia-hero h1 {
    font-size: 36px;
    text-align: center;
  }
  
  .signia-hero p {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .signia-hero-image {
    margin-top: -8px;
  }
  
  .benefit-card,
  .model-card {
    opacity: 1;
    transform: none;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .section-header p {
    font-size: 16px;
  }
  
  .feature-item {
    flex: 0 0 100%;
  }
  
  .testimonial-slide {
    padding: 30px 20px;
  }
  
  .testimonial-content p {
    font-size: 16px;
  }
  
  .cta-content h2 {
    font-size: 30px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .signia-hero h1 {
    font-size: 32px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .appointment-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .feature-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .signia-hero {
    padding: 50px 0 60px;
  }
  
  .signia-hero h1 {
    font-size: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
  }
  
  .appointment-form {
    padding: 20px 15px;
  }
  
  .testimonial-slide {
    padding: 25px 15px;
  }
  
  .quote-icon {
    font-size: 60px;
  }
  
  .testimonial-content p {
    font-size: 15px;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
  }
  
  .author-info h4 {
    font-size: 16px;
  }
  
  .author-info span {
    font-size: 13px;
  }
}
