/* GMM IT Solutions - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #1f2d5d;
  --accent-color: #f0b429;
  --text-dark: #333;
  --text-light: #666;
  --background: #ffffff;
  --section-bg: #f8f9fa;
  --border-radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Top Bar Styles */
.topbar {
  background: var(--primary-color);
  color: white;
  font-size: 0.9rem;
  position: relative;
  z-index: 999;
}

.topbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.topbar-left {
  flex: 1;
}

.topbar-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.topbar-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
}

.topbar-item a:hover {
  color: var(--accent-color);
}

.topbar-icon {
  font-size: 1rem;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-social {
  display: flex;
  gap: 0.8rem;
}

.topbar-social-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.topbar-social-link:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  color: var(--primary-color);
}

.topbar-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}



/* Header Styles */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-brand {
  flex: 0 0 auto;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
  transition: var(--transition);
}

.logo-link:hover .logo-text {
  color: var(--accent-color);
}

.tagline {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-top: 0.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

/* Desktop-specific nav styles */
@media (min-width: 769px) {
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0;
    transition: none;
    box-shadow: none;
    z-index: auto;
    overflow: visible;
  }

  .nav-menu a {
    display: inline-block;
    padding: 0.5rem 0;
    font-size: inherit;
    border-bottom: none;
    margin: 0;
    line-height: normal;
  }

  .nav-contact-highlight {
    margin-left: 1rem !important;
    padding: 0.6rem 1.5rem !important;
    text-align: center;
    border-radius: var(--border-radius);
  }

  .nav-link-dropdown {
    padding: 0.5rem 0;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    line-height: normal;
  }
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Highlighted Contact Us Link */
.nav-contact-highlight {
  background: linear-gradient(135deg, var(--accent-color), #e6a526);
  color: var(--primary-color) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(240, 180, 41, 0.3);
  margin-left: 1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-contact-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 180, 41, 0.4);
  color: var(--primary-color) !important;
}

.nav-contact-highlight::after {
  display: none;
}

/* Dropdown Navigation */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: var(--transition);
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-link-dropdown:hover,
.nav-link-dropdown.active {
  color: var(--accent-color);
}

.nav-link-dropdown::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav-link-dropdown:hover::after,
.nav-link-dropdown.active::after {
  width: 100%;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  max-width: 90vw;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow-y: auto;
}

.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
}

.mega-menu-content {
  padding: 1.2rem;
}

.mega-menu-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--accent-color);
}

.mega-menu-header h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.mega-menu-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 0;
}

.mega-menu-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.mega-menu-item:hover {
  background: var(--section-bg);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.mega-item-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), #e6a526);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(240, 180, 41, 0.3);
  padding: 8px;
  box-sizing: border-box;
}

.mega-item-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.mega-item-content h4 {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.mega-item-content p {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.mega-item-link {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.mega-item-link:hover {
  color: var(--primary-color);
}



.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
}

/* Main Content */
main {
  margin-top: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a3d7a 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 180, 41, 0.3);
  background: #e6a526;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--text-light);
}

/* Testimonials */
.testimonials {
  background: var(--section-bg);
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-content {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Modern CTA Section - Complete Revamp */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: floatShapes 20s ease-in-out infinite;
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #f59e0b, #eab308);
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  bottom: -100px;
  left: -100px;
  animation-delay: -7s;
}

.cta-shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #8b5cf6, #7c3aed);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: slideDown 0.8s ease-out;
}

.cta-badge-icon {
  font-size: 1.2rem;
}

.cta-badge-text {
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-headline {
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.cta-headline-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.cta-headline-sub {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 3rem;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.cta-actions {
  animation: slideUp 0.8s ease-out 0.6s both;
}

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
  color: #0f172a;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 
    0 10px 25px rgba(245, 158, 11, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.cta-primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-primary-btn:hover::before {
  left: 100%;
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 35px rgba(245, 158, 11, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-primary-btn:hover .btn-icon {
  transform: translateX(4px);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.95rem;
}

.feature-icon {
  color: #22c55e;
  font-weight: bold;
}

.feature-text {
  font-weight: 500;
}

/* Modern CTA Animations */
@keyframes floatShapes {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  33% { 
    transform: translateY(-20px) rotate(120deg);
    opacity: 0.8;
  }
  66% { 
    transform: translateY(10px) rotate(240deg);
    opacity: 0.4;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Us Page Styles - Revamped Hero */
.about-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: floatHero 25s ease-in-out infinite;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #f59e0b, #eab308);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  bottom: -150px;
  left: -150px;
  animation-delay: -10s;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #8b5cf6, #7c3aed);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -20s;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 30s linear infinite;
}

.hero-main-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: slideDown 1s ease-out;
}

.hero-badge-icon svg {
  width: 16px;
  height: 16px;
  color: #60a5fa;
}

.hero-badge-text {
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-title-section {
  margin-bottom: 3rem;
  animation: slideUp 1s ease-out 0.3s both;
}

.hero-main-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line-1 {
  display: block;
  color: white;
}

.title-line-2 {
  display: block;
}

.gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #eab308 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideUp 1s ease-out 0.6s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.hero-stat .stat-label {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: slideUp 1s ease-out 0.9s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-btn-primary .btn-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-icon svg {
  transform: translate(2px, -2px);
}

.hero-trust {
  animation: slideUp 1s ease-out 1.2s both;
}

.trust-text {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.trust-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-feature svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
}

/* Hero Animations */
@keyframes floatHero {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  33% { 
    transform: translateY(-30px) rotate(120deg);
    opacity: 0.6;
  }
  66% { 
    transform: translateY(15px) rotate(240deg);
    opacity: 0.3;
  }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Company Introduction Section */
.company-intro-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.intro-header {
  text-align: center;
  margin-bottom: 4rem;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.1rem;
}

.badge-text {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.9rem;
}

.intro-main-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.intro-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.intro-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Story Section */
.intro-story {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.story-header h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.story-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 2px;
}

.story-lead {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.story-timeline {
  position: relative;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), #e5e7eb);
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  flex-shrink: 0;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: white;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.timeline-content h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
.intro-values {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.intro-values h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-card {
  background: linear-gradient(135deg, #fef3c7, #fbbf24);
  border-color: #f59e0b;
}

.vision-card {
  background: linear-gradient(135deg, #dbeafe, #3b82f6);
  border-color: #2563eb;
}

.values-card {
  background: linear-gradient(135deg, #f3e8ff, #8b5cf6);
  border-color: #7c3aed;
}

.value-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.value-content h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-content p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.value-tag {
  background: rgba(255, 255, 255, 0.5);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Features Section */
.intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-highlight {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-3px);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.feature-text h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact Page Styles */
.contact-hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.contact-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.contact-hero .hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: floatHero 20s ease-in-out infinite;
}

.contact-hero .hero-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #f59e0b, #eab308);
  top: -150px;
  right: -150px;
}

.contact-hero .hero-shape-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  bottom: -125px;
  left: -125px;
  animation-delay: -10s;
}

.contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.contact-hero .hero-badge-text {
  color: #22c55e;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
  font-size: 1.3rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.hero-quick-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.quick-contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-label {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Contact Main Section */
.contact-main-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.required {
  color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.875rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.25rem;
}

.form-submit-btn {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: var(--primary-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Contact Info Cards */
.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.info-value {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
}

.info-value:hover {
  color: var(--accent-color);
}

/* Business Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item.closed {
  opacity: 0.6;
}

.day {
  color: var(--primary-color);
  font-weight: 600;
}

.time {
  color: var(--text-light);
  font-weight: 500;
}

.hours-item.closed .time {
  color: #ef4444;
}

.emergency-note {
  display: flex;
  gap: 0.75rem;
  background: #fef3c7;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #f59e0b;
}

.emergency-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.emergency-text {
  color: var(--primary-color);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Quick Response */
.response-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.response-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
}

.response-icon {
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.response-content {
  display: flex;
  flex-direction: column;
}

.response-time {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
}

.response-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: white;
}

.map-section h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-placeholder {
  background: #f8fafc;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}

.map-placeholder:hover {
  border-color: var(--accent-color);
  background: #fefbf3;
}

.map-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.map-text h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.map-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.map-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: #f59e0b;
}

/* Stats Section */
.stats-section {
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto;
}

.team-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.team-role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.team-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Advantages Section */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-3px);
}

.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.advantage-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CTA Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-headline-main {
    font-size: 2.5rem;
  }
  
  .cta-headline-sub {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .cta-primary-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-shape-1 {
    width: 200px;
    height: 200px;
  }
  
  .cta-shape-2 {
    width: 150px;
    height: 150px;
  }
  
  .cta-shape-3 {
    width: 100px;
    height: 100px;
  }
  
  /* About Page Mobile Responsive */
  
  /* Company Introduction Mobile */
  .company-intro-section {
    padding: 4rem 0;
  }
  
  .intro-main-title {
    font-size: 2.5rem;
  }
  
  .intro-subtitle {
    font-size: 1.1rem;
  }
  
  .intro-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .intro-story,
  .intro-values {
    padding: 1.8rem;
  }
  
  .story-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .story-line {
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .timeline-item {
    gap: 1rem;
  }
  
  .timeline-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .story-timeline::before {
    left: 17px;
  }
  
  .intro-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-highlight {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  /* Hero Mobile Responsive */
  .about-hero {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .hero-main-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .hero-stat .stat-number {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .trust-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-shape-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-shape-2 {
    width: 200px;
    height: 200px;
  }
  
  .hero-shape-3 {
    width: 150px;
    height: 150px;
  }
  
  /* Contact Page Mobile */
  .contact-hero {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .contact-hero-title {
    font-size: 2.5rem;
  }
  
  .contact-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-quick-contact {
    flex-direction: column;
    gap: 1rem;
  }
  
  .quick-contact-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-header h2 {
    font-size: 1.8rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .map-placeholder {
    padding: 2rem;
  }
  
  .map-icon {
    font-size: 2rem;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.05);
}

.footer-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.footer-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  background: rgba(31, 45, 93, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

/* Footer About Section */
.footer-about .footer-logo h3 {
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-tagline {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer-description {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Footer Titles */
.footer-title {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

/* Footer Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(240, 180, 41, 0.1);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 180, 41, 0.3);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-details strong {
  display: block;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-details a,
.contact-details span {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  color: #999 !important;
  margin: 0;
  font-size: 0.9rem;
}

.copyright a {
  color: #999 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--accent-color) !important;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--accent-color);
}

.separator {
  color: #666;
  font-size: 0.8rem;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  
  .contact-details {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 1.5rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .contact-item {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-icon {
    flex-shrink: 0;
    font-size: 1rem;
  }
  
  .contact-details {
    text-align: left;
    flex: 1;
  }
  
  .contact-details strong {
    font-size: 0.8rem;
  }
  
  .contact-details a,
  .contact-details span {
    font-size: 0.9rem;
  }
  
  .footer-bottom-content {
    padding: 1.5rem 1rem;
  }
}

/* Responsive Design */
@media (min-width: 769px) {
  /* Ensure desktop navigation works properly */
  .mobile-menu-overlay {
    display: none !important;
  }
  
  .mobile-menu-header {
    display: none !important;
  }
  
  .nav-menu {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: none !important;
    box-shadow: none !important;
    z-index: auto !important;
    overflow: visible !important;
    left: auto !important;
    gap: 2rem !important;
  }

  /* Reset mega menu for desktop */
  .mega-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 700px !important;
    max-width: 90vw !important;
    background: white !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    margin-top: 1rem !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
  }

  .nav-item-dropdown:hover .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 0.5rem !important;
  }

  /* Hide mobile mega menu elements on desktop */
  .mega-menu-back {
    display: none !important;
  }

  .mega-menu-header {
    padding: 1.2rem !important;
    background: transparent !important;
    border-bottom: 2px solid var(--accent-color) !important;
    color: var(--text-dark) !important;
    text-align: center !important;
  }

  .mega-menu-header h3 {
    color: var(--primary-color) !important;
    font-size: 1.3rem !important;
    margin-bottom: 0.3rem !important;
  }

  .mega-menu-header p {
    color: var(--text-light) !important;
    font-size: 0.9rem !important;
  }

  .mega-menu-view-all {
    color: #F44336 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    margin-top: 0.5rem !important;
    display: inline-block !important;
    transition: var(--transition) !important;
  }

  .mega-menu-view-all:hover {
    color: var(--primary-color) !important;
  }

  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem !important;
    margin-bottom: 0 !important;
  }

  .mega-menu-item {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 0.8rem !important;
    padding: 0.8rem !important;
    border-radius: 8px !important;
    border: 1px solid transparent !important;
  }
}

@media (max-width: 968px) {
  .topbar-info {
    gap: 1rem;
  }
  
  .topbar-item {
    font-size: 0.85rem;
  }
  
  .nav-contact-highlight {
    margin-left: 0.5rem;
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Hide Topbar on Mobile */
  .topbar {
    display: none;
  }

  /* Show mobile menu elements only on mobile */
  .mobile-menu-header {
    display: flex !important;
  }

  .mobile-menu-overlay {
    display: block;
  }

  /* Header Mobile */
  .header .container {
    padding: 0 1rem;
  }
  
  .header-content {
    padding: 0.8rem 0;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .tagline {
    font-size: 0.75rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  /* Hide mobile menu elements on desktop */
  .mobile-menu-header {
    display: none !important;
  }

  .mobile-menu-overlay {
    display: none;
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Navigation */
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    margin: 0;
    gap: 0;
    transition: var(--transition);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    list-style: none;
  }

  .nav-menu.active {
    left: 0;
  }

  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    background: var(--primary-color);
    color: white;
    margin: 0;
  }

  .mobile-menu-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
  }

  .mobile-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
  }

  .mobile-close-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
  }

  /* Mobile Nav Items */
  .nav-menu li:not(.mobile-menu-header) {
    border-bottom: 1px solid #eee;
    margin: 0;
    padding: 0;
  }

  .nav-menu li:not(.mobile-menu-header):not(:last-child) {
    margin-bottom: 0.25rem;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-bottom: none;
    margin: 0;
    line-height: 1.4;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-contact-highlight {
    margin: 1rem 1.5rem 1.5rem 1.5rem !important;
    padding: 1rem 1.5rem !important;
    text-align: center;
    border-radius: var(--border-radius);
  }

  /* Mobile Services Navigation */
  .nav-link-dropdown {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
  }

  /* Style for desktop nav-link-dropdown */
  @media (min-width: 769px) {
    .nav-link-dropdown {
      padding: 0.5rem 0;
      cursor: pointer;
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
      margin: 0;
      line-height: normal;
    }
  }

  .dropdown-arrow {
    transition: var(--transition);
    pointer-events: none;
  }

  /* Mobile Mega Menu */
  .mega-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    transform: none;
    margin-top: 0;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0;
    max-height: none;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1001;
    opacity: 1;
    visibility: visible;
  }

  .mega-menu.active {
    left: 0;
  }

  .mega-menu-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .mega-menu-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #eee;
    background: var(--primary-color);
    color: white;
    margin-bottom: 0;
    text-align: left;
    flex-shrink: 0;
  }

  .mega-menu-back {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
  }

  .mega-menu-back:hover {
    color: var(--accent-color);
  }

  .mega-menu-back svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
  }

  .mega-menu-header h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .mega-menu-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
  }

  .mega-menu-view-all {
    color: #F44336 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    display: block;
    transition: var(--transition);
  }

  .mega-menu-view-all:hover {
    color: white;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
    flex: 1;
  }
  
  .mega-menu-item {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    border: none;
  }

  .mega-menu-item:hover {
    background: var(--section-bg);
    transform: none;
  }
  
  .mega-item-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    flex-shrink: 0;
    padding: 10px;
    box-sizing: border-box;
  }

  .mega-item-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
  }

  .mega-item-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .mega-item-content p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .mega-item-link {
    font-size: 0.85rem;
  }
}

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 0;
  }

  .section {
    padding: 3rem 0;
  }

@media (max-width: 480px) {
  /* Ultra mobile styles */
  .topbar-info {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .topbar-social {
    gap: 0.5rem;
  }
  
  .topbar-social-link {
    width: 28px;
    height: 28px;
  }
  
  .topbar-social-link svg {
    width: 14px;
    height: 14px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
} 