/* Base Styles */
:root {
  --primary-color: #1a5276;
  --secondary-color: #f39c12;
  --accent-color: #e74c3c;
  --light-color: #f5f5f5;
  --dark-color: #2c3e50;
  --text-color: #2c2c2c;
  --text-light: #f8f8f8;
  --text-dark: #2c3e50;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Desktop Styles Only (769px and above) */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  padding-top: 70px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
}

/* Header - Desktop Only */
.header {
  background-color: #2c3a4a;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

/* Logo - Desktop Only */
.logo {
  flex: 0 0 auto;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-icon img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  display: block;
  object-fit: contain;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  color: var(--secondary-color);
  white-space: nowrap;
  line-height: 1.2;
}

.brand-tagline {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

/* Desktop Navigation - Always Visible */
.desktop-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f39c12;
}

.nav-links a.active {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
}

/* Quote Button - Desktop Only */
.quote-nav-item {
  margin-left: 20px;
}

.quote-btn {
  background: #f39c12;
  color: #ffffff !important;
  padding: 15px 35px !important;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 50px;
  line-height: 1.3;
  text-align: center;
}

.quote-btn:hover {
  background: #e67e22;
  border-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

/* Desktop Search Button */
.desktop-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 20px;
  color: #ffffff;
  font-size: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.desktop-search:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
}

/* Search Container - Desktop Only */
.search-container {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid #e1e8ed;
}

.search-container.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-box {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
}

.search-box input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  border-color: var(--secondary-color);
}

.search-close {
  background: transparent;
  border: none;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.search-close:hover {
  background: #f5f5f5;
  color: #333;
}

/* Hero Section - Desktop Only */
.hero {
  background: #2c3a4a;
  color: #fff;
  padding: 100px 0 80px 0;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  transition: background-image 1.5s ease-in-out;
  animation: heroFadeIn 2s ease-in-out;
  margin-top: 0;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
  animation: contentSlideIn 2.5s ease-out;
}

@keyframes contentSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  flex: 1;
  max-width: 60%;
}

.hero-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  max-width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* About eGood Construction Section - Desktop Only */
.about-egood {
  padding: 80px 0;
  background-color: #ffffff;
  margin-top: 0;
}

.about-egood h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
}

.about-egood-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-egood-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 25px;
  text-align: left;
}

.about-egood-content p:last-child {
  margin-bottom: 0;
}

/* About Section - Desktop Only */
.about {
  padding: 60px 0;
}

.about h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.about-text {
  flex: 1.2;
  padding-top: 10px;
}

.about-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Services Section - Desktop Only */
.services {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

.service-card {
  text-align: center;
  padding: 25px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card i,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
}

.service-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--dark-color);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

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

/* Gallery Section - Desktop Only */
.gallery {
  padding: 60px 0;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Contact Section - Desktop Only */
.contact {
  padding: 50px 0;
  background: #f8f9fa;
}

.contact h2 {
  text-align: center;
  margin-bottom: 35px;
  color: var(--dark-color);
  font-size: 2.2rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  background: var(--dark-color);
  color: var(--text-light);
  padding: 20px;
  border-radius: 8px;
  height: fit-content;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #e8e8e8;
}

.contact-item i {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 0.85rem;
}

.contact-item p {
  margin: 0;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--dark-color);
  margin-bottom: 20px;
  text-align: center;
  font-size: 22px;
}

.contact-form form {
  display: grid;
  gap: 18px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
  outline: none;
}

.contact-form textarea {
  height: 180px;
  resize: none;
  min-height: 100px;
}

.contact-form button {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer - Desktop Only */
.footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  align-items: start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.footer-links, .footer-brand, .footer-contact {
  min-width: 0;
  padding: 0 15px;
}

.footer-links {
  text-align: center;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-contact {
  text-align: center;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-logo .brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #d68910;
  white-space: nowrap;
}

.footer-logo .brand-tagline {
  font-size: 20px;
  color: #f0f0f0;
  white-space: nowrap;
}

.footer h3 {
  margin-bottom: 18px;
  color: #d68910;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 0;
  width: 100%;
}

.footer-links ul li {
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.footer-links a {
  color: rgba(248, 248, 248, 0.8);
  transition: all 0.3s ease;
  padding: 4px 0;
  display: block;
  font-size: 0.95rem;
  text-align: center;
  width: 100%;
}

.footer-links a:hover {
  color: #d68910;
  transform: translateX(5px);
}

.footer-contact .btn {
  margin: 12px 0;
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #d68910;
  border: 2px solid #d68910;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.9rem;
}

.footer-contact .btn:hover,
.footer-contact .btn:focus {
  background-color: #d68910;
  color: #f8f8f8;
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(248, 248, 248, 0.1);
  color: #d68910;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover,
.social-links a:focus {
  background-color: #d68910;
  color: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(214, 137, 16, 0.3);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Float - Desktop Only */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  border: 3px solid #ffffff;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  background-color: #128C7E;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  border-color: #25D366;
}

.whatsapp-float i {
  font-size: 28px;
  color: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Email Float Button */
.email-float {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 60px;
  height: 60px;
  background-color: #EA4335;
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(234, 67, 53, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  border: 3px solid #ffffff;
  text-decoration: none;
}

.email-float:hover {
  transform: scale(1.15);
  background-color: #D32F2F;
  box-shadow: 0 6px 25px rgba(234, 67, 53, 0.6);
  border-color: #EA4335;
}

.email-float i {
  font-size: 28px;
  color: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Mobile Menu Toggle - Always Available */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: 20px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  z-index: 1000;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.mobile-drawer-close span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.mobile-drawer-close span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-drawer-close span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-drawer-nav {
  padding: 20px 0;
}

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

.mobile-drawer-links li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-links a {
  display: block;
  padding: 20px 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
  padding-left: 35px;
}

.mobile-drawer-links a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #f39c12;
}

.mobile-cta-item {
  margin-top: 20px;
  padding: 0 30px;
}

.mobile-cta-btn {
  display: block;
  background: #f39c12;
  color: #ffffff !important;
  padding: 15px 25px !important;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

/* Service Navigation - Desktop Only */
.service-nav {
  background-color: #2c3a4a;
  position: sticky;
  top: 70px;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-nav .container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.service-nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.service-nav a:hover {
  background-color: rgba(255,255,255,0.1);
  color: #fff;
}

.service-nav a.active {
  background-color: var(--secondary-color);
  color: #fff;
  font-weight: 600;
  border-color: rgba(255,255,255,0.2);
}

/* Project Gallery - Desktop Only */
.project-gallery {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.project-gallery h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.project-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.project-item {
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-item:hover .project-image img {
  transform: scale(1.05);
}

.project-details {
  flex: 0 0 55%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-details h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.project-details p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.project-specs li {
  font-size: 0.95rem;
  color: #555;
}

.project-specs strong {
  color: var(--primary-color);
  margin-right: 5px;
}

/* Form Message Styles - Desktop Only */
.form-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
}

.form-message.error {
  background-color: #ffe6e6;
  color: #d63031;
  border: 1px solid #ff7675;
}

.form-message.success {
  background-color: #e6ffe6;
  color: #27ae60;
  border: 1px solid #2ecc71;
}

/* Loading Spinner - Desktop Only */
.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Thank You Page - Desktop Only */
.thank-you-section {
  padding: 80px 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.thank-you-content i.fa-check-circle {
  font-size: 64px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.thank-you-content h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 32px;
}

.thank-you-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
}

/* Service Pages - Desktop Only */
.service-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.service-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.service-overview {
  padding: 80px 0;
}

.service-intro h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-item h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

.service-process {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.service-process h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: bold;
}

.step h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

.service-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, var(--primary-color), var(--dark-color));
  color: white;
}

.service-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.service-cta .btn {
  background: var(--secondary-color);
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animation Classes - Desktop Only */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

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

/* Lightbox Styles - Desktop Only */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 1rem;
}