/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

:root {
  --primary-green: #1a3629;
  --secondary-green: #2d5843;
  --accent-yellow: #fbbf24;
  --dark-green: #0f2419;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --border-color: #e5e7eb;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top-color: var(--accent-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-green);
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 54, 41, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  z-index: 1001;
}

/* Added styles for logo image */
.logo-image {
  height: 70px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-image {
  transform: scale(1.05);
}
/* </CHANGE> */

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-yellow);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.logo-text {
  color: var(--white);
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-yellow);
}

.btn-contact {
  background: var(--white);
  color: var(--primary-green);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: var(--accent-yellow);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  background: transparent;
  border: none;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-green);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-highlight {
  color: var(--accent-yellow);
}

.hero-description {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

/* Enhanced button styling with animations and hover effects */
.btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(26, 54, 41, 0.3);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: rotate(15deg) scale(1.2);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(26, 54, 41, 0.2);
}

.btn-yellow {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
  color: var(--primary-green);
  border: 2px solid transparent;
  font-weight: 700;
}

.btn-yellow:hover {
  background: linear-gradient(135deg, #f59e0b 0%, var(--accent-yellow) 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.btn-yellow i {
  transition: transform 0.3s ease;
}

.btn-yellow:hover i {
  transform: translateX(5px);
}

.badge-success {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.hero-right {
  flex: 1;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: var(--accent-yellow);
  border-radius: 50%;
  z-index: 1;
}

.hero-image {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
  border-radius: 20px;
}

.service-categories {
  background: var(--accent-yellow);
  padding: 40px 0;
  /* Add overflow-x auto for mobile horizontal scroll */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.categories-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  /* Set minimum width to prevent squishing on mobile */
  min-width: max-content;
  gap: 20px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-green);
  cursor: pointer;
  transition: all 0.3s ease;
  /* Prevent shrinking on mobile */
  flex-shrink: 0;
  white-space: nowrap;
}

.services-section {
  padding: 100px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Service link "Learn more" styling */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.service-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: width 0.3s ease;
}

.service-link:hover::after {
  width: 100%;
}

.service-link:hover {
  color: var(--primary-green);
  transform: translateX(5px);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.about-section-home {
  background: var(--primary-green);
  padding: 100px 0;
  color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 5px;
}

/* View All Services button styling */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--accent-yellow);
  color: var(--primary-green);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-view-all:hover {
  background: var(--primary-green);
  color: var(--accent-yellow);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(26, 54, 41, 0.3);
}

.btn-view-all i {
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

.tools-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.tool-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Adding custom Adobe icon styles for XD, Illustrator, and Photoshop */
.tool-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.adobe-xd-icon,
.adobe-ai-icon,
.adobe-ps-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: currentColor;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.tool-item:hover .adobe-xd-icon,
.tool-item:hover .adobe-ai-icon,
.tool-item:hover .adobe-ps-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.adobe-icon-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  letter-spacing: -1px;
}

.tool-item:hover .tool-icon i {
  transform: scale(1.1);
}

.tool-progress {
  margin-bottom: 15px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-yellow) 0%, #f59e0b 100%);
  border-radius: 10px;
  transition: width 1s ease;
  width: 0;
}

.progress-text {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 14px;
}

.tool-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  margin: 0;
}

/* Signature "Little Dennis" styling */
.signature {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
}

.signature-text {
  font-family: "Brush Script MT", cursive;
  font-size: 32px;
  color: var(--accent-yellow);
  font-weight: 400;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.signature:hover .signature-text {
  transform: scale(1.1);
  color: #fcd34d;
}

/* Enhanced footer styling with animated elements */
.footer {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-yellow) 0%, #f59e0b 50%, var(--accent-yellow) 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-left h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-left p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 16px;
}

/* Social links styling */
.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent-yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.social-links a:hover::before {
  width: 100%;
  height: 100%;
}

.social-links a:hover {
  color: var(--primary-green);
  transform: translateY(-8px) scale(1.15) rotate(10deg);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  border-color: var(--accent-yellow);
}

/* Footer links styling */
.footer-links h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-yellow);
  border-radius: 3px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.footer-links ul li a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--accent-yellow);
}

.footer-links ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links ul li a:hover {
  color: var(--accent-yellow);
  padding-left: 10px;
}

/* Newsletter section styling */
.footer-newsletter h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 15px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-yellow);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.newsletter-form button {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
  border: none;
  border-radius: 50%;
  color: var(--primary-green);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.newsletter-form button:hover {
  transform: translateY(-5px) scale(1.1) rotate(15deg);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

.newsletter-form button i {
  transition: transform 0.3s ease;
}

.newsletter-form button:hover i {
  transform: translateX(3px);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.footer-bottom i.fa-heart {
  color: var(--accent-yellow);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  10%,
  30% {
    transform: scale(1.2);
  }
  20%,
  40% {
    transform: scale(1.1);
  }
}

/* Completing alert and contact page styles */
.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
}

/* Contact page styling improvements */
.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  text-align: center;
  color: var(--white);
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-description {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.section-title-contact {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-green);
}

.contact-description {
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--text-gray);
  font-size: 14px;
}

.social-links-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent-yellow);
  color: var(--primary-green);
  transform: translateY(-5px) scale(1.1);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 10px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-yellow);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  margin-top: 10px;
}

.map-section {
  margin-top: -2px;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 0;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3);
}

/* Responsive media queries */
@media (max-width: 968px) {
  .hamburger {
    display: flex !important;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary-green);
    width: 100%;
    transition: left 0.3s ease;
    padding: 20px 0;
    gap: 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .btn-contact {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-categories {
    padding: 30px 0;
  }

  .category-item {
    font-size: 16px;
    gap: 10px;
  }

  .category-item i {
    font-size: 18px;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-title {
    font-size: 36px;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .service-categories {
    padding: 25px 0;
  }

  .categories-wrapper {
    padding: 0 15px;
    gap: 15px;
  }

  .category-item {
    font-size: 14px;
    gap: 8px;
  }

  .category-item i {
    font-size: 16px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-view-all {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    gap: 30px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }
}
