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

:root {
  --primary-dark: #3e3e40;
  --primary-gold: #bf9926;
  --secondary-gold: #bf8b2a;
  --accent-red: #a61b1b;
  --light-gray: #dddddd;
  --white: #fdfdfd;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 1.25rem;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

.image-content {
  position: relative;
}
.red-large {
  background-color: var(--accent-red);
  width: 300px;
  height: 300px;
  border-radius: 50%;

  position: absolute;
  top: -75px;
  left: -75px;
  opacity: 50%;
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  outline: none;
  text-decoration: none;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--secondary-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

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

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

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-logo {
  display: flex;
}

.nav-logo a {
  line-height: 0;
}

.nav-logo img {
  width: 80px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary-dark) 100%
    ),
    url("./images/kaaka-bg.jpg");
  background-size: cover;
  background-blend-mode: multiply;
  color: var(--white);
  padding: 240px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("./images/kaaka-bg.jpg") center / cover;
  opacity: 0.1;
  z-index: 1;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.about-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.stat p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 25%,
    var(--accent-red) 100%
  );
  color: var(--white);
  padding: 180px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Preview */
.services-preview {
  padding: 80px 0;
  background-color: var(--light-gray);
}

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

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.text-content h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.features {
  margin-top: 3rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature i {
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.feature h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

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

/* Contact CTA */
.contact-cta {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--accent-red) 100%
  );
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary-gold);
}

.contact-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* About Page Styles */
.about-intro {
  padding: 80px 0;
}

.vmv-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.vmv-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.vmv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.vmv-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.vmv-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.values-section {
  padding: 80px 0;
}

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

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-red), var(--primary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.value-card h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.goals-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.goals-list,
.objectives-list {
  margin-top: 2rem;
}

.goals-list h3,
.objectives-list h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.goals-list ul,
.objectives-list ul {
  list-style: none;
  padding: 0;
}

.goals-list li,
.objectives-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.goals-list li::before,
.objectives-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

.pledge-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

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

.pledge-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pledge-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.pledge-item i {
  font-size: 2rem;
  color: var(--primary-gold);
  min-width: 40px;
}

.pledge-item p {
  margin: 0;
  color: var(--text-dark);
}

/* Services Page Styles */
.services-overview {
  padding: 80px 0;
}

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

.service-detail {
  perspective: 1000px;
  width: 100%;
  min-height: 450px;
  margin-bottom: 30px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s;
  cursor: pointer;
}

.service-detail:hover .service-card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  background-color: var(--light-gray);
  display: flex;
  flex-direction: column;
}

.card-back {
  transform: rotateY(180deg);
}

.service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
}

.service-detail .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-red), var(--primary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.service-detail .service-icon i {
  font-size: 1.25rem;
  color: var(--white);
}

.service-title h3 {
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.service-title p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.85rem;
}

.service-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-content li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.4;
}

.service-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.quality-policy {
  padding: 80px 0;
  background-color: var(--light-gray);
}

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

.policy-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.principle {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.principle h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.principle i {
  color: var(--primary-gold);
}

.services-cta {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--accent-red) 100%
  );
  color: var(--white);
  text-align: center;
}

.services-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.services-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-container h2,
.contact-info-container h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #e1e1e1;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(191, 153, 38, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: auto;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.method-info h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.method-info p {
  margin: 0.25rem 0;
}

.method-info a {
  color: var(--primary-gold);
  text-decoration: none;
}

.method-info a:hover {
  text-decoration: underline;
}

.office-hours {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.office-hours h4 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.office-hours i {
  color: var(--primary-gold);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e1e1e1;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item.emergency {
  color: var(--accent-red);
  font-weight: 500;
}

.form-success {
  text-align: center;
  padding: 3rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
}

.form-success i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.map-section {
  padding: 80px 0 0;
  background-color: var(--light-gray);
}

.map-section .container {
  text-align: center;
  margin-bottom: 2rem;
}

.map-section h2 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.faq-question h4 {
  color: var(--primary-dark);
  margin: 0;
}

.faq-question i {
  color: var(--primary-gold);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-light);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}


.footer-logo img{
  width: 200px;
  border-radius: var(--border-radius)
}

.footer-section h3,
.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--white);
  background-color: var(--secondary-gold);
  transform: translateY(-2px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  font-size: 2rem;
  color: var(--white);
}
.accent {
  color: var(--accent-red);
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.back-to-top i {
  color: var(--white);
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 120px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }

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

  .nav-toggle {
    display: flex;
  }

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

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

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

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

  .hero-buttons,
  .about-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 2rem;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .cta-buttons,
  .about-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

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

  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

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

  .service-card,
  .value-card {
    padding: 1.5rem;
  }

  .vmv-card {
    padding: 2rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
  }

  .footer-section:first-child {
    order: 2
  }
  .footer-logo img{
    width: 100%;
    border-radius: 8px;
  }

  .office-hours h4 {
    justify-content: center;
  }

  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .whatsapp-float,
  .back-to-top,
  .hero-buttons,
  .cta-buttons,
  .about-buttons {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .hero,
  .page-header {
    background: none !important;
    color: var(--text-dark) !important;
  }

  .contact-cta,
  .services-cta {
    background: none !important;
    color: var(--text-dark) !important;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles for Better Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Screen Reader Only Text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
