* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1e3a8a;
  --primary-dark: #0f1f44;
  --primary-light: #3b82f6;
  --accent: #0ea5e9;
  --accent-light: #38bdf8;
  --gold: #fbbf24;
  --emerald: #10b981;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --bg-light: #f0f7ff;
  --bg-section: #f8fafc;
  --text-dark: #0f172a;
  --text-gray: #64748b;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: white; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--purple));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--purple));
  background-size: 200% 200%;
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.logo span {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  transition: all 0.3s;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: white !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f1f44 0%, #1e3a8a 30%, #3b82f6 70%, #0ea5e9 100%);
  color: var(--white);
  padding: 9rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 20s infinite ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.6), transparent);
  bottom: -100px;
  right: -100px;
  animation-delay: 5s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4), transparent);
  top: 50%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  pointer-events: none;
  animation: floatShape 6s infinite ease-in-out;
}

.floating-shape.shape1 {
  top: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: rgba(251, 191, 36, 0.2);
  border: 2px solid rgba(251, 191, 36, 0.5);
  border-radius: 12px;
  transform: rotate(15deg);
}

.floating-shape.shape2 {
  bottom: 25%;
  left: 10%;
  width: 50px;
  height: 50px;
  background: rgba(56, 189, 248, 0.2);
  border: 2px solid rgba(56, 189, 248, 0.5);
  border-radius: 50%;
  animation-delay: 2s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.25);
  animation: fadeInUp 0.8s ease;
  font-weight: 500;
}

.hero-badge::before {
  content: '✨';
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0); }
  50% { transform: scale(1.3) rotate(180deg); }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.2s both;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .gradient-text {
  background: linear-gradient(120deg, #fef9c3 0%, #fde68a 30%, #fbbf24 60%, #fb923c 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  display: inline-block;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-rotating {
  display: inline-block;
  color: #fde68a;
  font-weight: 700;
  min-width: 250px;
  text-align: left;
}

.hero-rotating::after {
  content: '|';
  animation: blink 1s infinite;
  color: #fde68a;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero .tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.4s both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
  margin-bottom: 4rem;
}

.btn {
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.4);
}

.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(5px); }

.hero-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.quick-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s;
}

.quick-stat:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.12);
}

.quick-stat-num {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, #fbbf24, #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quick-stat-label {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #0f1f44 0%, #1e3a8a 50%, #3b82f6 100%);
  color: var(--white);
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.page-hero h1 .gradient-text {
  background: linear-gradient(120deg, #fef9c3, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.breadcrumb a:hover { color: white; }

.breadcrumb span { color: rgba(255,255,255,0.5); }

/* Marquee */
.marquee-section {
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Sections */
section { padding: 5rem 2rem; position: relative; }

.container { max-width: 1200px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(30, 58, 138, 0.15);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 800;
  line-height: 1.15;
}

.section-header h2 .accent {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Preview Cards */
.preview-section { background: var(--bg-section); }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.preview-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
  border-color: transparent;
}

.preview-card:hover::before {
  transform: scaleX(1);
}

.preview-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.4s;
  color: white;
}

.preview-card:nth-child(1) .preview-icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.preview-card:nth-child(2) .preview-icon { background: linear-gradient(135deg, var(--emerald), #34d399); }
.preview-card:nth-child(3) .preview-icon { background: linear-gradient(135deg, var(--purple), #a78bfa); }
.preview-card:nth-child(4) .preview-icon { background: linear-gradient(135deg, var(--pink), #f472b6); }
.preview-card:nth-child(5) .preview-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.preview-card:nth-child(6) .preview-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }

.preview-card:hover .preview-icon {
  transform: scale(1.1) rotate(-8deg);
}

.preview-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.preview-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.preview-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s;
}

.preview-link::after {
  content: '→';
  transition: transform 0.3s;
}

.preview-card:hover .preview-link::after {
  transform: translateX(5px);
}

/* Highlights / Why Us */
.highlights-strip {
  background: var(--white);
  padding: 4rem 2rem;
}

.highlights-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  transition: all 0.4s;
}

.highlight-item:hover {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(139, 92, 246, 0.05));
  transform: translateY(-5px);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1rem;
  transition: all 0.4s;
}

.highlight-item:nth-child(1) .highlight-icon { background: linear-gradient(135deg, #fbbf24, #f59e0b); box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3); }
.highlight-item:nth-child(2) .highlight-icon { background: linear-gradient(135deg, var(--emerald), #34d399); box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); }
.highlight-item:nth-child(3) .highlight-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3); }
.highlight-item:nth-child(4) .highlight-icon { background: linear-gradient(135deg, var(--purple), #a78bfa); box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3); }
.highlight-item:nth-child(5) .highlight-icon { background: linear-gradient(135deg, var(--pink), #f472b6); box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3); }

.highlight-item:hover .highlight-icon {
  transform: scale(1.1) rotate(-10deg);
}

.highlight-item h4 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.highlight-item p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  top: -300px;
  left: -200px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  bottom: -250px;
  right: -150px;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  font-weight: 800;
  position: relative;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .cta-buttons {
  margin-bottom: 0;
  position: relative;
}

/* Services Page */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-detail-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
  border-color: transparent;
}

.service-detail-card:hover::before {
  transform: scaleX(1);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: white;
  transition: all 0.4s;
}

.service-detail-card:nth-child(1) .service-detail-icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); box-shadow: 0 10px 25px rgba(30, 58, 138, 0.25); }
.service-detail-card:nth-child(2) .service-detail-icon { background: linear-gradient(135deg, var(--emerald), #34d399); box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25); }
.service-detail-card:nth-child(3) .service-detail-icon { background: linear-gradient(135deg, var(--purple), #a78bfa); box-shadow: 0 10px 25px rgba(139, 92, 246, 0.25); }
.service-detail-card:nth-child(4) .service-detail-icon { background: linear-gradient(135deg, var(--pink), #f472b6); box-shadow: 0 10px 25px rgba(236, 72, 153, 0.25); }
.service-detail-card:nth-child(5) .service-detail-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25); }
.service-detail-card:nth-child(6) .service-detail-icon { background: linear-gradient(135deg, #6366f1, #818cf8); box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25); }
.service-detail-card:nth-child(7) .service-detail-icon { background: linear-gradient(135deg, #ef4444, #f87171); box-shadow: 0 10px 25px rgba(239, 68, 68, 0.25); }

.service-detail-card:hover .service-detail-icon {
  transform: scale(1.1) rotate(-8deg);
}

.service-detail-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.service-detail-card > p {
  color: var(--text-gray);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.service-detail-card h4 {
  color: var(--primary);
  font-size: 0.85rem;
  margin: 1rem 0 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-features {
  list-style: none;
  margin-bottom: 1rem;
}

.service-features li {
  padding: 0.4rem 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.88rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--emerald), #34d399);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: bold;
}

.who-needs-box {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(139, 92, 246, 0.05));
  padding: 0.9rem;
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  margin-top: 1rem;
  font-size: 0.85rem;
}

.who-needs-box strong { color: var(--primary); }

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.industry-card {
  background: var(--white);
  padding: 2rem 1.2rem;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.industry-card > * {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: transparent;
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card:hover h3,
.industry-card:hover p {
  color: white;
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
  display: block;
  transition: transform 0.4s;
}

.industry-card:hover .industry-icon {
  transform: scale(1.2) rotate(-10deg);
}

.industry-card h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.industry-card p {
  color: var(--text-gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Tax Calculator */
.tax-calc-wrapper {
  max-width: 950px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(30, 58, 138, 0.15);
  border: 1px solid var(--border);
}

.tax-calc-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
  color: var(--white);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tax-calc-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
  position: relative;
}

.tax-calc-header p {
  opacity: 0.9;
  font-size: 0.9rem;
  position: relative;
}

.year-toggle {
  display: flex;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 4px;
  margin: 1rem auto 0;
  max-width: 400px;
  backdrop-filter: blur(10px);
  position: relative;
}

.year-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.8);
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.3s;
}

.year-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.tax-calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tax-calc-inputs {
  padding: 2rem;
  border-right: 1px solid var(--border);
}

.tax-calc-results {
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light), #ffffff);
}

.tax-input-group { margin-bottom: 1.1rem; }

.tax-input-group label {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
}

.tax-input-group .label-hint {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.75rem;
  margin-left: 0.3rem;
}

.tax-input-wrapper { position: relative; }

.tax-input-wrapper .currency {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.tax-input-group input {
  width: 100%;
  padding: 0.75rem 0.8rem 0.75rem 2.4rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s;
  font-weight: 600;
}

.tax-input-group input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.age-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.age-btn {
  padding: 0.6rem;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: all 0.3s;
}

.age-btn:hover { border-color: var(--primary-light); }

.age-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.tax-result-card {
  background: var(--white);
  padding: 1.3rem;
  border-radius: 16px;
  margin-bottom: 0.9rem;
  border: 2px solid transparent;
}

.tax-result-card.recommended {
  border-color: var(--success);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
  position: relative;
  transform: scale(1.02);
}

.tax-result-card.recommended::after {
  content: '✓ BEST';
  position: absolute;
  top: -12px;
  right: 15px;
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.tax-result-card h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.tax-result-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.88rem;
}

.tax-result-row .label { color: var(--text-gray); }
.tax-result-row .value { color: var(--text-dark); font-weight: 700; }
.tax-result-row.total {
  border-top: 1px solid var(--border);
  margin-top: 0.3rem;
  padding-top: 0.5rem;
  font-size: 0.98rem;
}
.tax-result-row.total .value { color: var(--primary); font-size: 1.1rem; font-weight: 800; }

.tax-savings-box {
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 0.8rem;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.tax-savings-box h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.95;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.tax-savings-box .amount {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.tax-savings-box p {
  font-size: 0.85rem;
  opacity: 0.95;
}

.tax-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 0.9rem;
  border-radius: 12px;
  margin-top: 0.8rem;
  text-align: center;
  display: block;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
  transition: all 0.3s;
}

.tax-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.35);
}

.tax-disclaimer {
  font-size: 0.72rem;
  color: var(--text-gray);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.5;
}

/* Resources */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--purple), var(--pink));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.12);
  border-color: transparent;
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  color: white;
  transition: all 0.4s;
}

.resource-card:nth-child(1) .resource-icon-wrap { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.resource-card:nth-child(2) .resource-icon-wrap { background: linear-gradient(135deg, var(--emerald), #34d399); }
.resource-card:nth-child(3) .resource-icon-wrap { background: linear-gradient(135deg, var(--purple), #a78bfa); }
.resource-card:nth-child(4) .resource-icon-wrap { background: linear-gradient(135deg, var(--pink), #f472b6); }
.resource-card:nth-child(5) .resource-icon-wrap { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.resource-card:nth-child(6) .resource-icon-wrap { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }

.resource-card:hover .resource-icon-wrap {
  transform: scale(1.1) rotate(8deg);
}

.resource-card h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.resource-card p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.download-btn {
  background: linear-gradient(135deg, var(--bg-light), #ffffff);
  color: var(--primary);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.download-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto 4rem;
}

.about-text h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.15;
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.about-visual {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent), var(--purple));
  background-size: 300% 300%;
  border-radius: 24px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  animation: gradientShift 8s ease infinite;
}

.about-visual h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: 800;
}

.about-counter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.counter-item {
  background: rgba(255,255,255,0.15);
  padding: 1.2rem;
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.counter-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.counter-label {
  font-size: 0.78rem;
  opacity: 0.95;
  font-weight: 600;
}

/* Testimonials */
.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.1);
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--purple));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.testimonial-info h4 {
  color: var(--primary);
  margin-bottom: 0.1rem;
  font-size: 1rem;
  font-weight: 700;
}

.testimonial-info p {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  width: 32px;
  border-radius: 5px;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 2;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-arrow:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow.prev { left: -10px; }
.testimonial-arrow.next { right: -10px; }

/* FAQ */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.08);
  border-color: var(--primary-light);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.3rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
  font-weight: 700;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 1.3rem 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* Calendar */
.calendar-tabs {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.calendar-tab {
  padding: 0.55rem 1.4rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-gray);
  transition: all 0.3s;
  font-family: inherit;
  font-size: 0.85rem;
}

.calendar-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3);
}

.calendar-content { display: none; }
.calendar-content.active { display: block; }

.due-date-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.due-date-item {
  background: var(--white);
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  transition: all 0.4s;
}

.due-date-item:hover {
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1);
  transform: translateX(8px);
}

.due-date-item.urgent { border-left-color: #ef4444; }
.due-date-item.warning { border-left-color: #f59e0b; }
.due-date-item.normal { border-left-color: var(--success); }

.due-date-day {
  background: linear-gradient(135deg, var(--bg-light), #ffffff);
  color: var(--primary);
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  text-align: center;
  min-width: 75px;
  font-weight: 800;
  border: 1px solid var(--border);
}

.due-date-item.urgent .due-date-day {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #b91c1c;
  border-color: #fca5a5;
}

.due-date-item.warning .due-date-day {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border-color: #fcd34d;
}

.due-date-item.normal .due-date-day {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #047857;
  border-color: #6ee7b7;
}

.due-date-day .day { font-size: 1.4rem; line-height: 1; display: block; }
.due-date-day .month { font-size: 0.68rem; text-transform: uppercase; opacity: 0.9; font-weight: 700; }

.due-date-info h4 {
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  font-size: 1rem;
  font-weight: 700;
}

.due-date-info p {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.due-date-tag {
  background: linear-gradient(135deg, var(--bg-light), var(--white));
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

/* Contact */
.contact-page {
  background: linear-gradient(135deg, #0f1f44 0%, #1e3a8a 50%, #3b82f6 100%);
  color: var(--white);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-page::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.25) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.contact-page::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(15px);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(8px);
  border-color: rgba(255,255,255,0.3);
}

.contact-item-icon {
  font-size: 1.3rem;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text h4 {
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.contact-item-text p {
  font-size: 0.98rem;
  font-weight: 600;
}

.business-hours {
  margin-top: 0.5rem;
  padding: 1.2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
}

.business-hours h4 {
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
  font-weight: 700;
}

.business-hours p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  opacity: 0.95;
}

.contact-form {
  background: var(--white);
  padding: 2.2rem;
  border-radius: 20px;
  color: var(--text-dark);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.contact-form h3 {
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.contact-form .form-subtitle {
  color: var(--text-gray);
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}

.form-group { margin-bottom: 0.9rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 0.95rem;
  border: none;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.form-note {
  margin-top: 0.8rem;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.78rem;
}

.form-message {
  padding: 0.9rem;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  display: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-message.success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  display: block;
}

/* Footer */
footer {
  background: #0a1530;
  color: var(--white);
  padding: 3.5rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--purple), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  line-height: 2;
  display: block;
  transition: all 0.3s;
  font-size: 0.92rem;
  cursor: pointer;
}

.footer-section a:hover { 
  color: var(--accent-light);
  transform: translateX(3px);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.social-icons {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  transform: translateY(-4px) rotate(8deg);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

/* Floating elements */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
}

.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 998;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(30, 58, 138, 0.5);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 21, 48, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent));
  color: var(--white);
  padding: 1.5rem;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}

.modal-header h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-weight: 800;
}

.modal-header p {
  opacity: 0.95;
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.modal-close:hover { 
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.modal-body { padding: 1.5rem; }

.modal-note {
  background: linear-gradient(135deg, var(--bg-light), #ffffff);
  padding: 0.9rem;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-top: 0.5rem;
  border: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 1.2rem;
  }
  
  .nav-links.active { display: flex; }
  
  .hero { padding: 7rem 1.5rem 4rem; min-height: 90vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-quick-stats { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .hero-rotating { min-width: auto; display: block; margin-top: 0.5rem; }
  .floating-shape { display: none; }
  
  section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  
  .tax-calc-body { grid-template-columns: 1fr; }
  .tax-calc-inputs { border-right: none; border-bottom: 1px solid var(--border); }
  
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
  
  .testimonial-arrow.prev { left: 5px; }
  .testimonial-arrow.next { right: 5px; }
}