/* ========================================
   TacticDev - Main Stylesheet
   Modern Design 2025
   ======================================== */

/* ========== Variables ========== */
:root {
  /* Colors */
  --primary: #6366F1;
  --secondary: #8B5CF6;
  --accent: #EC4899;
  --dark: #0F172A;
  --dark-light: #1E293B;
  --gray: #64748B;
  --gray-light: #CBD5E1;
  --light: #F8FAFC;
  --white: #FFFFFF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --gradient-accent: linear-gradient(135deg, #EC4899 0%, #F97316 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  background: var(--white);
  overflow-x: hidden;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: var(--section-padding) 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* ========== Navbar ========== */
.navbar {
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 15px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white) !important;
}

.brand-icon {
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link.btn-cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  margin-left: 10px;
}

.nav-link.btn-cta::after {
  display: none;
}

.nav-link.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ========== Hero Section ========== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #FFF 0%, #F0F0F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3));
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

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

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

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

.floating-card span {
  font-weight: 600;
  font-size: 1.125rem;
}

.floating-card.card-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 45%;
  right: 0;
  animation-delay: 2s;
}

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

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ========== Section Headers ========== */
.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ========== Product Cards ========== */
.section-products {
  background: var(--light);
}

.product-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--product-color);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--product-color), var(--product-color));
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 2rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 1rem;
  color: var(--product-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.product-description {
  color: var(--gray);
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-features h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

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

.product-features li {
  padding: 8px 0;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-features li i {
  color: var(--product-color);
  font-size: 1.125rem;
  margin-top: 2px;
}

.btn-product {
  width: 100%;
  padding: 14px 24px;
  background: var(--product-color);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

/* ========== About Section ========== */
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-badge i {
  font-size: 2.5rem;
  color: var(--primary);
}

.about-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.about-badge span {
  font-size: 0.875rem;
  color: var(--gray);
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

.feature-item p {
  color: var(--gray);
  margin: 0;
}

/* ========== Process Section ========== */
.section-process {
  background: var(--gradient-dark);
  color: var(--white);
}

.section-process .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section-process .section-title,
.section-process .section-description {
  color: var(--white);
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ========== Testimonials ========== */
.section-testimonials {
  background: var(--light);
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

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

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.stars i {
  color: #FFC107;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 30px;
  font-style: italic;
}

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

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

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--gray);
  margin: 0;
}

/* ========== FAQ Section ========== */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md) !important;
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-button {
  padding: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--dark);
  background: var(--white);
  border: none;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: none;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
  filter: none;
}

.accordion-body {
  padding: 24px;
  color: var(--gray);
  line-height: 1.8;
}

/* ========== CTA Section ========== */
.section-cta {
  background: var(--light);
}

.cta-box {
  background: var(--gradient-primary);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.btn-cta-large {
  padding: 18px 40px;
  background: var(--white);
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--secondary);
}

/* ========== Footer ========== */
.footer {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px;
  position: relative;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand i {
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--primary);
  font-size: 1.25rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.footer-bottom {
  padding-top: 30px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.scroll-top.show {
  display: flex;
}

/* Product Hero */
.product-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--product-color) 0%, transparent 70%);
  opacity: 0.1;
}

.product-hero-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--product-color);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 3rem;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.product-hero-tagline {
  font-size: 1.5rem;
  color: var(--product-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
}

.product-target {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
}

.product-mockup {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

/* Contact Page */
.contact-hero {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 150px 0 100px;
}

.contact-info-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 100%;
  position: sticky;
  top: 100px;
}

.contact-info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-info-box > p {
  color: var(--gray);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--gray);
}

.contact-info-item a {
  color: var(--dark);
  font-weight: 500;
}

.contact-social {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-light);
}

.contact-social h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gray);
}

.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-box h3 {
  font-size: 1.75rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

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

.form-control::placeholder {
  color: var(--gray-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-section {
  background: var(--light);
  padding: 0;
}

.map-container {
  height: 400px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--white);
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.map-placeholder p {
  font-size: 1.25rem;
  margin: 0;
  opacity: 0.7;
}

/* Product Features Section */
.product-features-section {
  background: var(--light);
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-light);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.125rem;
  color: var(--dark);
  line-height: 1.5;
}

/* Product Benefits Section */
.benefits-list {
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.benefit-item p {
  color: var(--gray);
  margin: 0;
}

.benefits-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* How it Works Timeline */
.product-how-section {
  background: var(--light);
}

.how-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.how-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
  transform: translateX(-50%);
}

.how-step {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.how-step:nth-child(even) {
  flex-direction: row-reverse;
}

.how-step:last-child {
  margin-bottom: 0;
}

.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 10px var(--white);
  flex-shrink: 0;
}

.step-content {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  flex: 1;
  max-width: 350px;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--gray);
  margin: 0;
}

.step-line {
  display: none;
}

/* Pricing Section */
.product-pricing-section {
  background: var(--light);
}

.pricing-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
}

.pricing-card.featured::before {
  height: 6px;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gray-light);
  color: var(--dark);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-badge.popular {
  background: var(--gradient-primary);
  color: var(--white);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 30px;
}

.pricing-price .currency {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray);
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-price .amount-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--primary);
  font-size: 1.125rem;
}

.btn-pricing {
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 991px) {
  .floating-card {
    padding: 16px 20px;
  }
  
  .floating-card i {
    font-size: 1.5rem;
  }
  
  .floating-card span {
    font-size: 0.875rem;
  }
  
  .hero-image {
    height: 400px;
    margin-top: 60px;
  }
  
  .how-timeline::before {
    left: 40px;
  }
  
  .how-step {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 120px;
  }
  
  .step-icon {
    position: absolute;
    left: 0;
  }
  
  .step-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-stats {
    justify-content: space-around;
  }
  
  .cta-box {
    padding: 40px 30px;
    text-align: center;
  }
  
  .btn-cta-large {
    width: 100%;
    margin-top: 20px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .contact-info-box {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .floating-card {
    padding: 12px 16px;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .product-card {
    padding: 30px 20px;
  }
  
  .about-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
  }
  
  .process-step {
    padding: 30px 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Alerts */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.alert-success {
  background: #D1FAE5;
  color: #065F46;
  border-left: 4px solid #10B981;
}

.alert-danger {
  background: #FEE2E2;
  color: #991B1B;
  border-left: 4px solid #EF4444;
}

.alert i {
  font-size: 1.25rem;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-scroll,
  .scroll-top,
  .footer,
  .btn,
  .cta-box {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  section {
    page-break-inside: avoid;
  }
}