/* 
   Zenlume - Main Stylesheet
   Color Palette: 
   #F47C7C (warm coral)
   #EF9F9F (soft coral) 
   #FAD4D4 (light pink)
   #FFF2F2 (off-white)
*/

/* Base Styles & Reset */
:root {
  --primary: #f47c7c;
  --secondary: #ef9f9f;
  --tertiary: #fad4d4;
  --background: #fff2f2;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --black: rgba(0, 0, 0, 0.8);
  --transition: all 0.3s ease;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px for easier rem calculations */
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

h1 {
  font-size: 5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 4rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--secondary);
}

ul,
ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3rem;
}

section {
  padding: 10rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  width: 8rem;
  height: 2px;
  background-color: var(--primary);
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-light);
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.4rem;
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-hover);
}

.btn-small {
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: var(--transition);
  background-color: transparent;
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
}

.logo-path {
  transition: var(--transition);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  transition: var(--transition);
}

.scrolled .logo-text {
  fill: var(--primary) !important;
}

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

.nav-item {
  margin-left: 3rem;
}

.nav-link {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 0.5rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.scrolled .nav-link {
  color: var(--text-dark);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  margin: 0.5rem auto;
  transition: var(--transition);
  background-color: var(--white);
}

.scrolled .bar {
  background-color: var(--text-dark);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 70rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
  background-position: top;
}

.hero-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-size: 6rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 4rem;
  color: var(--tertiary);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.animated-text {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1;
  min-width: 30rem;
  position: relative;
}

.image-float {
  position: relative;
  padding-right: 3rem;
  padding-bottom: 3rem;
}

.image-float::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 80%;
  border: 3px solid var(--primary);
  z-index: -1;
  transition: var(--transition);
}

.image-float:hover::before {
  right: -1rem;
  bottom: -1rem;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.about-text {
  flex: 1;
  min-width: 30rem;
}

.about-heading {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.about-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6rem;
  height: 2px;
  background-color: var(--primary);
}

.about-list {
  list-style: none;
  margin: 3rem 0;
}

.about-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.about-list i {
  color: var(--primary);
  margin-right: 1.5rem;
  font-size: 2rem;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: 2rem;
  margin: 4rem 0 2rem;
  position: relative;
}

.about-quote::before {
  content: '"';
  font-size: 6rem;
  color: var(--tertiary);
  position: absolute;
  top: -4rem;
  left: 0;
  opacity: 0.5;
}

/* Services Section */
.services-section {
  background-color: var(--background);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 3rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: var(--primary);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  height: 0.8rem;
}

.service-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tertiary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 3rem;
  transition: var(--transition);
  padding: 10px;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--white);
}

.service-title {
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
}

/* Schedule Section */
.schedule-section {
  background-color: var(--white);
}

.schedule-tabs {
  margin-bottom: 4rem;
  box-shadow: var(--shadow);
  border-radius: 1rem;
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  overflow-x: auto;
  background-color: var(--tertiary);
}

.tab-btn {
  padding: 1.5rem 3rem;
  background-color: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.tab-btn:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.5);
}

.tab-content {
  background-color: var(--white);
  padding: 3rem;
}

.day-schedule {
  display: none;
}

.day-schedule.active {
  display: block;
}

.schedule-class {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--tertiary);
}

.schedule-class:last-child {
  border-bottom: none;
}

.time {
  width: 15rem;
  font-weight: 600;
  color: var(--primary);
  padding-right: 2rem;
}

.class-info {
  flex: 1;
}

.class-info h4 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.class-info p {
  margin-bottom: 0;
  color: var(--text-light);
}

.book-btn {
  width: 10rem;
  text-align: right;
}

.schedule-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Philosophy Section */
.philosophy-section {
  background-color: var(--background);
  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  gap: 3rem;
  margin-bottom: 6rem;
}

.philosophy-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 4rem 3rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.philosophy-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-hover);
}

.philosophy-number {
  position: absolute;
  top: 0;
  right: 3rem;
  font-family: var(--font-heading);
  font-size: 10rem;
  color: var(--tertiary);
  line-height: 1;
  opacity: 0.5;
  transform: translateY(-40%);
}

.philosophy-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.philosophy-card p {
  position: relative;
  z-index: 2;
}

.philosophy-image {
  position: relative;
  margin: 0 auto;
  max-width: 80rem;
}

.philosophy-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.philosophy-quote {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  max-width: 40rem;
}

.philosophy-quote p {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* News Section */
.news-section {
  background-color: var(--white);
}

.news-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  gap: 3rem;
}

.news-card {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-hover);
}

.news-image {
  position: relative;
  height: 25rem;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.news-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  text-align: center;
  line-height: 1.3;
}

.news-date span {
  display: block;
  font-weight: 600;
}

.news-date span:first-child {
  font-size: 2.4rem;
}

.news-content {
  padding: 3rem;
}

.news-content h3 {
  margin-bottom: 1rem;
  transition: var(--transition);
}

.news-card:hover .news-content h3 {
  color: var(--primary);
}

.news-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.news-link {
  font-weight: 500;
  display: flex;
  align-items: center;
}

.news-link i {
  margin-left: 1rem;
  transition: var(--transition);
}

.news-link:hover i {
  transform: translateX(0.5rem);
}

/* Contact Section */
.contact-section {
  background-color: var(--background);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}

.contact-info {
  flex: 1;
  min-width: 30rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.contact-icon {
  width: 0.5rem;
  height: 5rem;
  background-color: var(--tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  color: var(--primary);
  font-size: 2rem;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background-color: var(--primary);
  color: var(--white);
}

.contact-details h3 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.contact-details p {
  color: var(--text-light);
  margin-bottom: 0;
}

.social-link {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--tertiary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-0.3rem);
}

.contact-form-container {
  flex: 1;
  min-width: 30rem;
}

.contact-form {
  background-color: var(--white);
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.form-group {
  position: relative;
  margin-bottom: 3rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 0;
  font-size: 1.6rem;
  border: none;
  border-bottom: 1px solid var(--text-light);
  background-color: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  height: 12rem;
  resize: none;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1.6rem;
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:not([value='']):valid ~ label {
  top: -2rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.5rem;
}

.form-group.checkbox label {
  position: static;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 6rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  flex: 1;
  min-width: 25rem;
}

.footer-tagline {
  margin-top: 1.5rem;
  color: var(--tertiary);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.8rem;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-column {
  min-width: 15rem;
}

.footer-column h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 2px;
  background-color: var(--primary);
}

.footer-column ul {
  list-style: none;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 1rem;
}

.footer-column ul li a {
  color: var(--background);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Success Page */
.success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 10rem;
}

.success-content {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  padding: 5rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.success-icon {
  font-size: 8rem;
  color: var(--primary);
  margin-bottom: 2rem;
  animation: scale-in 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-title {
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.success-details {
  background-color: var(--background);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
  text-align: left;
}

.success-details p {
  margin-bottom: 1rem;
}

.success-details p:last-child {
  margin-bottom: 0;
}

.success-cta {
  margin-top: 3rem;
}

@keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Policy Pages */
.policy-section {
  padding: 15rem 0 10rem;
}

.policy-container {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 5rem;
  box-shadow: var(--shadow);
}

.policy-container h2 {
  color: var(--primary);
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.policy-container h2:first-child {
  margin-top: 0;
}

.policy-container p {
  margin-bottom: 2rem;
}

.policy-container ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.policy-container ul li {
  margin-bottom: 1rem;
}

.policy-date {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 4rem;
}

.policy-back {
  display: inline-block;
  margin-top: 4rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  html {
    font-size: 57%;
  }
}

@media screen and (max-width: 992px) {
  html {
    font-size: 55%;
  }

  .hero-title {
    font-size: 5rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    width: 100%;
  }

  .tab-buttons {
    flex-wrap: wrap;
  }

  .tab-btn {
    flex: 1;
    min-width: 11rem;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .philosophy-quote {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 3rem;
    max-width: 100%;
  }
}

@media screen and (max-width: 900px) {
  html {
    font-size: 52%;
  }

  section {
    padding: 8rem 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 40rem;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

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

  .nav-item {
    margin: 2rem 0;
  }

  .nav-link {
    color: var(--text-dark);
    font-size: 1.8rem;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-cta {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .schedule-class {
    flex-direction: column;
    text-align: center;
    padding: 3rem 0;
  }

  .time {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .book-btn {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .news-slider {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-form {
    padding: 3rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-links {
    width: 100%;
    flex-direction: column;
    gap: 3rem;
  }

  .footer-column {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 50%;
  }

  .hero-title {
    font-size: 4.5rem;
  }
      section {
        padding: 6rem 10px
    }

  .hero-subtitle {
    font-size: 2rem;
  }

  .section-title {
    font-size: 3.5rem;
  }

  .contact-form {
    padding: 5rem 2rem;
  }

  .success-content {
    padding: 3rem;
  }
}

@media screen and (max-width: 360px) {
  html {
    font-size: 48%;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  h3 {
    font-size: 2.6rem;
  }

  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .about-heading {
    font-size: 2.8rem;
  }

  .service-icon {
    width: 7rem;
    height: 7rem;
    font-size: 2.5rem;
  }

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

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 auto 1.5rem;
  }

  .policy-container {
    padding: 3rem;
  }
}

/* Animations & Effects */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}
