* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: white;
    overflow-x: hidden;
}
       
/* Navigation */
.navbar {
    position: fixed; /* Make it fixed so it stays on top */
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(128, 0, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 95px;
    z-index: 1000;
}
        
.logo img {
    width: 180px;
    height: 60px;
}
        
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}
        
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 20px;
    text-decoration: none;
    white-space: nowrap;
}
        
.nav-link:hover,
.nav-link.active {
    color: #d800d8;
}
        
.search-icon {
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.search-icon:hover{
    color: #d800d8;
}
       


/* Main Content */
.main-content {
    margin-top: 0px;
}
        
/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.4), rgba(216, 0, 216, 0.4));
    padding: 80px 0 60px;
    text-align: center;
}
        
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 80px;
    color: white;
    margin-bottom: 30px;
    
}
        
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
        
/* Contact Section */
.contact-section {
    padding: 80px 0;
    max-width: 1400px;
    margin: 0 auto;
}
        
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 40px;
}
        
/* Contact Info */
.contact-info {
    padding: 40px 0;
}
        
.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #d800d8;
    margin-bottom: 40px;
}
        
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(50, 15, 54, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(128, 0, 128, 0.2);
    transition: border-color 0.3s ease;
}
        
.contact-item:hover {
    border-color: #d800d8;
}
        
.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #800080, #d800d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}
        
.contact-icon {
    font-size: 24px;
    color: white;
}
        
.contact-details {
    flex: 1;
}
        
.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}
        
.contact-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.5;
}
        
.contact-link {
    color: #d800d8;
    text-decoration: none;
    transition: color 0.3s ease;
}
        
.contact-link:hover {
    color: white;
}
        
/* Social Media */
.social-media {
    margin-top: 60px;
}
        
.social-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin-bottom: 30px;
}
        
.social-icons {
    display: flex;
    gap: 20px;
}
        
.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #800080, #d800d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
        
.social-icon:hover {
    transform: scale(1.1);
}
        
/* Contact Form */
.contact-form {
    background: rgba(50, 15, 54, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(128, 0, 128, 0.3);
}
        
.form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}
        
.form-group {
    margin-bottom: 25px;
}
        
.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
    display: block;
}
        
.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(128, 0, 128, 0.3);
    border-radius: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
        
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d800d8;
}
        
.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
        
.form-textarea {
    height: 120px;
    resize: vertical;
}
        
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
        
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #800080, #d800d8);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 10px;
}
        
.submit-btn:hover {
    transform: translateY(-2px);
}
        
/* Office Hours */
.office-hours {
    background: rgba(128, 0, 128, 0.4);
    padding: 60px 0;
    margin: 80px 0;
}
        
.office-hours-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}
        
.office-hours-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: white;
    margin-bottom: 40px;
}
        
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
        
.hours-item {
    padding: 30px 20px;
    background: rgba(128, 0, 128, 0.1);
    border-radius: 15px;
    border: 2px solid #d800d8;
}
        
.hours-day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #d800d8;
    margin-bottom: 10px;
}
        
.hours-time {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #cccccc;
}
    
/* Footer */
.footer {
    background: rgb(128, 0, 128, 0.2);
    padding: 40px 0;
    text-align: center;
}
        
.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #cccccc;
}


@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-line {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
}

/* Staggered delays for each line */
.delay-0 {
  animation-delay: 0.2s;
}
.delay-1 {
  animation-delay: 0.5s;
}


/* Initial hidden state */
.scroll-animate {
  opacity: 0;
  transform: translateY(0); /* Reset default */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Animate from top */
.animate-top {
  transform: translateY(-100px);
}
.animate-top.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Animate from bottom */
.animate-bottom {
  transform: translateY(100px);
}
.animate-bottom.in-view {
  opacity: 1;
  transform: translateY(0);
}
    
/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0 20px;
    height: auto;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(128, 0, 128, 0.9);
    border-radius: 20px;
    padding: 20px 0;
    margin-top: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px 20px;
  }

  .search-icon {
    padding: 10px 20px;
  }

  .service-hero {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 18px;
    padding: 0 15px;
    max-width: 90%;
  }
            
    .contact-container { 
        grid-template-columns: 1fr;
        gap: 40px;
    }
            
    .form-row { 
        grid-template-columns: 1fr;
        gap: 15px;
    }
            
    .contact-info-title { font-size: 30px; }
    .form-title { font-size: 28px; }
    .office-hours-title { font-size: 30px; }
    .map-title { font-size: 30px; }        
    .hours-grid { grid-template-columns: 1fr; }
    }
   