/* ===== BASE STYLES ===== */
:root {
  --primary: #FF7F00;       /* Vibrant orange */
  --primary-dark: #E67100;  /* Darker orange for hover */
  --secondary: #000000;     /* Black */
  --white: #FFFFFF;
  --dark-gray: #333333;
  --light-gray: #F5F5F5;
  --overlay: rgba(0, 0, 0, 0.6);
  --text-opacity: 0.9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--secondary);
  color: var(--white);
  padding: 0 5%;
  overflow: hidden;
}

/* ===== BACKGROUND SLIDESHOW ===== */
.background-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.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 1.5s ease-in-out;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
  z-index: 1;
}

/* ===== NAVIGATION ===== */
.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  z-index: 10;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  z-index: 10;
}

.zanni {
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 1px;
}

.media {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 11;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* ===== HERO CONTENT ===== */
.hero-content {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 500px;
  animation: fadeInLeft 1s ease-out;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 500;
  opacity: var(--text-opacity);
}

.description {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: var(--text-opacity);
  max-width: 90%;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

/* ===== BUTTON STYLES ===== */
.cta-primary, .cta-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  font-size: 0.95rem;
}

.cta-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(255, 127, 0, 0.2);
}

.cta-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 127, 0, 0.3);
}

.cta-secondary {
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-secondary:hover {
  background-color: var(--white);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* ===== PHOTO INDICATORS ===== */
.photo-indicators {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  padding: 0;
}

.indicator:hover {
  transform: scale(1.3);
}

.indicator.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 5;
  cursor: pointer;
}

.scroll-indicator span {
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arrow-down {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
  }
  
  .hero-text {
    max-width: 100%;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .description {
    max-width: 80%;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .photo-indicators {
    bottom: 120px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
  }
  
  .nav-links a {
    margin: 15px 0;
    font-size: 1.2rem;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .description {
    max-width: 90%;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .cta-primary, .cta-secondary {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .tagline {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .description {
    font-size: 0.9rem;
    max-width: 100%;
  }
  
  .zanni {
    font-size: 1.5rem;
  }
  
  .media {
    font-size: 0.8rem;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .photo-indicators {
    bottom: 80px;
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .hero-section {
    height: auto;
    color: #000;
    background: #fff !important;
  }
  
  .background-slideshow, .overlay, .mobile-menu-btn, .scroll-indicator, .photo-indicators {
    display: none !important;
  }
  
  .hero-content {
    padding: 20px 0;
  }
  
  .hero-text h1 {
    color: #000;
    text-shadow: none;
  }
  
  .cta-buttons {
    display: none;
  }
}

/*---------------------------------------------------Services-----------------------------------------*/
/* ===== BASE STYLES ===== */
:root {
    --primary: #FF7F00;
    --primary-dark: #E67100;
    --secondary: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-opacity: 0.9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-gray);
    opacity: var(--text-opacity);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 127, 0, 0.2);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 127, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    opacity: var(--text-opacity);
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== CTA BUTTON ===== */
.cta-container {
    text-align: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 127, 0, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/*-----------------------------------------------Gallery------------------------------*/
/* ===== BASE STYLES ===== */
:root {
    --primary: #FF7F00;
    --primary-dark: #E67100;
    --secondary: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-opacity: 0.9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background-color: var(--white);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    opacity: var(--text-opacity);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

/* ===== GALLERY CONTROLS ===== */
.gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background-color: var(--light-gray);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.search-box {
    position: relative;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 127, 0, 0.2);
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    opacity: 0.6;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
}

.gallery-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.05);
}

.category-tag {
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    align-self: flex-start;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .view-btn {
    opacity: 1;
}

.view-btn:hover {
    background-color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .gallery-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .filter-buttons {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/*----------------------------------------------------Testimonials---------------------------------------------*/
/* ===== BASE STYLES ===== */
:root {
    --primary: #FF7F00;
    --primary-dark: #E67100;
    --secondary: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-opacity: 0.9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 20px auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    opacity: var(--text-opacity);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== TESTIMONIALS CONTAINER ===== */
.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-logo {
    width: 80px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.client-details p {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.testimonial-content {
    padding-left: 100px;
}

.rating {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    opacity: var(--text-opacity);
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(255, 127, 0, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ===== TESTIMONIAL CONTROLS ===== */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.control-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding-left: 0;
    }
    
    .testimonial-text::before {
        top: -15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
    
    .client-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .testimonial-controls {
        gap: 15px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
}


/*-----------------------------------------------------Contact Us------------------------------------------*/
/* ===== BASE STYLES ===== */
:root {
    --brand-orange: #FF7F00;
    --brand-orange-dark: #E67100;
    --brand-black: #000000;
    --pure-white: #FFFFFF;
    --light-bg: #F5F5F5;
    --dark-text: #333333;
    --text-fade: 0.9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* ===== CONTACT PROMO SECTION ===== */
.contact-promo-section {
    background-color: var(--brand-black);
    color: var(--pure-white);
    padding: 80px 0;
    position: relative;
}

.contact-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/back.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: var(--text-fade);
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.option-icon {
    width: 50px;
    height: 50px;
    background-color: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.option-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.option-details a, .option-details p {
    color: var(--pure-white);
    opacity: var(--text-fade);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.option-details a:hover {
    opacity: 1;
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-action-btn {
    background-color: var(--brand-orange);
    color: var(--pure-white);
}

.main-action-btn:hover {
    background-color: var(--brand-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.3);
}

.secondary-action-btn {
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.secondary-action-btn:hover {
    background-color: var(--pure-white);
    color: var(--brand-black);
    transform: translateY(-3px);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    color: var(--brand-black);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--dark-text);
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: var(--pure-white);
    padding: 0 5px;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 2px rgba(255, 127, 0, 0.2);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label,
.input-group select:focus + label,
.input-group select:not([value=""]) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    opacity: 1;
    color: var(--brand-orange);
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--brand-orange);
    color: var(--pure-white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-action-btn:hover {
    background-color: var(--brand-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.3);
}

.submit-action-btn i {
    transition: transform 0.3s ease;
}

.submit-action-btn:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-promo-content {
        text-align: center;
    }
    
    .contact-options {
        align-items: center;
    }
    
    .contact-option {
        max-width: 400px;
    }
    
    .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-promo-section {
        padding: 60px 0;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
    
    .contact-subheading {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-promo-section {
        padding: 40px 0;
    }
    
    .contact-heading {
        font-size: 1.8rem;
    }
    
    .contact-option {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .contact-form-section {
        padding: 20px;
    }
}

/*--------------------------------------------------------Footer----------------------------------*/
/* ===== BASE VARIABLES ===== */
:root {
    --zmh-orange: #FF7F00;
    --zmh-orange-dark: #E67100;
    --zmh-black: #000000;
    --zmh-white: #FFFFFF;
    --zmh-light-gray: #F5F5F5;
    --zmh-dark-gray: #333333;
    --text-opacity: 0.9;
}

/* ===== FOOTER STYLES ===== */
.zmh-footer {
    background-color: var(--zmh-black);
    color: var(--zmh-white);
    padding: 60px 0 0;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 25px;
}

.logo-img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.footer-about p {
    margin-bottom: 25px;
    opacity: var(--text-opacity);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--zmh-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--zmh-orange);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--zmh-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--zmh-white);
    text-decoration: none;
    opacity: var(--text-opacity);
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--zmh-orange);
    opacity: 1;
    padding-left: 10px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--zmh-orange);
}

.footer-links a:hover::before {
    left: -10px;
    opacity: 1;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--zmh-orange);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact a {
    color: var(--zmh-white);
    text-decoration: none;
    opacity: var(--text-opacity);
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--zmh-orange);
    opacity: 1;
    text-decoration: underline;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    opacity: var(--text-opacity);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--zmh-white);
    text-decoration: none;
    opacity: var(--text-opacity);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--zmh-orange);
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--zmh-orange);
    color: var(--zmh-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--zmh-orange-dark);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-title {
        margin-bottom: 15px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/*--------------------------------------------------------------------Services----------------------------------*/
/* Variables */
:root {
    --zmh-black: #000000;
    --zmh-orange: #FF7F00;
    --zmh-white: #FFFFFF;
    --zmh-light-gray: #F5F5F5;
    --zmh-dark-gray: #333333;
    --zmh-divider: #DDDDDD;
}

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--zmh-black);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header */
.zmh-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--zmh-divider);
}

.zmh-header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zmh-orange);
}

.zmh-nav {
    display: flex;
    gap: 30px;
}

.zmh-nav__link {
    text-decoration: none;
    color: var(--zmh-black);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.zmh-nav__link:hover, .zmh-nav__link.active {
    color: var(--zmh-orange);
}

/* Breadcrumb */
.zmh-breadcrumb {
    padding: 15px 40px;
    background-color: var(--zmh-light-gray);
    font-size: 0.9rem;
}

.zmh-breadcrumb a {
    color: var(--zmh-black);
    text-decoration: none;
}

.zmh-breadcrumb span {
    color: var(--zmh-orange);
    font-weight: 500;
}

/* Services Sections */
.zmh-services {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.zmh-service-category {
    margin-bottom: 60px;
}

.zmh-service-category__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--zmh-black);
}

.zmh-service-category__divider {
    height: 2px;
    width: 50px;
    background-color: var(--zmh-orange);
    margin: 20px 0;
}

.zmh-service-category__description {
    color: var(--zmh-dark-gray);
    margin-bottom: 30px;
    max-width: 800px;
}

.zmh-service-category__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.zmh-service-item {
    border: 1px solid var(--zmh-divider);
    padding: 25px;
    transition: all 0.3s ease;
}

.zmh-service-item:hover {
    border-color: var(--zmh-orange);
    transform: translateY(-5px);
}

.zmh-service-item h3 {
    font-size: 1.2rem;
    margin-top: 0;
    color: var(--zmh-black);
}

.zmh-service-item p {
    color: var(--zmh-dark-gray);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .zmh-header {
        flex-direction: column;
        padding: 20px;
    }
    
    .zmh-nav {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .zmh-services, .zmh-breadcrumb {
        padding: 0 20px;
    }
    
    .zmh-service-category__items {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------CTA Section------------------------------------*/
/* CTA Section */
.zmh-cta {
    background-color: var(--zmh-light-gray);
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid var(--zmh-divider);
}

.zmh-cta__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.zmh-cta__heading {
    font-size: 1.8rem;
    color: var(--zmh-black);
    margin-bottom: 15px;
}

.zmh-cta__text {
    color: var(--zmh-dark-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.zmh-cta__button {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--zmh-orange);
    color: var(--zmh-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zmh-cta__button:hover {
    background-color: #e67100;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .zmh-cta {
        padding: 40px 0;
    }
    
    .zmh-cta__heading {
        font-size: 1.5rem;
    }
    
    .zmh-cta__text {
        font-size: 1rem;
    }
    
    .zmh-cta__button {
        padding: 12px 25px;
    }
}

@keyframes zmh-pulse {
    0% {
        transform: translateY(-3px) scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    100% {
        transform: translateY(-3px) scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/*-------------------------------------------------------Pricing Section------------------------------------------------*/
/* Variables */
:root {
    --zmh-primary: #FF7F00;
    --zmh-secondary: #000000;
    --zmh-white: #FFFFFF;
    --zmh-light-gray: #F5F5F5;
    --zmh-dark-gray: #333333;
    --zmh-highlight: #FFF5EB;
}

/* Pricing Section */
.zmh-pricing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.zmh-pricing__header {
    text-align: center;
    margin-bottom: 40px;
}

.zmh-pricing__title {
    font-size: 2.2rem;
    color: var(--zmh-secondary);
    margin-bottom: 10px;
}

.zmh-pricing__subtitle {
    color: var(--zmh-dark-gray);
    font-size: 1.1rem;
}

/* Tabs */
.zmh-pricing__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.zmh-pricing__tab {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--zmh-dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zmh-pricing__tab--active,
.zmh-pricing__tab:hover {
    color: var(--zmh-primary);
    border-bottom-color: var(--zmh-primary);
}

/* Packages Grid */
.zmh-pricing__packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.zmh-pricing__package {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    background-color: var(--zmh-white);
}

.zmh-pricing__package--highlight {
    border: 2px solid var(--zmh-primary);
    background-color: var(--zmh-highlight);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zmh-pricing__package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.zmh-pricing__package-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--zmh-primary);
    line-height: 1;
}

.zmh-pricing__package-duration {
    display: block;
    color: var(--zmh-dark-gray);
    margin: 5px 0;
    font-size: 0.9rem;
}

.zmh-pricing__package-name {
    margin: 0;
    font-size: 1.3rem;
    color: var(--zmh-secondary);
}

.zmh-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.zmh-pricing__features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: var(--zmh-dark-gray);
}

.zmh-pricing__features li:last-child {
    border-bottom: none;
}

.zmh-pricing__button {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: var(--zmh-primary);
    color: var(--zmh-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zmh-pricing__button:hover {
    background-color: #e67100;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Pricing Note */
.zmh-pricing__note {
    text-align: center;
    color: var(--zmh-dark-gray);
    font-size: 0.9rem;
    margin-bottom: 40px;
    padding: 15px;
    background-color: var(--zmh-light-gray);
    border-radius: 4px;
}

/* Custom Package CTA */
.zmh-pricing__custom {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--zmh-light-gray);
    border-radius: 8px;
}

.zmh-pricing__custom-title {
    font-size: 1.5rem;
    color: var(--zmh-secondary);
    margin-bottom: 10px;
}

.zmh-pricing__custom-text {
    color: var(--zmh-dark-gray);
    margin-bottom: 20px;
}

.zmh-pricing__custom-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--zmh-secondary);
    color: var(--zmh-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zmh-pricing__custom-button:hover {
    background-color: var(--zmh-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .zmh-pricing__packages {
        grid-template-columns: 1fr;
    }
    
    .zmh-pricing__package--highlight {
        transform: none;
    }
    
    .zmh-pricing__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

/* Service Group Styling */
.zmh-pricing__service-group {
    margin-bottom: 60px;
}

.zmh-pricing__service-title {
    font-size: 1.5rem;
    color: var(--zmh-secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--zmh-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Package Header Adjustments */
.zmh-pricing__package-header h4 {
    margin: 10px 0 0;
    font-size: 1.1rem;
    color: var(--zmh-dark-gray);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .zmh-pricing__service-group {
        margin-bottom: 40px;
    }
    
    .zmh-pricing__service-title {
        font-size: 1.3rem;
    }
}

/* Table Styles */
.zmh-pricing__table-container {
    overflow-x: auto;
    margin: 30px 0;
}

.zmh-pricing__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.zmh-pricing__table th,
.zmh-pricing__table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.zmh-pricing__table th {
    background-color: var(--zmh-primary);
    color: white;
    font-weight: 600;
}

.zmh-pricing__table-category td {
    background-color: var(--zmh-light-gray);
    font-weight: 600;
    color: var(--zmh-secondary);
}

.zmh-pricing__table-button {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--zmh-primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.zmh-pricing__table-button:hover {
    background-color: #e67100;
}

/* Hourly Rate Packages */
.zmh-pricing__package--hourly .zmh-pricing__package-header {
    background-color: #f9f9f9;
    border-bottom: 2px solid var(--zmh-primary);
}

/* Responsive Tables */
@media (max-width: 768px) {
    .zmh-pricing__table th,
    .zmh-pricing__table td {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

/* Music Video Specific Styles */
.zmh-pricing__package--highlight .zmh-pricing__package-header {
    background-color: var(--zmh-highlight);
    border-left: 4px solid var(--zmh-primary);
}

.zmh-pricing__package-custom {
    border: 2px dashed var(--zmh-primary);
}

.zmh-pricing__package-custom .zmh-pricing__package-header {
    background-color: #f9f9f9;
}

/* Custom Price Tag */
.zmh-pricing__package-price[data-price="custom"] {
    font-style: italic;
    color: var(--zmh-primary);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .zmh-pricing__service-group {
        margin-bottom: 30px;
    }
    
    .zmh-pricing__packages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/*----------------------------------------------Portfolio------------------------------------------------*/
/* Variables */
:root {
    --zmh-primary: #FF7F00;
    --zmh-secondary: #000000;
    --zmh-white: #FFFFFF;
    --zmh-light-gray: #F5F5F5;
    --zmh-dark-gray: #333333;
}

/* Filter Navigation */
.zmh-portfolio-nav {
    padding: 2rem 0;
    background-color: var(--zmh-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.zmh-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

.zmh-filter-btn {
    padding: 10px 20px;
    border: none;
    background-color: var(--zmh-light-gray);
    color: var(--zmh-dark-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-size: 0.9rem;
}

.zmh-filter-btn:hover,
.zmh-filter-btn.active {
    background-color: var(--zmh-primary);
    color: var(--zmh-white);
}

/* Gallery Grid */
.zmh-portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.zmh-portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

.zmh-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zmh-portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--zmh-white);
    padding: 20px;
    transition: bottom 0.3s ease;
}

.zmh-portfolio-item:hover .zmh-portfolio-overlay {
    bottom: 0;
}

.zmh-portfolio-item:hover img {
    transform: scale(1.05);
}

.zmh-portfolio-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
}

.zmh-portfolio-overlay p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.zmh-view-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--zmh-primary);
    color: var(--zmh-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.zmh-view-btn:hover {
    background-color: var(--zmh-white);
    color: var(--zmh-primary);
}

/* Responsive Design */
@media (max-width: 900px) {
    .zmh-portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 600px) {
    .zmh-portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .zmh-filter-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .zmh-filter-btn {
        flex-shrink: 0;
    }
}


/*-------------------------------------------------Video Setion--------------------------------------------------------------------------*/
/* Video Showcase Section */
.zmh-video-showcase {
    background-color: var(--zmh-light-gray);
    padding: 60px 20px;
    margin-top: 40px;
}

.zmh-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.zmh-section-header h2 {
    font-size: 2rem;
    color: var(--zmh-secondary);
    margin-bottom: 10px;
}

.zmh-section-header p {
    color: var(--zmh-dark-gray);
    font-size: 1.1rem;
}

.zmh-video-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.zmh-video-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.zmh-video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
}

.zmh-video-wrapper video,
.zmh-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.zmh-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.zmh-video-overlay h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.zmh-play-button {
    width: 60px;
    height: 60px;
    background-color: var(--zmh-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.zmh-video-wrapper:hover .zmh-video-overlay {
    opacity: 0;
}

.zmh-video-info {
    padding: 20px;
    background-color: white;
}

.zmh-video-info h3 {
    margin: 0 0 5px 0;
    color: var(--zmh-secondary);
}

.zmh-video-info p {
    margin: 0;
    color: var(--zmh-dark-gray);
}

.zmh-video-cta {
    text-align: center;
    margin-top: 40px;
}

.zmh-video-cta p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.zmh-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: #FF0000; /* YouTube red */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.zmh-cta-button:hover {
    background-color: #CC0000;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .zmh-video-grid {
        grid-template-columns: 1fr;
    }
    
    .zmh-section-header h2 {
        font-size: 1.7rem;
    }
}

/* Variables */
:root {
    --zmh-primary: #FF7F00;
    --zmh-white: #FFFFFF;
    --zmh-black: #000000;
    --zmh-text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* CTA Section */
.zmh-cta-section {
    position: relative;
    height: 400px;
   background: url('images/front\ 2.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.zmh-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.zmh-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--zmh-white);
}

.zmh-cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: var(--zmh-text-shadow);
}

.zmh-cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: var(--zmh-text-shadow);
}

.zmh-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--zmh-primary);
    color: var(--zmh-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-shadow: none;
}

.zmh-cta-button:hover {
    background-color: var(--zmh-white);
    color: var(--zmh-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .zmh-cta-section {
        height: 300px;
    }
    
    .zmh-cta-title {
        font-size: 2rem;
    }
    
    .zmh-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .zmh-cta-title {
        font-size: 1.7rem;
    }
    
    .zmh-cta-text {
        font-size: 1rem;
    }
}

/*-------------------------------------------------------About Us----------------------------------------------*/
/* General Styles */
.about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 50px;
    position: relative;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF7F00;
    margin: 15px auto 0;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #FF7F00;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-event {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.timeline-event.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-event::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid #FF7F00;
    border-radius: 50%;
    top: 30px;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.event-content {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.event-content h3 {
    color: #FF7F00;
    margin-top: 0;
}

.event-date {
    position: absolute;
    top: -15px;
    background-color: #FF7F00;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.left .event-date {
    right: 20px;
}

.right .event-date {
    left: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 31px;
    }
    
    .timeline-event {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-event.right {
        left: 0;
    }
    
    .timeline-event::after {
        left: 21px !important;
    }
    
    .left .event-date, 
    .right .event-date {
        left: 70px;
        right: auto;
    }
}


/* Mission & Vision Section Styles */
.mission-vision-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.mission-vision-section h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 50px;
    position: relative;
}

.mission-vision-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF7F00;
    margin: 15px auto 0;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.mission-card::before {
    background-color: #FF7F00;
}

.vision-card::before {
    background-color: #333;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.card h3 {
    color: #FF7F00;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.card-content p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        max-width: 100%;
    }
    
    .mission-vision-section h2 {
        font-size: 2rem;
    }
}


/* Core Values Section Styles */
.core-values-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.core-values-section h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 50px;
    position: relative;
}

.core-values-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF7F00;
    margin: 15px auto 0;
}

.values-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.integrity {
    border-color: #3498db;
}

.creativity {
    border-color: #FF7F00;
}

.customer {
    border-color: #2ecc71;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.value-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Organizational Chart Styles */
.org-chart-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    overflow-x: auto;
}

.org-chart-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 50px;
    position: relative;
}

.org-chart-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF7F00;
    margin: 15px auto 0;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.level {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.top-level {
    margin-bottom: 60px;
}

.middle-level {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.bottom-level {
    display: flex;
    justify-content: center;
}

.position {
    background: white;
    border: 2px solid #FF7F00;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.position:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background-color: #FF7F00;
    color: white;
}

.ceo {
    background-color: #FF7F00;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.creative, .operations {
    background-color: #333;
    color: white;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
}

.connector {
    position: absolute;
    background-color: #FF7F00;
    width: 2px;
    height: 40px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.middle-level .connector {
    height: 60px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .values-container {
        flex-direction: column;
        align-items: center;
    }
    
    .value-card {
        max-width: 100%;
    }
    
    .middle-level {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .position {
        margin: 10px 0;
    }
    
    .connector {
        height: 30px;
    }
    
    .middle-level .connector {
        height: 40px;
    }
}

/* Studio Location Section Styles */
.studio-location-section {
    padding: 80px 20px;
    background-color: white;
}

.studio-location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 50px;
    position: relative;
}

.studio-location-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF7F00;
    margin: 15px auto 0;
}

.location-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.studio-image-container {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.studio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.view-gallery-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px;
    background-color: #FF7F00;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.view-gallery-btn:hover {
    background-color: #e67100;
    transform: translateX(-50%) scale(1.05);
}

.studio-info {
    flex: 1;
    padding: 20px;
}

.studio-info h3 {
    color: #FF7F00;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.address, .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #FF7F00;
}

.description p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info {
    margin: 25px 0;
}

.directions-btn {
    padding: 12px 25px;
    background-color: transparent;
    color: #FF7F00;
    border: 2px solid #FF7F00;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background-color: #FF7F00;
    color: white;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }
    
    .studio-image-container {
        width: 100%;
        min-height: 300px;
    }
    
    .studio-info {
        padding: 20px 0;
    }
}

/*-------------------------------------------Mobile view---------------------------------------------*/
/* Base Styles */
:root {
    --zmh-orange: #FF7F00;
    --zmh-black: #000000;
    --zmh-white: #FFFFFF;
    --zmh-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */
.zmh-header {
    background-color: var(--zmh-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.zmh-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.zmh-header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zmh-orange);
    text-decoration: none;
}

/* Mobile Menu Button */
.zmh-header__menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--zmh-orange);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Navigation Styles */
.zmh-nav__list {
    display: flex;
    list-style: none;
}

.zmh-nav__item {
    margin-left: 2rem;
}

.zmh-nav__link {
    text-decoration: none;
    color: var(--zmh-black);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.zmh-nav__link:hover {
    color: var(--zmh-orange);
}

.zmh-nav__link.active {
    color: var(--zmh-orange);
}

.zmh-nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--zmh-orange);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .zmh-header__container {
        padding: 1rem;
    }
    
    .zmh-header__menu-btn {
        display: block;
    }
    
    .zmh-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--zmh-white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding-top: 5rem;
        z-index: 1000;
    }
    
    .zmh-nav.active {
        right: 0;
    }
    
    .zmh-nav__list {
        flex-direction: column;
        padding: 0 2rem;
    }
    
    .zmh-nav__item {
        margin: 1rem 0;
    }
    
    .zmh-nav__link {
        font-size: 1.1rem;
    }
    
    /* Animate menu icon to X when active */
    .zmh-header__menu-btn.active .menu-icon:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .zmh-header__menu-btn.active .menu-icon:nth-child(2) {
        opacity: 0;
    }
    
    .zmh-header__menu-btn.active .menu-icon:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/*--------------------------------------------------Contact Us----------------------------------------------------------*/
/* Contact Page Variables */
:root {
    --zmh-primary: #FF7F00;
    --zmh-dark: #000000;
    --zmh-light: #FFFFFF;
    --zmh-muted: #333333;
    --zmh-bg: #f5f5f5;
    --zmh-error: #e74c3c;
}

/* Base Styles */
.zmh-contact-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.zmh-contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.zmh-contact-title {
    font-size: 2.5rem;
    color: var(--zmh-primary);
    margin-bottom: 1rem;
}

.zmh-contact-subtext {
    max-width: 600px;
    margin: 0 auto;
    color: var(--zmh-muted);
}

/* Main Content Layout */
.zmh-contact-main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: var(--zmh-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.zmh-contact-form {
    flex: 1;
    min-width: 300px;
}

.zmh-contact-details {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

/* Form Styles */
.zmh-form-field {
    margin-bottom: 1.5rem;
}

.zmh-input-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--zmh-muted);
}

.zmh-text-input,
.zmh-select-input,
.zmh-textarea-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.zmh-text-input:focus,
.zmh-select-input:focus,
.zmh-textarea-input:focus {
    outline: none;
    border-color: var(--zmh-primary);
}

.zmh-textarea-input {
    resize: vertical;
    min-height: 120px;
}

.zmh-error-msg {
    color: var(--zmh-error);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.zmh-submit-btn {
    background-color: var(--zmh-primary);
    color: var(--zmh-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.zmh-submit-btn:hover {
    background-color: #e67100;
}

/* Contact Details Styles */
.zmh-details-title {
    color: var(--zmh-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.zmh-contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.zmh-contact-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--zmh-primary);
}

.zmh-social-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.zmh-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--zmh-bg);
    border-radius: 50%;
    transition: all 0.3s;
}

.zmh-social-link:hover {
    background-color: var(--zmh-primary);
    color: var(--zmh-light);
}

/* Modal Styles */
.zmh-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.zmh-modal-box {
    background-color: var(--zmh-light);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.zmh-modal-title {
    color: var(--zmh-primary);
    margin-bottom: 1rem;
}

.zmh-close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--zmh-muted);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .zmh-contact-main {
        flex-direction: column;
    }
    
    .zmh-contact-form,
    .zmh-contact-details {
        width: 100%;
    }
}

/* Location and Social Media Section */
.visualLocationSocialBlock {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sectionHeaderText {
    color: #FF7F00;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
}

.sectionHeaderText::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #FF7F00;
    margin: 0.8rem auto 0;
}

/* Map Styles */
.geoMapDisplay {
    flex: 2;
    min-width: 300px;
}

.interactiveMapFrame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.interactiveMapFrame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Media Styles */
.digitalConnectPlatforms {
    flex: 1;
    min-width: 250px;
}

.socialPlatformLinks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.socialMediaButton {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.socialMediaButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.socialMediaButton i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    margin-right: 1rem;
}

.platformName {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Platform Specific Colors */
.fbPlatform {
    background-color: #3b5998;
}

.igPlatform {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.twPlatform {
    background-color: #1da1f2;
}

.drivePlatform {
    background-color: #4285F4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .visualLocationSocialBlock {
        flex-direction: column;
    }
    
    .geoMapDisplay,
    .digitalConnectPlatforms {
        width: 100%;
    }
    
    .socialPlatformLinks {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .socialMediaButton {
        flex: 1;
        min-width: 160px;
        justify-content: center;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .socialMediaButton {
        min-width: 140px;
        font-size: 0.9rem;
    }
    
    .socialMediaButton i {
        margin-right: 0.6rem;
    }
}