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

body {
  font-family: "Lora", serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Text Selection Styling */
::selection {
  background-color: #d4a44b;
  color: white;
}

::-moz-selection {
  background-color: #d4a44b;
  color: white;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: #fff;
  backdrop-filter: blur(10px);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

/* Logo Styles */
.logo img {
  height: 40px;
  transition: all 0.3s ease;
}

/* Navigation Styles */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  font-family: "Playfair Display", serif;
}

.header.scrolled .nav-link {
  color: #333;
}

/* Glowing Underline Animation */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4a44b, #f4d03f);
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(212, 164, 75, 0.5);
}

.nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 15px rgba(212, 164, 75, 0.8);
}

.nav-link:hover {
  color: #d4a44b;
}

.header.scrolled .nav-link:hover {
  color: #d4a44b;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 1rem 0;
  margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Lora", serif;
  position: relative;
}

.dropdown-link:hover {
  background-color: #f8f9fa;
  color: #d4a44b;
  padding-left: 2rem;
}

/* Glowing Underline Animation for Dropdown Links */
.dropdown-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 1.5rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4a44b, #f4d03f);
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(212, 164, 75, 0.5);
}

.dropdown-link:hover::after {
  width: calc(100% - 3rem);
  box-shadow: 0 0 15px rgba(212, 164, 75, 0.8);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.header.scrolled .mobile-toggle span {
  background: #333;
}

/* Main Content */
.main-content {
  margin-top: 72px;
}

/* Hero Section */
.hero {
  height: 94.5dvh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.hero-content {
  max-width: 1200px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
  background: linear-gradient(45deg, #d4a44b, #f4d03f);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(212, 164, 75, 0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 164, 75, 0.4);
}

/* Content Section */
.content-section {
  padding: 5rem 0;
  background: white;
}

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

.content-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.content-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #d4a44b;
  box-shadow: 0 10px 30px rgba(212, 164, 75, 0.1);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.privacy-link {
  color: #d4a44b;
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-link:hover {
  color: #f4d03f;
  text-shadow: 0 0 5px rgba(212, 164, 75, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .header-container {
    height: 80px;
    padding: 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

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

  .nav-link {
    color: #333;
    font-size: 1.2rem;
    padding: 1rem 0;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    margin: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    width: 100%;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-link {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0e0e0;
  }

  .dropdown-link:last-child {
    border-bottom: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .content-section h2 {
    font-size: 2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
/* Font Awesome Icon Styles */
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link i {
  font-size: 0.9rem;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-link i {
  font-size: 0.8rem;
  width: 16px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #d4a44b;
  box-shadow: 0 15px 40px rgba(212, 164, 75, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: #d4a44b;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

/* Services Section */
.services-section {
  background: #f8f9fa;
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #d4a44b;
  box-shadow: 0 15px 40px rgba(212, 164, 75, 0.2);
}

.service-detail {
  margin: 4rem 0;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-content.reverse {
  grid-template-columns: 1fr 2fr;
}

.service-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-text h3 i {
  color: #d4a44b;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features i {
  color: #d4a44b;
  font-size: 0.9rem;
}

.service-icon-large {
  text-align: center;
}

.service-icon-large i {
  font-size: 8rem;
  color: #d4a44b;
  opacity: 0.5;
}

/* Technologies Section */
.tech-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 4rem 0;
}

.tech-section h2 {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

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

.tech-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tech-item:hover {
  background: rgba(212, 164, 75, 0.2);
  transform: translateY(-5px);
}

.tech-item i {
  font-size: 2rem;
  color: #d4a44b;
}

/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 5rem 0;
}

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

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #d4a44b;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 164, 75, 0.1);
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4a44b;
  font-weight: 600;
}

.testimonial-author i {
  font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.contact-section h2 {
  color: white;
  margin-bottom: 2rem;
}

.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.contact-item i {
  color: #d4a44b;
  font-size: 1.2rem;
}

.contact-cta {
  margin-top: 2rem;
}

/* Enhanced Footer */
.footer {
  background: #1a252f;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-main {
  margin-bottom: 3rem;
}

.footer-main h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #d4a44b;
  margin-bottom: 1rem;
}

.footer-main p {
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #bbb;
}

.footer-services h4 {
  color: #d4a44b;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.footer-service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-service-tags span {
  background: rgba(212, 164, 75, 0.1);
  color: #d4a44b;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-contact {
  margin-top: 2rem;
}

.contact-details {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: justify;
}

.footer-bottom p {
  margin: 0;
  flex: 1;
}

.footer-links {
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links .privacy-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

/* Glowing Underline Animation for Footer Links */
.footer-links .privacy-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4a44b, #f4d03f);
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(212, 164, 75, 0.5);
}

.footer-links .privacy-link:hover::after {
  width: 100%;
  box-shadow: 0 0 15px rgba(212, 164, 75, 0.8);
}

/* Responsive Updates */
@media (max-width: 768px) {
  .footer-main {
    margin-bottom: 0rem;
  }

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

  .service-content,
  .service-content.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-icon-large i {
    font-size: 4rem;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

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

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-service-tags {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

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

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-detail {
    padding: 2rem 1rem;
  }

  .footer-service-tags span {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
/* Dropdown Arrow Animation */
.dropdown-arrow {
  transition: transform 0.3s ease;
  margin-left: 0.5rem;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* ===== NEW RESPONSIVE MOBILE MENU ===== */

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header.scrolled .hamburger-line {
  background: #333;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
  position: absolute;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100vh;
  background: white;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
  left: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mobile-logo {
  height: 35px;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close-btn:hover {
  background: #f0f0f0;
  color: #d4a44b;
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  padding: 1rem 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Lora", serif;
}

.mobile-nav-link:hover {
  background: #f8f9fa;
  color: #d4a44b;
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
  justify-content: space-between;
}

.mobile-dropdown-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: #666 !important;
  width: auto !important;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(90deg);
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f8f9fa;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 400px;
}

.mobile-dropdown-link {
  display: block;
  padding: 0.875rem 3rem;
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-dropdown-link:hover {
  background: #e9ecef;
  color: #d4a44b;
}

.mobile-dropdown-menu li:last-child .mobile-dropdown-link {
  border-bottom: none;
}

/* Mobile Contact Section */
.mobile-contact-section {
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
  background: #f8f9fa;
}

.mobile-contact-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.mobile-contact-info {
  margin-bottom: 1.5rem;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #666;
  font-size: 0.9rem;
}

.mobile-contact-item i {
  color: #d4a44b;
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

/* Mobile Social Section */
.mobile-social-section h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.mobile-social-links {
  display: flex;
  gap: 0.75rem;
}

.mobile-social-link {
  width: 40px;
  height: 40px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.mobile-social-link:hover {
  border-color: #d4a44b;
  color: #d4a44b;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: none;
  }

  /* Show mobile menu button */
  .mobile-menu-btn {
    display: flex;
  }

  /* Adjust mobile menu for smaller screens */
  .mobile-menu {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100%;
  }

  .mobile-menu-header {
    padding: 0.875rem 1rem;
  }

  .mobile-nav-link {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .mobile-dropdown-link {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }

  .mobile-contact-section {
    padding: 1rem;
  }
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
