/**
* Template Name: Vernotec
* Modern Technology & Security Solutions
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Inter", sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #374151;
  --heading-color: #111827;
  --accent-color: #2563eb;
  --accent-hover: #1d4ed8;
  --secondary-color: #7c3aed;
  --surface-color: #f8fafc;
  --contrast-color: #ffffff;
  --border-color: #e5e7eb;
  --light-gray: #f3f4f6;
  --success-color: #10b981;
  --warning-color: #f59e0b;
}

/* Color Presets */
.light-background {
  --background-color: #f8fafc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #111827;
  --default-color: #f3f4f6;
  --heading-color: #ffffff;
  --surface-color: #1f2937;
  --contrast-color: #ffffff;
  --border-color: #374151;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.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.5s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: var(--contrast-color);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  transition: all 0.3s ease;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.98);
}

.logo .sitename {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Menu */
.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.navmenu a {
  color: var(--heading-color);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--accent-color);
}

.navmenu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
}

.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Hero Section - Completely Rewritten
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.hero-text {
  flex: 1;
}

.hero-visual-container {
  flex: 1;
  position: relative;
  height: 500px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }
  50% { 
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 90%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5e7eb;
  font-weight: 500;
  font-size: 16px;
}

.feature-item i {
  color: var(--success-color);
  font-size: 18px;
  flex-shrink: 0;
}

/* Floating Cards */
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  max-width: 220px;
  transition: all 0.3s ease;
  z-index: 10;
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.card-title {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 16px;
  line-height: 1.2;
}

.card-desc {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.4;
}

/* Card Positions */
.card-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-20px) rotate(2deg); 
  }
}

/*--------------------------------------------------------------
# Hero Mobile Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-visual-container {
    height: 450px;
  }
  
  .floating-card {
    max-width: 200px;
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 60px;
    min-height: auto;
  }
  
  .hero-text {
    order: 1;
  }
  
  .hero-visual-container {
    order: 2;
    height: 350px;
    margin-top: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .floating-card {
    max-width: 160px;
    padding: 16px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  
  .card-title {
    font-size: 14px;
  }
  
  .card-desc {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero .container {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-features {
    gap: 16px;
  }
  
  .feature-item {
    font-size: 14px;
  }
  
  .hero-visual-container {
    height: 280px;
  }
  
  .floating-card {
    max-width: 130px;
    padding: 12px;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .card-title {
    font-size: 12px;
  }
  
  .card-desc {
    font-size: 10px;
  }
  
  .card-1 {
    top: 5%;
    left: 2%;
  }
  
  .card-2 {
    top: 50%;
    right: 2%;
  }
  
  .card-3 {
    bottom: 10%;
    left: 15%;
  }
}

@media (max-width: 576px) {
  .hero .container {
    padding: 90px 0 40px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 16px;
  }
  
  .hero-buttons {
    margin-bottom: 30px;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero-visual-container {
    height: 220px;
  }
  
  .floating-card {
    max-width: 110px;
    padding: 10px;
  }
  
  .card-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .card-title {
    font-size: 11px;
  }
  
  .card-desc {
    font-size: 9px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-visual-container {
    height: 180px;
  }
  
  .floating-card {
    max-width: 90px;
    padding: 8px;
  }
  
  .card-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .card-title {
    font-size: 10px;
  }
  
  .card-desc {
    font-size: 8px;
  }
}

/* Hero Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  .hero-badge {
    animation: none;
  }
  
  .floating-card {
    animation: none;
  }
  
  .floating-card:hover {
    transform: translateY(-5px);
  }
}

/* Hero Loading States */
.hero.loading .hero-badge,
.hero.loading .floating-card {
  opacity: 0;
  transform: translateY(20px);
}

.hero.loaded .hero-badge,
.hero.loaded .floating-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.hero.loaded .floating-card {
  transition-delay: 0.2s;
}

/*--------------------------------------------------------------
# Section Titles & Badges
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #111827, #374151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-content h3 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.feature-box i {
  font-size: 24px;
  color: var(--accent-color);
  margin-top: 4px;
}

.feature-box h4 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.feature-box p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Updated stats grid to accommodate 6 items */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 40px;
  color: var(--accent-color);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

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

.stat-label {
  color: #6b7280;
  font-weight: 500;
  margin-top: 8px;
  /* Reduced span styling */
  font-size: 0.9rem;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 32px;
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #6b7280;
}

.service-features i {
  color: var(--success-color);
  font-size: 14px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-color);
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

/*--------------------------------------------------------------
# Solutions Section
--------------------------------------------------------------*/
.solutions {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.solution-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.solution-header i {
  font-size: 40px;
  color: var(--accent-color);
}

.solution-header h4 {
  margin: 0;
  flex: 1;
}

.solution-badge {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.solution-card p {
  color: #6b7280;
  margin-bottom: 24px;
}

.solution-features {
  list-style: none;
  margin-bottom: 30px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #374151;
}

.solution-features i {
  color: var(--success-color);
  font-size: 16px;
}

.solution-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.solution-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(124, 58, 237, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-btn {
  color: white;
  padding: 12px 24px;
  border: 2px solid white;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.portfolio-btn:hover {
  background: white;
  color: var(--accent-color);
}

.portfolio-content {
  padding: 24px;
}

.portfolio-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-content h4 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.portfolio-content p {
  color: #6b7280;
  margin: 0;
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  position: relative;
  margin-bottom: 30px;
}

.testimonial-content i {
  font-size: 48px;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: -10px;
}

.testimonial-content p {
  font-size: 1.125rem;
  color: #374151;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.testimonial-author h5 {
  margin: 0;
  font-size: 1.125rem;
}

.testimonial-author span {
  color: #6b7280;
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.contact-item i {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 4px;
}

.contact-item p {
  margin-bottom: 0;
  color: #6b7280;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background-color);
  font-family: var(--default-font);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
  color: #9ca3af;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: white;
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.footer h3,
.footer h4 {
  color: white;
  margin-bottom: 20px;
}

.footer p {
  color: #d1d5db;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  color: #d1d5db;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer ul a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #d1d5db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #374151;
  border-radius: 8px;
  background: #1f2937;
  color: white;
  font-family: var(--default-font);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 60px;
  padding: 30px 0;
  text-align: center;
  color: #9ca3af;
}

.security-text {
  color: var(--accent-color);
  font-weight: 600;
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 100px 0;
  position: relative;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .navmenu ul {
    gap: 24px;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .navmenu ul {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 0;
    border-radius: 0 0 12px 12px;
  }
  
  .navmenu ul.show {
    display: flex;
  }
  
  .navmenu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-card {
    max-width: 160px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  section,
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .service-card,
  .pricing-card,
  .contact-form,
  .testimonial-card,
  .solution-card {
    padding: 24px 20px;
  }
  
  .floating-card {
    padding: 12px;
    font-size: 0.875rem;
    max-width: 140px;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .hero-visual {
    height: 400px;
  }
}