/* CSS Custom Properties */
:root {
  /* Enhanced Color Palette */
  --primary-blue: #2a6ebb;
  --primary-blue-light: #2a6ebb;
  --primary-blue-dark: #2a6ebb;
  --secondary-black: #000000;
  --background-white: #ffffff;
  --text-dark: #1f2937;
  --accent-light: #f8fafc;
  --shadow-grey: #e5e7eb;
  --border-light: #e5e7eb;
  --text-light: #384e63;
  --success-green: #10b981;

  /* Vibrant Designer Colors */
  --electric-purple: #5ca0e0;
  --electric-pink: #4881ec;
  --neon-cyan: #06b6d4;
  --sunset-orange: #0b9ff5;
  --lime-green: #09328a;
  --hot-pink: #0c3a58;

  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, #f0f8ff 0%, #f0f8ff 100%);
  --gradient-hero: linear-gradient(135deg);
  --gradient-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  --gradient-button: linear-gradient(135deg, #66a4ea 0%, #4b67a2 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-sunset: linear-gradient(135deg, #6bb8ff 0%, #26a8ff 100%);
  --gradient-ocean: linear-gradient(135deg, #667eea 0%, #06b6d4 100%);
  --gradient-purple: linear-gradient(135deg, #457fca 0%, #5691c8 100%);

  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Inter", sans-serif;

  /* Enhanced 3D Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-3d: 0 20px 40px rgba(0, 0, 0, 0.1), 0 15px 25px rgba(0, 0, 0, 0.05);
  --shadow-3d-hover: 0 30px 60px rgba(0, 0, 0, 0.15),
    0 20px 35px rgba(0, 0, 0, 0.08);
  --shadow-neon: 0 0 20px rgba(139, 92, 246, 0.3),
    0 0 40px rgba(139, 92, 246, 0.1);
  --shadow-colored: 0 10px 30px rgba(37, 99, 235, 0.2);
  --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.4);

  --transition-fast: 0.15s ease;
  --transition-smooth: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --border-radius-2xl: 2rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--hot-pink);
  background-color: var(--background-white);
  overflow-x: hidden;
}

/* Utility Classes */
.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-2rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(2rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
  color: white;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

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

.announcement-content i {
  font-size: 0.75rem;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.nav-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.25rem;
}

.nav-toggle span {
  width: 1.5rem;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: var(--gradient-hero);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E5E7EB" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 32rem;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  background-clip: text;
}

.title-blue {
  color: var(--primary-blue);
}

.title-black {
  color: var(--secondary-black);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 85%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-button);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-3d);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-3d-hover);
  filter: brightness(1.15);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-light);
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var();
}

.stat-label {
  font-size: 0.875rem;

  font-weight: 500;
}

.hero-image {
  animation: slideInRight 1s ease-out;
  position: relative;
}

.image-card {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform var(--transition-smooth);
}

.image-card:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.image-card img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.image-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.overlay-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.overlay-badge i {
  color: var(--success-green);
}

/* Section Styles */
.section-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--background-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--gradient-card);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-3d);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-ocean);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: all var(--transition-slow);
  border-radius: 50%;
  z-index: 0;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  width: 200%;
  height: 200%;
}

.service-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: var(--shadow-3d-hover);
  border-color: rgba(102, 126, 234, 0.4);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-neon);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(360deg);
  box-shadow: var(--shadow-glow);
}

.service-icon i {
  color: white;
  font-size: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: var(--accent-light);
  color: var(--primary-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--accent-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-blue);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 1rem;
}

.feature-text h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.feature-text p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.5;
}

.about-image {
  position: relative;
}

.image-stack {
  position: relative;
}

.stack-image-1 {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.stack-image-2 {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  height: 15rem;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: var(--background-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
  border: 1px solid var(--border-light);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #fcd34d;
  font-size: 0.875rem;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-blue);
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.75rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--accent-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.method-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-blue);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon i {
  color: white;
  font-size: 1rem;
}

.method-text h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.method-text p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form input,
.form select,
.form textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: white;
  font-family: inherit;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form textarea {
  resize: vertical;
  min-height: 6rem;
}

.full-width {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

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

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(13, 76, 112);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--primary-blue);
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
}

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

.link-group h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.link-group a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.link-group a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #9ca3af;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 64rem) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 4rem;
    right: -100%;
    width: 100%;
    height: calc(100vh - 4rem);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-light);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
    display: flex;
  }

  .nav-menu .nav-link {
    font-size: 1.125rem;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
    text-decoration: none;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--primary-blue);
  }

  .nav-menu .nav-cta {
    margin-top: 1rem;
    width: auto;
    padding: 0.75rem 2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-stack .stack-image-2 {
    right: -1rem;
    bottom: -1rem;
  }
}

@media (max-width: 48rem) {
  .nav-container {
    padding: 0 1rem;
  }

  .section-container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 0;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 30rem) {
  .announcement-content {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .announcement-content span {
    display: none;
  }

  .nav-container {
    height: 3.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Page-specific Styles */

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E5E7EB" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.header-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.header-content {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto;
}

/* Services Detail Page */
.services-detail {
  padding: 6rem 0;
  background: var(--background-white);
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 3rem;
}

.service-detail-card {
  background: white;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-detail-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.service-overlay .service-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-blue);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.service-overlay .service-icon i {
  color: white;
  font-size: 1.25rem;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-size: 0.875rem;
}

.service-features-list i {
  color: var(--success-green);
  font-size: 0.75rem;
}

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-label {
  color: var(--text-light);
  font-size: 0.875rem;
}

.price {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* About Page Styles */
.company-story {
  padding: 6rem 0;
  background: var(--background-white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.story-image img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Mission & Vision */
.mission-vision {
  padding: 6rem 0;
  background: var(--accent-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-card,
.vision-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-smooth);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon i {
  color: white;
  font-size: 1.5rem;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: var(--background-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
}

.team-member {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.member-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-social {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.team-member:hover .member-social {
  opacity: 1;
}

.member-social a {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.member-social a:hover {
  background: var(--primary-blue);
  color: white;
}

.member-info {
  padding: 1.5rem;
}

.member-info h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.member-info span {
  color: var(--primary-blue);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.member-info p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Values Section */
.values-section {
  padding: 6rem 0;
  background: var(--accent-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1rem;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon i {
  color: white;
  font-size: 1.25rem;
}

.value-item h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Testimonials Page Styles */
.featured-testimonial {
  padding: 6rem 0;
  background: var(--accent-light);
}

.featured-content {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  margin-bottom: 3rem;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.testimonial-quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-author-featured {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.testimonial-author-featured img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-details h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author-details span {
  color: var(--primary-blue);
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.company-info {
  font-size: 0.75rem;
  color: var(--text-light);
}

.testimonials-grid-section {
  padding: 6rem 0;
  background: var(--background-white);
}

.testimonials-grid-extended {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
}

.testimonial-stats {
  padding: 6rem 0;
  background: var(--primary-blue);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  color: white;
}

.stat-card .stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Contact Page Styles */
.contact-page {
  padding: 6rem 0;
  background: var(--background-white);
}

.contact-content-extended {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-extended {
  padding: 2rem 0;
}

.contact-methods-extended {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method-large {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--accent-light);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-smooth);
}

.contact-method-large:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-method-large .method-text span {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.25rem;
}

.contact-social h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-blue);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--secondary-black);
  transform: translateY(-2px);
}

.contact-form-extended {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.form-extended {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-extended label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.875rem;
}

.form-extended input,
.form-extended select,
.form-extended textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: white;
  font-family: inherit;
}

.form-extended input:focus,
.form-extended select:focus,
.form-extended textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: var(--accent-light);
}

.map-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.map-placeholder {
  background: white;
  padding: 4rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--background-white);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 50rem;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--accent-light);
}

.faq-question h4 {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.faq-question i {
  color: var(--primary-blue);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 10rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-blue), #1d4ed8);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary-blue);
}

.cta-buttons .btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-buttons .btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Logo Link Styles */
.nav-logo a {
  text-decoration: none;
  color: inherit;
}

.nav-logo a:hover h2 {
  color: #1d4ed8;
  transition: color var(--transition-fast);
}

/* Additional Responsive Styles */
@media (max-width: 64rem) {
  .story-content,
  .mission-vision-grid,
  .contact-content-extended {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .story-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-header {
    padding: 6rem 0 3rem;
  }
}
@media (max-width: 48rem) {
  .services-grid-detailed,
  .team-grid,
  .values-grid,
  .testimonials-grid-extended {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Floating Decorative Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
  width: 80px;
  height: 80px;
  background: var(--gradient-purple);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-circle:nth-child(2) {
  width: 120px;
  height: 120px;
  background: var(--gradient-ocean);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-circle:nth-child(3) {
  width: 60px;
  height: 60px;
  background: var(--gradient-sunset);
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.floating-circle:nth-child(4) {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  top: 40%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
  }
}

/* Glowing Text Effect */
.glow-text {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 2s ease-in-out infinite alternate;
}

/* Enhanced Section Backgrounds */
.section-enhanced {
  position: relative;
  overflow: hidden;
}

.section-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    );
  z-index: 0;
}

.section-enhanced > * {
  position: relative;
  z-index: 1;
}

/* Neon Border Effect */
.neon-border {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    var(--gradient-purple) border-box;
  border-radius: var(--border-radius-lg);
}

/* Animated Background Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--electric-purple);
  border-radius: 50%;
  animation: particle-float 8s linear infinite;
  opacity: 0.6;
}

.particle:nth-child(2n) {
  background: var(--neon-cyan);
  animation-duration: 12s;
}

.particle:nth-child(3n) {
  background: var(--electric-pink);
  animation-duration: 10s;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Enhanced Testimonial Cards */
.testimonial-card {
  background: var(--gradient-card) !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: var(--shadow-3d) !important;
  transition: all var(--transition-bounce) !important;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: var(--shadow-3d-hover) !important;
}

/* Pulse Animation for CTAs */
.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
  }
}
.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  margin-top: 6px;
}

/* Responsive - for smaller screens */
@media (max-width: 768px) {
  .logo-img {
    height: 45px; /* smaller height on mobile */
  }
}
.hero-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  display: block;
}

/* 🔵 Overlay styling */
.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.overlay-badge {
  background-color: rgba(255, 255, 255, 0.9); /* semi-transparent blue */
  color: #0d426d;
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.overlay-badge i {
  font-size: 16px;
}

/* 📱 Responsive tweak */
@media (max-width: 768px) {
  .overlay-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .image-overlay {
    bottom: 10px;
    left: 10px;
  }
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    background: #000;
    padding: 0;
}

.video-modal-content iframe {
    width: 100%;
    height: 450px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
