/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #334155;
  overflow-x: hidden;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: #e2e8f0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  color: #7c3aed;
  font-weight: 800;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo h2 a {
  color: inherit;
  text-decoration: none;
}

.logo h2:hover {
  color: #6d28d9;
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #7c3aed;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.nav-btn.active {
  background: linear-gradient(135deg, #6d28d9 0%, #db2777 100%);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(124, 58, 237, 0.1);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #7c3aed;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, #6d28d9 0%, #db2777 100%);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-visual {
  position: relative;
  height: 400px;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 30%;
  animation-delay: 2s;
}

.element-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 40%;
  animation-delay: 4s;
}

.element-4 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 10%;
  animation-delay: 1s;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  z-index: 1;
}

/* Quote Hero */
.quote-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-hero h1 {
  color: white;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.quote-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e293b;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.service-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.service-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-learn-more,
.btn-quote {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-quote {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-learn-more {
  background: transparent;
  color: #7c3aed;
  border: 2px solid #7c3aed;
}

.btn-learn-more:hover {
  background: #7c3aed;
  color: white;
  transform: translateY(-2px);
}

/* About Section */
.about {
  padding: 6rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.about-text p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature:hover {
  background: #7c3aed;
  color: white;
  transform: translateX(5px);
}

.feature i {
  color: #7c3aed;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.feature:hover i {
  color: white;
}

.feature span {
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s ease;
}

.feature:hover span {
  color: white;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.stat:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #7c3aed;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.stat:hover .stat-number {
  color: white;
}

.stat p {
  color: #64748b;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.stat:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background: #f8fafc;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 2rem;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.portfolio-overlay p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-tags span {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #f8fafc;
  border: 2px solid transparent;
}

.contact-item:hover {
  background: white;
  border-color: #7c3aed;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item:hover i {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.contact-item div h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.contact-item div p {
  color: #7c3aed;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-item div span {
  color: #64748b;
  font-size: 0.9rem;
}

/* Form Styles */
.contact-form,
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f1f5f9;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  transition: all 0.3s ease;
  font-size: 1rem;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox Styles */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #7c3aed;
  margin: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Quote Section */
.quote-section {
  padding: 4rem 0 6rem;
  background: #f8fafc;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-weight: 800;
}

.quote-info p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.quote-benefits {
  margin: 2.5rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
  border-color: #7c3aed;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.benefit-item i {
  color: #10b981;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-item span {
  font-weight: 500;
  color: #374151;
}

.contact-info-quote {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
  border: 2px solid #e2e8f0;
}

.contact-info-quote h3 {
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-size: 1.2rem;
}

.contact-info-quote .contact-item {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.contact-info-quote .contact-item:last-child {
  margin-bottom: 0;
}

.contact-info-quote .contact-item div span {
  display: block;
  font-weight: 600;
  color: #7c3aed;
}

.contact-info-quote .contact-item div small {
  color: #64748b;
  font-size: 0.8rem;
}

.quote-form h3 {
  margin-bottom: 2rem;
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s ease;
}

.success-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1.5rem;
  animation: bounce 1s ease;
}

.modal-content h2 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 800;
}

.modal-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.next-steps {
  text-align: left;
  margin: 2rem 0;
}

.next-steps h3 {
  color: #1e293b;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #64748b;
}

.next-steps li i {
  color: #7c3aed;
  width: 20px;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 4rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
}

.footer-section h3 {
  font-size: 1.5rem;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.contact-info-footer p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #94a3b8;
}

.contact-info-footer i {
  color: #7c3aed;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  font-size: 1.2rem;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* AOS Animation Classes */
[data-aos] {
  opacity: 0;
  transition: all 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* Service Page Specific Styles */
.service-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.service-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.service-hero-text {
  color: white;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb i {
  font-size: 0.7rem;
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.service-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.service-hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.service-hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.service-hero-visual {
  position: relative;
  height: 500px;
}

.service-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.code-window {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.window-header {
  background: #334155;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red {
  background: #ef4444;
}
.control.yellow {
  background: #f59e0b;
}
.control.green {
  background: #10b981;
}

.window-title {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}

.code-content {
  padding: 1.5rem;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.code-line {
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.tag {
  color: #7c3aed;
}

.tech-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.tech-badge i {
  font-size: 1.2rem;
}

/* App Development Specific Styles */
.app-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-mockup {
  position: relative;
  z-index: 2;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #1e293b;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #64748b;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.app-interface {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
}

.time {
  font-weight: 700;
}

.indicators {
  display: flex;
  gap: 0.5rem;
}

.indicators i {
  font-size: 0.7rem;
}

.app-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.app-nav h3 {
  color: #1e293b;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.app-nav i {
  color: #7c3aed;
  font-size: 1.1rem;
}

.app-content {
  flex: 1;
  padding: 1.5rem 1rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.feature-text h4 {
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.feature-text p {
  color: #64748b;
  font-size: 0.8rem;
  margin: 0;
}

/* App Types Section */
.app-types-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.app-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.app-type-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.app-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.app-type-card:hover::before {
  transform: scaleX(1);
}

.app-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.app-type-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.app-type-card:hover .app-type-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.app-type-icon i {
  font-size: 2rem;
  color: white;
}

.app-type-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.app-type-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.app-features {
  list-style: none;
  margin-bottom: 2rem;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
  font-weight: 500;
}

.app-features i {
  color: #10b981;
  font-size: 0.9rem;
}

.app-platforms {
  display: flex;
  gap: 1rem;
}

.app-platforms span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f5f9;
  color: #7c3aed;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.app-type-card:hover .app-platforms span {
  background: #7c3aed;
  color: white;
  border-color: #7c3aed;
}

.app-platforms i {
  font-size: 1rem;
}

/* Services Overview */
.services-overview {
  padding: 6rem 0;
  background: #f8fafc;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.service-detailed-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-detailed-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-detailed-card:hover::before {
  transform: scaleX(1);
}

.service-detailed-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.service-detailed-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.service-detailed-card:hover .service-detailed-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.service-detailed-icon i {
  font-size: 2rem;
  color: white;
}

.service-detailed-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.service-detailed-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
  font-weight: 500;
}

.service-features i {
  color: #10b981;
  font-size: 0.9rem;
}

.service-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tech-stack span {
  background: #f1f5f9;
  color: #7c3aed;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-detailed-card:hover .service-tech-stack span {
  background: #7c3aed;
  color: white;
  border-color: #7c3aed;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background: white;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #7c3aed, #ec4899);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
  text-align: right;
}

.process-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
  z-index: 2;
}

.process-content {
  width: 45%;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f1f5f9;
  transition: all 0.4s ease;
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.process-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.process-step:nth-child(even) .process-icon {
  margin-left: auto;
  margin-right: 0;
}

.process-icon i {
  font-size: 1.5rem;
  color: white;
}

.process-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.process-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.process-deliverables {
  list-style: none;
  margin-bottom: 1.5rem;
}

.process-deliverables li {
  color: #374151;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.process-deliverables li::before {
  content: "•";
  color: #7c3aed;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.process-duration {
  background: #f8fafc;
  color: #7c3aed;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  border: 2px solid #e2e8f0;
}

/* Technologies Section */
.technologies-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.tech-category {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f1f5f9;
  transition: all 0.4s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.tech-category h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1e293b;
}

.tech-category h3 i {
  color: #7c3aed;
  font-size: 1.3rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tech-item:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.tech-item i {
  font-size: 2.5rem;
  color: #7c3aed;
  transition: color 0.3s ease;
}

.tech-item:hover i {
  color: white;
}

.tech-item span {
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
  transition: color 0.3s ease;
}

.tech-item:hover span {
  color: white;
}

/* App Features Section */
.app-features-section {
  padding: 6rem 0;
  background: white;
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.app-feature-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.app-feature-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.app-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.app-feature-card:hover .app-feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.app-feature-icon i {
  font-size: 2rem;
  color: white;
}

.app-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.app-feature-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: #f8fafc;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.why-choose-text p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.why-feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.why-feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.why-feature-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.achievement-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.achievement-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.achievement-card:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  background: rgba(255, 255, 255, 0.2);
}

.achievement-icon i {
  font-size: 1.5rem;
  color: white;
}

.achievement-card h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #7c3aed;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.achievement-card:hover h3 {
  color: white;
}

.achievement-card p {
  color: #64748b;
  font-weight: 600;
  transition: color 0.3s ease;
  margin: 0;
}

.achievement-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* SEO Services Specific Styles */
.seo-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-results-mockup {
  position: relative;
  z-index: 2;
  width: 350px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.search-bar {
  background: #f8fafc;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.search-input {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 25px;
  border: 2px solid #e2e8f0;
  font-size: 0.9rem;
  color: #64748b;
}

.search-input i {
  color: #7c3aed;
  font-size: 1rem;
}

.search-results {
  padding: 1rem;
  background: white;
}

.search-result {
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.search-result:last-child {
  border-bottom: none;
}

.search-result.featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.result-url {
  color: #10b981;
  font-size: 0.8rem;
  font-weight: 500;
}

.rank-badge {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
}

.search-result h3 {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.search-result.featured h3 {
  color: #7c3aed;
}

.search-result p {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.seo-metric {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e293b;
  font-size: 0.8rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 120px;
}

.seo-metric i {
  font-size: 1.5rem;
  color: #7c3aed;
  flex-shrink: 0;
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 900;
  color: #7c3aed;
  transition: color 0.3s ease;
}

.metric-label {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* SEO Benefits Section */
.seo-benefits-section {
  padding: 6rem 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.benefit-card {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  background: white;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.benefit-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.benefit-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-stat {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-color: transparent;
}

.benefit-stat .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #7c3aed;
  transition: color 0.3s ease;
}

.benefit-stat:hover .stat-number {
  color: white;
}

.benefit-stat .stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  transition: color 0.3s ease;
}

.benefit-stat:hover .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Service Page */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .about-content,
  .contact-content,
  .quote-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-learn-more,
  .btn-quote {
    width: 100%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-visual {
    height: 250px;
  }

  .quote-hero h1 {
    font-size: 2.2rem;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .service-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .service-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .services-detailed-grid,
  .app-types-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detailed-card,
  .app-type-card {
    padding: 2rem 1.5rem;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 80px;
  }

  .process-step:nth-child(even) .process-content {
    text-align: left;
  }

  .process-number {
    left: 30px;
    transform: translateX(-50%);
  }

  .process-content {
    width: 100%;
  }

  .process-step:nth-child(even) .process-icon {
    margin-left: 0;
    margin-right: auto;
  }

  .tech-categories {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-category {
    padding: 2rem;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .achievement-cards {
    grid-template-columns: 1fr 1fr;
  }

  .app-features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .app-feature-card {
    padding: 2rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
    padding: 15px;
  }

  .seo-visual-container {
    height: 300px;
  }

  .seo-metric {
    min-width: 100px;
    padding: 0.75rem;
  }

  .metric-value {
    font-size: 1.1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .contact-form,
  .quote-form {
    padding: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .service-hero h1 {
    font-size: 2rem;
  }

  .service-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .service-detailed-card,
  .tech-category,
  .app-type-card {
    padding: 1.5rem;
  }

  .process-content {
    padding: 2rem 1.5rem;
  }

  .achievement-cards {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
    padding: 12px;
  }

  .app-nav h3 {
    font-size: 1rem;
  }

  .feature-card {
    padding: 0.75rem;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .feature-text h4 {
    font-size: 0.8rem;
  }

  .feature-text p {
    font-size: 0.7rem;
  }

  .seo-visual-container {
    height: 250px;
  }

  .search-results-mockup {
    width: 280px;
  }

  .search-result h3 {
    font-size: 0.9rem;
  }

  .search-result p {
    font-size: 0.8rem;
  }

  .seo-metric {
    padding: 0.5rem;
    min-width: 90px;
  }

  .metric-value {
    font-size: 1.5rem;
  }

  .metric-label {
    font-size: 0.6rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-stat {
    padding: 1rem;
  }

  .benefit-stat .stat-number {
    font-size: 1.5rem;
  }

  .benefit-stat .stat-label {
    font-size: 0.8rem;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .search-results-mockup {
    width: 240px;
  }

  .seo-metric {
    position: relative !important;
    margin: 1rem auto;
    display: block;
    width: fit-content;
  }

  .floating-elements {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .service-hero-visual {
    height: auto;
    padding: 2rem 0;
  }
}

/* Print Styles */
@media print {
  .seo-metric,
  .floating-elements,
  .hero-bg-pattern {
    display: none;
  }

  .search-results-mockup {
    box-shadow: none;
    border: 2px solid #e2e8f0;
  }

  .benefit-card,
  .service-detailed-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}

CTA Section
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.cta-contact-info {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.cta-contact-item i {
  color: white;
  font-size: 1.2rem;
}

/* SEO Services Specific Styles - Enhanced */
.seo-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-results-mockup {
  position: relative;
  z-index: 2;
  width: 380px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.search-bar {
  background: #f8fafc;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.search-input {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 30px;
  border: 2px solid #e2e8f0;
  font-size: 0.95rem;
  color: #64748b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.search-input:hover {
  border-color: #7c3aed;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.search-input i {
  color: #7c3aed;
  font-size: 1.1rem;
}

.search-results {
  padding: 1.5rem;
  background: white;
}

.search-result {
  padding: 1.25rem 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.search-result:last-child {
  border-bottom: none;
}

.search-result:hover {
  transform: translateX(5px);
}

.search-result.featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid rgba(124, 58, 237, 0.15);
  position: relative;
  overflow: hidden;
}

.search-result.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7c3aed, #ec4899);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.result-url {
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.result-url:hover {
  text-decoration: underline;
}

.rank-badge {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
  animation: pulse 2s infinite;
}

.search-result h3 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-result h3:hover {
  color: #7c3aed;
}

.search-result.featured h3 {
  color: #7c3aed;
  font-weight: 700;
}

.search-result p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.search-result.featured p {
  color: #374151;
  font-weight: 500;
}

.seo-metric {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 8s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 140px;
  transition: all 0.3s ease;
}

.seo-metric:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.seo-metric i {
  font-size: 1.8rem;
  color: #7c3aed;
  flex-shrink: 0;
  padding: 0.5rem;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 50%;
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #7c3aed;
  transition: color 0.3s ease;
}

.metric-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SEO Benefits Section - Enhanced */
.seo-benefits-section {
  padding: 6rem 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
}

.benefit-card {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  background: white;
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.benefit-icon i {
  font-size: 2.2rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.benefit-card p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.benefit-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-stat::before {
  opacity: 1;
}

.benefit-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #7c3aed;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.benefit-card:hover .benefit-stat .stat-number {
  color: white;
  transform: scale(1.1);
}

.benefit-stat .stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-align: center;
}

.benefit-card:hover .benefit-stat .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

/* Responsive Design Improvements */
@media (max-width: 1024px) {
  .service-hero-content {
    gap: 3rem;
  }

  .service-hero-visual {
    height: 450px;
  }

  .search-results-mockup {
    width: 320px;
  }

  .seo-metric {
    min-width: 120px;
    padding: 1rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .service-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .service-hero h1 {
    font-size: 2.8rem;
  }

  .service-hero-stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .service-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .service-hero-visual {
    height: 350px;
  }

  .search-results-mockup {
    width: 300px;
  }

  .seo-metric {
    min-width: 100px;
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .seo-metric i {
    font-size: 1.5rem;
    padding: 0.3rem;
  }

  .metric-value {
    font-size: 1.1rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }

  .services-detailed-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detailed-card,
  .benefit-card {
    padding: 2rem 1.5rem;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
  }

  .benefit-icon i {
    font-size: 1.8rem;
  }

  .benefit-card h3 {
    font-size: 1.4rem;
  }

  .benefit-card p {
    font-size: 1rem;
  }

  .benefit-stat {
    padding: 1.5rem;
  }

  .benefit-stat .stat-number {
    font-size: 2rem;
  }

  .benefit-stat .stat-label {
    font-size: 0.9rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 2.2rem;
  }

  .service-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .service-hero-visual {
    height: 280px;
  }

  .search-results-mockup {
    width: 260px;
  }

  .search-bar {
    padding: 1rem;
  }

  .search-input {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .search-results {
    padding: 1rem;
  }

  .search-result {
    padding: 1rem 0;
  }

  .search-result.featured {
    padding: 1rem;
  }

  .search-result h3 {
    font-size: 1rem;
  }

  .search-result p {
    font-size: 0.85rem;
  }

  .seo-metric {
    padding: 0.5rem;
    min-width: 80px;
    gap: 0.5rem;
  }

  .seo-metric i {
    font-size: 1.2rem;
    padding: 0.2rem;
  }

  .metric-value {
    font-size: 1rem;
  }

  .metric-label {
    font-size: 0.6rem;
  }

  .service-detailed-card,
  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i {
    font-size: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }

  .benefit-stat {
    padding: 1rem;
  }

  .benefit-stat .stat-number {
    font-size: 1.8rem;
  }

  .benefit-stat .stat-label {
    font-size: 0.8rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .search-results-mockup {
    width: 240px;
  }

  .seo-metric {
    position: relative !important;
    margin: 1rem auto;
    display: block;
    width: fit-content;
  }

  .floating-elements {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .service-hero-visual {
    height: auto;
    padding: 2rem 0;
  }
}

/* Print Styles */
@media print {
  .seo-metric,
  .floating-elements,
  .hero-bg-pattern {
    display: none;
  }

  .search-results-mockup {
    box-shadow: none;
    border: 2px solid #e2e8f0;
  }

  .benefit-card,
  .service-detailed-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.cta-contact-info {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.cta-contact-item i {
  color: white;
  font-size: 1.2rem;
}

/* SEO Services Specific Styles - Enhanced */
.seo-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-results-mockup {
  position: relative;
  z-index: 2;
  width: 380px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.search-bar {
  background: #f8fafc;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.search-input {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 30px;
  border: 2px solid #e2e8f0;
  font-size: 0.95rem;
  color: #64748b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.search-input:hover {
  border-color: #7c3aed;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.search-input i {
  color: #7c3aed;
  font-size: 1.1rem;
}

.search-results {
  padding: 1.5rem;
  background: white;
}

.search-result {
  padding: 1.25rem 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.search-result:last-child {
  border-bottom: none;
}

.search-result:hover {
  transform: translateX(5px);
}

.search-result.featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid rgba(124, 58, 237, 0.15);
  position: relative;
  overflow: hidden;
}

.search-result.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7c3aed, #ec4899);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.result-url {
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.result-url:hover {
  text-decoration: underline;
}

.rank-badge {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
  animation: pulse 2s infinite;
}

.search-result h3 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-result h3:hover {
  color: #7c3aed;
}

.search-result.featured h3 {
  color: #7c3aed;
  font-weight: 700;
}

.search-result p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.search-result.featured p {
  color: #374151;
  font-weight: 500;
}

.seo-metric {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 8s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 140px;
  transition: all 0.3s ease;
}

.seo-metric:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.seo-metric i {
  font-size: 1.8rem;
  color: #7c3aed;
  flex-shrink: 0;
  padding: 0.5rem;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 50%;
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #7c3aed;
  transition: color 0.3s ease;
}

.metric-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SEO Benefits Section - Enhanced */
.seo-benefits-section {
  padding: 6rem 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
}

.benefit-card {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  background: white;
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.2);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.benefit-icon i {
  font-size: 2.2rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.benefit-card p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.benefit-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-stat::before {
  opacity: 1;
}

.benefit-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #7c3aed;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.benefit-card:hover .benefit-stat .stat-number {
  color: white;
  transform: scale(1.1);
}

.benefit-stat .stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-align: center;
}

.benefit-card:hover .benefit-stat .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

/* Responsive Design Improvements */
@media (max-width: 1024px) {
  .service-hero-content {
    gap: 3rem;
  }

  .service-hero-visual {
    height: 450px;
  }

  .search-results-mockup {
    width: 320px;
  }

  .seo-metric {
    min-width: 120px;
    padding: 1rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .service-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .service-hero h1 {
    font-size: 2.8rem;
  }

  .service-hero-stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .service-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .service-hero-visual {
    height: 350px;
  }

  .search-results-mockup {
    width: 300px;
  }

  .seo-metric {
    min-width: 100px;
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .seo-metric i {
    font-size: 1.5rem;
    padding: 0.3rem;
  }

  .metric-value {
    font-size: 1.1rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }

  .services-detailed-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detailed-card,
  .benefit-card {
    padding: 2rem 1.5rem;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
  }

  .benefit-icon i {
    font-size: 1.8rem;
  }

  .benefit-card h3 {
    font-size: 1.4rem;
  }

  .benefit-card p {
    font-size: 1rem;
  }

  .benefit-stat {
    padding: 1.5rem;
  }

  .benefit-stat .stat-number {
    font-size: 2rem;
  }

  .benefit-stat .stat-label {
    font-size: 0.9rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 2.2rem;
  }

  .service-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .service-hero-visual {
    height: 280px;
  }

  .search-results-mockup {
    width: 260px;
  }

  .search-bar {
    padding: 1rem;
  }

  .search-input {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .search-results {
    padding: 1rem;
  }

  .search-result {
    padding: 1rem 0;
  }

  .search-result.featured {
    padding: 1rem;
  }

  .search-result h3 {
    font-size: 1rem;
  }

  .search-result p {
    font-size: 0.85rem;
  }

  .seo-metric {
    padding: 0.5rem;
    min-width: 80px;
    gap: 0.5rem;
  }

  .seo-metric i {
    font-size: 1.2rem;
    padding: 0.2rem;
  }

  .metric-value {
    font-size: 1rem;
  }

  .metric-label {
    font-size: 0.6rem;
  }

  .service-detailed-card,
  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i {
    font-size: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }

  .benefit-stat {
    padding: 1rem;
  }

  .benefit-stat .stat-number {
    font-size: 1.8rem;
  }

  .benefit-stat .stat-label {
    font-size: 0.8rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .search-results-mockup {
    width: 240px;
  }

  .seo-metric {
    position: relative !important;
    margin: 1rem auto;
    display: block;
    width: fit-content;
  }

  .floating-elements {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .service-hero-visual {
    height: auto;
    padding: 2rem 0;
  }
}

/* Print Styles */
@media print {
  .seo-metric,
  .floating-elements,
  .hero-bg-pattern {
    display: none;
  }

  .search-results-mockup {
    box-shadow: none;
    border: 2px solid #e2e8f0;
  }

  .benefit-card,
  .service-detailed-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}