/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Font Stack and Base Styles */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f5f5f5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fallback for older browsers */
@supports not (font-family: -apple-system) {
  body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
}

/* Ensure consistent rendering across devices */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Better button and input fonts */
button,
input,
textarea,
select {
  font-family: inherit;
}

/* Improve text rendering */
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.components-loaded {
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid #009FE3;
  outline-offset: 3px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  padding: 10px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #234e7e;
  color: #ffffff;
  border: 2px solid #c0c0c0;
  padding: 12px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background-color: #1a3d63;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35, 78, 126, 0.4);
}

.btn-phone {
  background-color: #234e7e;
  color: #ffffff;
  border: 2px solid #c0c0c0;
  padding: 12px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-phone:hover {
  background-color: #1a3d63;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35, 78, 126, 0.4);
}

.btn-phone i {
  font-size: 16px;
}

.padding-top-10 {
  padding-top: 10px;
}
/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: min(75vw, calc(100vh - 35px));
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(136, 136, 141, 0.1), rgba(195, 195, 195, 0.1)),
    url("../images/hero-new.png") no-repeat center center;
  background-size: contain;
  background-color: white;
  padding: 0;
}

.hero-img {
  display: none;
}

.hero-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 54px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px #3b3939;
  text-align: center;
}

.hero-content .tagline {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px #4e4d4d;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 8rem;
}

.hero-content .btn {
  font-size: 14px;
  padding: 10px 28px;
  border-radius: 25px;
}

/* ========================================
   OTHER HERO VARIANTS
   ======================================== */
.hero-team {
  position: relative;
  height: 65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(136, 136, 141, 0.5), rgb(195, 195, 195, 0.4)),
    url("../images/ourteam.png") center/cover no-repeat;
  padding-top: 100px;
  margin-top: 90px;
}

.hero-treatments {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(136, 136, 141, 0.4), rgb(195, 195, 195, 0.4)),
    url("../images/smilingheroimage.jpg") center/cover no-repeat;
  padding-top: 100px;
  margin-top: 70px;
}

.hero-facial {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(136, 136, 141, 0.4), rgb(195, 195, 195, 0.4)),
    url("../images/facial.jpg") center/cover no-repeat;
  padding-top: 100px;
  margin-top: 70px;
  border: 1px solid lightgray;
}

/* ========================================
   WELCOME SECTION (ABOUT US)
   ======================================== */
.welcome-section {
  padding: 60px 0 40px 0;
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
}

.welcome-content {
  display: block;
}

.welcome-text {
  max-width: 100%;
  position: relative;
  width: 100%;
  overflow: auto;
}

.welcome-text h2 {
  font-size: 48px;
  color: #01647a;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 4px solid transparent;
  background-image: linear-gradient(to right, transparent calc(50% - 40px), #009FE3 calc(50% - 40px), #00A9CE calc(50% + 40px), transparent calc(50% + 40px));
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 4px;
}

.welcome-text h2::after {
  display: none;
}

.welcome-text-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.welcome-text img {
  width: 300px;
  flex-shrink: 0;
  border: 3px solid #009FE3;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-text img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 169, 206, 0.25);
}



.welcome-text p {
  margin-bottom: 0;
  color: #444444;
  line-height: 1.8;
  font-size: 17px;
  text-align: left;
  font-weight: 400;
}

.welcome-text p:first-of-type {
  font-size: 19px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.7;
}

.root-paragraph  {
  margin-bottom: 0;
  color: #444444;
  line-height: 1.8;
  font-size: 17px;
  text-align: left;
  font-weight: 400;
}

.welcomeroot-text p:first-of-type {
  
  color: #2c3e50;
  line-height: 1.7;
}


.welcome-text::after {
  content: '';
  display: table;
  clear: both;
}

/* ========================================
   HIGHLIGHTS SECTION
   ======================================== */
.highlights-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
}

.highlights-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #009FE3, #00A9CE);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 169, 206, 0.3);
  border-color: #009FE3;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #009FE3 0%, #00A9CE 100%);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 169, 206, 0.5);
}

.highlight-icon i {
  font-size: 28px;
  color: #ffffff;
}

.highlight-content {
  flex: 1;
}

.highlight-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.highlight-content p {
  font-size: 15px;
  color: #bdc3c7;
  margin: 0;
  font-weight: 400;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: 60px 0 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  scroll-margin-top: 110px;
}

.services-section-team {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  scroll-margin-top: 110px;
}

.services-section-team>.container>p {
  text-align: justify;
  font-size: 17px;
  line-height: 1.8;
  color: #444444;
  max-width: 1000px;
  margin: 0 40px 40px 40px;
  font-weight: 400;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #01647a;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.2;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 4px solid transparent;
  background-image: linear-gradient(to right, transparent calc(50% - 50px), #009FE3 calc(50% - 50px), #00A9CE calc(50% + 50px), transparent calc(50% + 50px));
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 4px;
}

.section-title::after {
  display: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: #ffffff;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-team {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #009FE3, #00A9CE);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 169, 206, 0.2);
  border-color: #009FE3;
}

.service-card-team::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 2px;
  background: linear-gradient(to right, #009FE3, #00A9CE);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.service-card-team:hover::before {
  transform: scaleX(1);
}

.service-card-team:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 169, 206, 0.2);
  border-color: #009FE3;
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.service-imagefacial {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-card-team:hover .service-image {
  transform: scale(1.05);
}

/* Service Card Content */
.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.service-content h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
  color: #01647a;
  font-weight: 700;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-align: left;
}

.service-card:hover .service-content h3 {
  color: #009FE3;
}

.service-card-team:hover .service-content h3 {
  color: #009FE3;
}

.service-content h4 {
  font-size: 16px;
  margin: 0 0 8px 0;
  color: #666666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: left;
}

/* Service Text Container with Read More/Less */
.service-text-container {
  position: relative;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-text {
  color: #444444;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
}

.service-text p {
  margin: 0 0 12px 0;
  text-align: left;
}

.service-text-container.collapsed .service-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6.8em;
}

.service-text-container.expanded .service-text {
  display: block;
  max-height: none;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #009FE3;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 0;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 5px;
}

.read-more-btn:hover {
  color: #00A9CE;
  gap: 8px;
}

.read-more-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-text-container.expanded .read-more-btn i {
  transform: rotate(180deg);
}

.service-content .btn {
  background: linear-gradient(135deg, #009FE3 0%, #00A9CE 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  border: none;
  transition: all 0.3s ease;
  text-transform: capitalize;
  align-self: flex-start;
}

.service-content .btn:hover {
  background: linear-gradient(135deg, #0088A8 0%, #009FE3 100%);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 169, 206, 0.3);
}

.service-content .btn i {
  transition: transform 0.3s ease;
}

.service-content .btn:hover i {
  transform: translateX(5px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 60px 0 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #009FE3, #00A9CE);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-column h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #009FE3, #00A9CE);
  border-radius: 2px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: start;
}

.contact-item i {
  font-size: 20px;
  color: #009FE3;
  margin-top: 3px;
  min-width: 20px;
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
  color: #bdc3c7;
}

.contact-item strong {
  color: #ffffff;
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
}

.contact-item a {
  color: #00A9CE;
  transition: color 0.3s ease;
  font-weight: 600;
}

.contact-item a:hover {
  color: #009FE3;
}

.emergency-text {
  color: #e74c3c !important;
  font-weight: 600;
  font-size: 13px;
  margin-top: 5px;
}

.map-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 3px solid #009FE3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 169, 206, 0.4);
}

.map-container iframe {
  display: block;
  width: 100%;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #bdc3c7;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links li a::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #009FE3;
  font-size: 18px;
}

.footer-links li a:hover {
  color: #009FE3;
  padding-left: 15px;
  transform: translateX(5px);
}

.footer-links li a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-icons-large {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons-large a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #009FE3 0%, #00A9CE 100%);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icons-large a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #ecf0f1 100%);
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.social-icons-large a:hover::before {
  transform: scale(1);
}

.social-icons-large a:hover {
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 5px 20px rgba(0, 169, 206, 0.5);
}

.social-icons-large a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.social-icons-large a:hover i {
  color: #009FE3;
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  margin: 5px 0;
  color: #bdc3c7;
  font-size: 14px;
}

.footer-copyright strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-credits {
  font-size: 12px;
  font-style: italic;
  color: #95a5a6;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
  .hero {
    min-height: min(56.25vw, calc(100vh - 70px));
    background-position: center center;
    background-size: contain;
  }

  .hero-buttons {
    margin-top: 6rem;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-buttons .btn {
    min-width: 220px;
    text-align: center;
    justify-content: center;
  }

  .welcome-section {
    padding: 50px 0 30px 0;
  }

  .welcome-text-content {
    gap: 30px;
  }

  .welcome-text img {
    width: 350px;
    max-width: 350px;
  }

  .welcome-text h2 {
    font-size: 42px;
  }

  .welcome-text p {
    font-size: 16px;
  }

  .welcome-text p:first-of-type {
    font-size: 18px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .highlight-card {
    padding: 25px;
  }

  .highlight-icon {
    width: 50px;
    height: 50px;
  }

  .highlight-icon i {
    font-size: 24px;
  }

  .highlight-content h3 {
    font-size: 18px;
  }

  .highlight-content p {
    font-size: 14px;
  }

  .section-title {
    font-size: 42px;
    padding-bottom: 12px;
    background-image: linear-gradient(to right, transparent calc(50% - 42px), #009FE3 calc(50% - 42px), #00A9CE calc(50% + 42px), transparent calc(50% + 42px));
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .service-content h3 {
    font-size: 26px;
    margin: 0 0 12px 0;
  }

  .service-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .service-text p {
    margin: 0 0 10px 0;
  }

  .service-text-container.collapsed .service-text {
    -webkit-line-clamp: 3;
    max-height: 5.1em;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .map-container {
    max-width: 600px;
  }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    margin-top: 0;
    background: none;
    background-color: transparent;
    display: block;
    position: relative;
    padding: 0;
    overflow: hidden;
  }

  .hero-img {
    display: block;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    object-fit: contain;
    background-color: #234e7e;
    object-position: center center;
  }

  .hero .container {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
  }

  .hero-content {
    position: static;
    padding: 0 20px;
  }

  .hero-buttons .btn {
    min-width: 250px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content .tagline {
    font-size: 14px;
    font-weight: 300;
  }

  .hero-buttons {
    margin-top: 4rem;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-buttons .btn {
    min-width: 220px;
    text-align: center;
    justify-content: center;
  }

  .hero-content .btn {
    font-size: 14px;
    padding: 10px 24px;
  }

  .welcome-section {
    padding: 40px 0 30px 0;
  }

  .welcome-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .welcome-text-content {
    flex-direction: column;
    gap: 25px;
  }

  .welcome-text img {
    width: 100%;
    max-width: 100%;
  }

  .welcome-text p {
    font-size: 15px;
  }

  .welcome-text p:first-of-type {
    font-size: 17px;
  }

  .highlights-section {
    padding: 50px 0;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight-card {
    padding: 20px;
  }

  .section-title {
    font-size: 36px;
    padding-bottom: 12px;
    background-image: linear-gradient(to right, transparent calc(50% - 40px), #009FE3 calc(50% - 40px), #00A9CE calc(50% + 40px), transparent calc(50% + 40px));
  }

  .services-section {
    padding: 40px 0 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-content h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
  }

  .service-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .service-text p {
    margin: 0 0 8px 0;
  }

  .service-text-container.collapsed .service-text {
    -webkit-line-clamp: 3;
    max-height: 4.5em;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    gap: 15px;
  }

  .map-container {
    height: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-social {
    width: 100%;
  }

  .footer-copyright {
    text-align: center;
    width: 100%;
  }

  .social-icons-large {
    justify-content: center;
  }
}

/* --- Small mobile (max 480px) --- */
@media (max-width: 480px) {
  .hero {
    margin-top: 0;
  }

  .hero-content {
    padding: 0 15px 30px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-content .tagline {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    margin-top: 2.5rem;
    gap: 8px;
  }

  .hero-content .btn {
    font-size: 12px;
    padding: 8px 20px;
  }

  .welcome-section {
    padding: 30px 0 20px 0;
  }

  .welcome-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .welcome-text-content {
    gap: 20px;
  }

  .welcome-text p {
    font-size: 14px;
  }

  .welcome-text p:first-of-type {
    font-size: 16px;
  }

  .highlights-section {
    padding: 40px 0;
  }

  .highlight-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .highlight-content h3 {
    font-size: 17px;
  }

  .highlight-content p {
    font-size: 13px;
  }

  .section-title {
    font-size: 30px;
    margin-bottom: 35px;
    padding-bottom: 10px;
    background-image: linear-gradient(to right, transparent calc(50% - 35px), #009FE3 calc(50% - 35px), #00A9CE calc(50% + 35px), transparent calc(50% + 35px));
  }

  .services-section {
    padding: 30px 0 50px 0;
  }

  .service-image {
    height: 200px;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h3 {
    font-size: 22px;
    margin: 0 0 10px 0;
  }

  .service-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .service-text p {
    margin: 0 0 8px 0;
  }

  .service-text-container.collapsed .service-text {
    -webkit-line-clamp: 3;
    max-height: 4.5em;
  }

  .read-more-btn {
    font-size: 13px;
  }

  .footer {
    padding: 30px 0 0;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item i {
    font-size: 16px;
  }

  .contact-item p {
    font-size: 13px;
  }

  .map-container {
    height: 180px;
  }

  .social-icons-large a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .footer-copyright p {
    font-size: 12px;
  }
}

/* --- Very small (max 375px) --- */
@media (max-width: 375px) {
  .hero {
    margin-top: 0;
  }

  .hero-buttons {
    margin-top: 1.5rem;
  }

  .hero-content .btn {
    font-size: 11px;
    padding: 7px 16px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .welcome-text h2 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .service-content h3 {
    font-size: 20px;
  }
}