/*
Modern Clean Theme - Based on Professional Corporate Design
Features: White background, blue accents, clean typography, generous spacing
*/

/* Color Palette */
:root {
  /* Modern Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #06B6D4 100%);
  --gradient-purple-blue: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  --gradient-blue-cyan: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);

  /* Primary Colors */
  --primary-purple: #8B5CF6;
  --primary-blue: #3B82F6;
  --primary-cyan: #06B6D4;
  --primary-purple-dark: #7C3AED;
  --primary-blue-dark: #2563EB;
  --primary-cyan-dark: #0891B2;

  /* Background Colors */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-section: #F1F5F9;
  --bg-gradient-light: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);

  /* Text Colors */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  /* Border Colors */
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;

  /* Shadow Colors */
  --shadow-light: rgba(15, 23, 42, 0.08);
  --shadow-medium: rgba(15, 23, 42, 0.12);
  --shadow-purple: rgba(139, 92, 246, 0.25);
  --shadow-blue: rgba(59, 130, 246, 0.25);
  --shadow-cyan: rgba(6, 182, 212, 0.25);
  --shadow-gradient: 0 10px 40px rgba(139, 92, 246, 0.15), 0 4px 15px rgba(59, 130, 246, 0.1);
}

/* Global Typography */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
}

/* Typography Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Header Styling */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow-light), 0 1px 0 var(--border-light);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px var(--shadow-medium);
}

.site-header .brand img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-header .brand:hover img {
  transform: scale(1.05);
}

.main-menu a {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--primary-blue);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.main-menu a:hover::after,
.main-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hero Section */
.main-banner {
  background: var(--bg-gradient-light);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.main-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.main-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite 4s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Button Styles */
.primary-btn,
.main-button {
  background: var(--gradient-purple-blue);
  color: white !important;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-gradient);
  position: relative;
  overflow: hidden;
}

.primary-btn::before,
.main-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-blue-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.primary-btn:hover,
.main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.25), 0 8px 20px rgba(59, 130, 246, 0.15);
  color: white !important;
}

.primary-btn:hover::before,
.main-button:hover::before {
  opacity: 1;
}

.primary-btn>*,
.main-button>* {
  position: relative;
  z-index: 1;
}

.secondary-btn,
.btn-outline {
  background: transparent;
  color: var(--primary-blue) !important;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), var(--gradient-purple-blue);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.secondary-btn:hover,
.btn-outline:hover {
  background: var(--gradient-purple-blue);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gradient);
}

/* Section Styling */
.section {
  padding: 80px 0;
}

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

.section-heading h6 {
  color: var(--primary-blue);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-heading h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-heading h4 em {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.line-dec {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 1rem auto;
  border-radius: 2px;
}

/* About Section */
.about {
  background: var(--bg-white);
}

.about-left-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-light);
}

.about-right-content {
  padding-left: 2rem;
}

/* Services Section */
.services {
  background: var(--bg-light);
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--shadow-light);
  height: 100%;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gradient-purple-blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-gradient);
  z-index: 10;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-medium), var(--shadow-gradient);
  border-color: transparent;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gradient);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li i {
  color: var(--primary-blue);
  font-size: 0.875rem;
}

/* Portfolio Section */
.our-portfolio {
  background: var(--bg-white);
}

.portfolio-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-medium), var(--shadow-gradient);
  border-color: transparent;
}

.portfolio-item .thumb {
  position: relative;
  overflow: hidden;
}

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

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  text-align: center;
}

.overlay-content i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.down-content {
  padding: 1.5rem;
}

.down-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.down-content span {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.portfolio-tags {
  margin-top: 1rem;
}

.portfolio-tags .tag {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--primary-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.portfolio-tags .tag:hover {
  background: var(--gradient-purple-blue);
  color: white;
  transform: translateY(-2px);
}

/* Contact Section */
.contact-us {
  background: var(--bg-light);
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--shadow-light);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px var(--shadow-medium), var(--shadow-gradient);
  border-color: transparent;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gradient);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-details h6 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-details .contact-note {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Form Styling */
.contact-form-container {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow-light);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
  outline: none;
  border-color: transparent;
  background-image: linear-gradient(white, white), var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.contact-submit-btn {
  background: var(--gradient-purple-blue);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gradient);
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(139, 92, 246, 0.25), 0 8px 20px rgba(59, 130, 246, 0.15);
}

/* Footer */
.site-footer {
  background: var(--text-primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand h5 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #bdc3c7;
  margin-bottom: 2rem;
}

.footer-section h6 {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 10px;
  color: white !important;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.footer-social a:hover {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  color: #3B82F6 !important;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom p {
  color: #bdc3c7;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First Approach
   ============================================ */

/* Base styles are mobile-first, then we enhance for larger screens */

/* Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {

  /* Typography */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  h6 {
    font-size: 1rem;
  }

  p {
    font-size: 1rem;
  }

  .main-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .gradient-text {
    font-size: 0.875rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-heading h4 {
    font-size: 1.75rem;
  }

  /* Header */
  .site-header {
    padding: 0.75rem 0;
  }

  .site-header .brand img {
    height: 35px;
  }

  .main-menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-menu a {
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
  }

  /* Hero Section */
  .main-banner {
    padding: 100px 0 60px;
  }

  .main-banner::before,
  .main-banner::after {
    width: 400px;
    height: 400px;
  }

  /* Buttons */
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .primary-btn,
  .secondary-btn,
  .main-button,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  /* Service Cards */
  .service-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card h5 {
    font-size: 1.25rem;
  }

  /* Portfolio */
  .portfolio-item {
    margin-bottom: 1.5rem;
  }

  .portfolio-item .thumb img {
    height: 200px;
  }

  /* Contact */
  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Form */
  .contact-form-container {
    padding: 1.5rem;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }

  /* Floating Cards */
  .floating-card {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }

  .floating-card i {
    font-size: 1rem;
  }
}

/* Mobile Devices (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {

  /* Typography */
  .main-title {
    font-size: 2.5rem;
  }

  .section-heading h4 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  /* Header */
  .site-header .brand img {
    height: 38px;
  }

  /* Hero */
  .main-banner {
    padding: 110px 0 70px;
  }

  /* Buttons */
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .primary-btn,
  .secondary-btn {
    min-width: 200px;
  }

  /* Service Cards */
  .service-card {
    padding: 2.25rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  /* Contact */
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Tablet Devices (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Typography */
  .main-title {
    font-size: 3rem;
  }

  .section-heading h4 {
    font-size: 2.25rem;
  }

  /* Hero */
  .main-banner {
    padding: 120px 0 80px;
  }

  /* Buttons */
  .hero-buttons {
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Service Cards */
  .service-card {
    padding: 2.5rem;
  }

  /* Portfolio */
  .portfolio-item .thumb img {
    height: 220px;
  }

  /* Contact */
  .contact-card {
    flex-direction: row;
  }
}

/* Large Tablets & Small Desktops (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .main-title {
    font-size: 3.5rem;
  }

  .container {
    max-width: 960px;
  }
}

/* Desktop (1280px+) */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }

  .main-title {
    font-size: 3rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

  /* Increase touch targets */
  .main-menu a {
    padding: 1rem 1.5rem;
    min-height: 44px;
  }

  .primary-btn,
  .secondary-btn,
  .main-button,
  .btn-outline {
    min-height: 48px;
    padding: 1rem 2rem;
  }

  /* Disable hover-only effects on touch devices */
  .service-card:hover,
  .portfolio-item:hover,
  .contact-card:hover {
    transform: none;
  }

  /* Make hover effects work on tap */
  .service-card:active,
  .portfolio-item:active,
  .contact-card:active {
    transform: translateY(-5px);
  }
}

/* Landscape Mobile Orientation */
@media (max-width: 767px) and (orientation: landscape) {
  .main-banner {
    padding: 80px 0 50px;
  }

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

  .section {
    padding: 60px 0;
  }
}

/* Print Styles */
@media print {

  .site-header,
  .footer-social,
  .hero-buttons,
  .contact-form-container {
    display: none;
  }

  .main-banner,
  .section {
    padding: 20px 0;
  }

  * {
    box-shadow: none !important;
    animation: none !important;
  }
}

/* Animation Enhancements */
.wow.fadeInUp {
  animation-duration: 0.8s;
}

.service-card,
.portfolio-item,
.contact-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Blue Square Accent Elements */
.blue-accent-square {
  width: 120px;
  height: 120px;
  background: var(--primary-blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px var(--shadow-blue);
}

/* Cityscape Image Placeholder */
.cityscape-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.cityscape-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/cityscape-bg.jpg') center center/cover no-repeat;
  opacity: 1;
  z-index: 0;
}

/* Floating Elements */
.hero-visual-content {
  position: relative;
  height: 100%;
  padding: 2rem;
}

.floating-elements {
  position: relative;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.floating-card i {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.floating-card:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.floating-card:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Additional Modern Enhancements */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .primary-btn,
.hero-buttons .secondary-btn {
  min-width: 180px;
}

/* Statistics Section */
.services-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* Why Choose Us Section */
.why {
  background: var(--bg-white);
  padding: 80px 0;
}

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

.why .card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--shadow-light);
}

.why .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.why .card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.why .card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.why .card p {
  color: var(--text-secondary);
}

/* Contact Section Enhancements */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.contact-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1rem;
}

.contact-title {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.contact-btn {
  background: white;
  color: var(--primary-blue) !important;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--primary-blue) !important;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--primary-blue);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px var(--shadow-blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 122, 183, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(51, 122, 183, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(51, 122, 183, 0);
  }
}

.sticky-cta .primary-btn {
  background: white;
  color: var(--primary-blue) !important;
  margin: 0;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.sticky-cta .primary-btn:hover {
  background: var(--bg-light);
  transform: none;
  box-shadow: none;
}

/* FAQ Section Redesign */
.faq-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px var(--shadow-light);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-medium), var(--shadow-gradient);
  border-color: transparent;
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

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

.faq-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gradient);
}

.faq-card:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
}

.faq-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Responsive adjustments for FAQ grid */
@media (max-width: 768px) {
  .faq-card {
    padding: 2rem;
  }

  .faq-content h5 {
    font-size: 1.1rem;
  }
}