/*
Theme Name: DigiQ Labs Theme
Theme URI: https://digiqlabs.com/
Author: Raghavendhar Garlapati
Author URI: https://digiqlabs.com
Description: Custom theme for digital marketing agency - Remote hosting compatible
Version: 2.0
*/

/* Base styles for single page layout */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 0; /* Remove default padding when using single page */
}

body.single-page-scroll {
  padding-top: 0;
}

/* Animated Responsive Menu Styles */
#main-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: rgba(24, 28, 36, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 2rem;
  height: 70px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  height: 4px;
  width: 100%;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.4s;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
  margin-left: 2rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #00e6d0;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.nav-menu a:hover:after, .nav-menu a.active:after {
  width: 100%;
}

/* Main navigation - horizontal layout */
.nav-menu > ul {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  display: flex;
  align-items: center;
  position: relative;
}

/* DROPDOWN SUBMENUS - Force vertical layout */
.nav-menu ul ul {
  display: block !important;
  flex-direction: column !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  min-width: 180px;
  z-index: 9999;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition-delay: 0s;
  pointer-events: none;
  gap: 0 !important;
}

/* Force submenu list items to stack vertically */
.nav-menu ul ul li {
  width: 100% !important;
  display: block !important;
  flex: none !important;
  flex-direction: column !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  align-items: stretch !important;
}

/* Third-level and deeper submenus */
.nav-menu ul ul ul {
  display: block !important;
  flex-direction: column !important;
  gap: 0 !important;
  top: 0;
  left: 100%;
}

.nav-menu ul ul ul li {
  width: 100% !important;
  display: block !important;
  flex: none !important;
  gap: 0 !important;
}

/* Show dropdown on hover */
.nav-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
  pointer-events: auto;
}

/* Focus-within for keyboard accessibility */
.nav-menu li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
  pointer-events: auto;
}

/* Hide dropdown when not hovering */
.nav-menu li:not(:hover):not(:focus-within) > ul {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition-delay: 0s;
  pointer-events: none;
}

/* Submenu link styles */
.nav-menu ul ul a {
  color: #fff;
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-menu ul ul a:hover {
  background: #00e6d0;
  color: #181c24;
}

.nav-menu ul ul a:after {
  display: none; /* Remove underline animation from dropdown links */
}

/* Arrow indicator for dropdowns */
.nav-menu li.menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 8px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-menu li.menu-item-has-children:hover > a:after {
  transform: rotate(180deg);
}

/* Alternative: Modern SVG arrow approach */
.nav-menu li.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}

.nav-menu li.menu-item-has-children > a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li.menu-item-has-children:hover > a:before {
  transform: translateY(-50%) rotate(180deg);
}

/* WordPress Block Navigation Support */
.wp-block-navigation .wp-block-navigation__submenu-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 8px;
}

.wp-block-navigation .has-child:hover .wp-block-navigation__submenu-icon {
  transform: rotate(180deg);
}

/* Hide the default WordPress navigation triangle */
.wp-block-navigation .wp-block-navigation__submenu-icon svg {
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-navigation .has-child:hover .wp-block-navigation__submenu-icon svg {
  transform: rotate(180deg);
}

/* Hamburger animation */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

body.menu-open {
  overflow: hidden;
}

/* Single Page Scroll adjustments for regular pages */
.regular-page {
  padding-top: 70px;
}

/* Compact Footer Styles - Override previous footer styles */
.site-footer.compact-footer {
  margin-top: 0;
  padding: 0;
  line-height: 1.4;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-boxes {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 0;
  gap: 30px;
  min-height: 120px;
}

.footer-box {
  flex: 1;
  min-width: 200px;
}

.footer-box h4,
.footer-box h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  letter-spacing: 0.3px;
}

.footer-box p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Company Box */
.company-box .footer-logo h4 {
  margin-bottom: 8px;
}

.company-box .footer-logo a {
  text-decoration: none;
}

.company-box .footer-logo img {
  max-height: 40px;
  width: auto;
}

.company-desc {
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
  opacity: 0.8 !important;
}

/* Links Box */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.3s ease;
  display: block;
  padding: 2px 0;
}

.footer-links a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Contact Box */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.contact-item .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.contact-item a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Social Box */
.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.social-icon {
  font-size: 14px;
}

.copyright p {
  font-size: 0.75rem;
  opacity: 0.7;
  margin: 0;
}

/* Single Page Layout Adjustments */
.single-page-container {
  position: relative;
}

/* Services Grid Styling */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.service-item {
  padding: 25px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Rounded styles for service items */
.service-item.rounded {
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 25px;
}

.service-item.rounded:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-item.rounded .service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #00e6d0, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 15px;
  border-radius: 50%;
  background-color: rgba(0, 230, 208, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-item.rounded h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-item.rounded p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/* Ensure footer appears below single-page content */
.page-section {
  min-height: 100vh;
  position: relative;
  width: 100%; /* Ensure full width */
  left: 0; /* Prevent horizontal shifting */
  overflow-x: hidden; /* Prevent horizontal scrolling */
  transform: translateZ(0); /* Force hardware acceleration for smoother scrolling */
  will-change: transform; /* Optimize for animations */
}

/* Fix for section#about specifically */
#about.page-section {
  position: relative;
  left: 0 !important; /* Override any inline styles that might be causing shifts */
  right: 0 !important; /* Ensure it stays centered */
  transform: none !important; /* Prevent transform-related issues */
  width: 100% !important; /* Ensure full width */
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important; /* Soft blue gradient */
  margin-left: 0 !important; /* Prevent margin shifts */
  margin-right: 0 !important;
  max-width: 100% !important;
  top: 0 !important;
  transition: none !important; /* Prevent any transition effects */
}

/* Fix specific issues with the content inside the about section */
#about.page-section .section-content {
  transform: none !important;
  transition: none !important;
  left: 0 !important;
  right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Alternative gradients for #about section - uncomment to use */
/* 
#about.page-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; /* Purple-blue gradient */
  color: #fff !important; /* Use white text for better readability */
}

#about.page-section {
  background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%) !important; /* Teal-blue gradient */
}

#about.page-section {
  background: linear-gradient(to right, #e9defa 0%, #fbfcdb 100%) !important; /* Soft pastel gradient */
}
*/

/* Container for section content to ensure proper positioning */
.section-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}

/* No animation override class */
.page-section.no-animation {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.page-section.no-animation .section-content {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.page-section.no-animation.prev,
.page-section.no-animation.next {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  pointer-events: auto !important;
}

.page-section:last-child {
  margin-bottom: 0;
}

/* Make sure footer is visible in single page layout */
body.single-page-scroll .site-footer {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Mobile responsive styles */
@media (max-width: 900px) {
  /* ...existing code... */
}

/* Responsive for compact footer */
@media (max-width: 1024px) {
  .footer-boxes {
    gap: 25px;
  }
  
  .footer-box {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .footer-boxes {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    min-height: auto;
  }
  
  .footer-box {
    flex: 1 1 calc(50% - 10px);
    min-width: 160px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .footer-boxes {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-box {
    flex: 1;
    min-width: auto;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Website Services Template Styles */
.website-services-container {
  background: #fff;
}

/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.services-hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.services-hero .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-hero .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00e6d0;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Website Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.website-mockup {
  perspective: 1000px;
  transform: rotateY(-15deg) rotateX(10deg);
  transition: transform 0.3s ease;
}

.website-mockup:hover {
  transform: rotateY(-10deg) rotateX(5deg);
}

.mockup-screen {
  width: 400px;
  height: 280px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 8px solid #333;
}

.mockup-header {
  background: #333;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
  background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
  background: #27ca3f;
}

.mockup-url {
  background: #555;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  flex: 1;
}

.mockup-content {
  padding: 20px;
  height: calc(100% - 48px);
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-template-rows: 40px 30px 1fr;
  gap: 12px;
}

.mockup-element {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 4px;
  opacity: 0.7;
}

.mockup-element.header {
  grid-column: 1 / -1;
}

.mockup-element.nav {
  grid-column: 1 / -1;
  opacity: 0.5;
}

.mockup-element.sidebar {
  grid-column: 2;
  grid-row: 3;
}

/* Our Approach Section */
.our-approach {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.approach-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.timeline-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Services Showcase Section */
.services-showcase {
  padding: 80px 0;
  background: #fff;
}

.services-grid-advanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

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

.service-card.featured {
  border: 2px solid #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.service-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00e6d0;
  color: #333;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: inherit;
}

.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: inherit;
  opacity: 0.9;
}

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

.service-features li {
  padding: 0.5rem 0;
  color: inherit;
  opacity: 0.9;
}

.service-cta {
  margin-top: auto;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #00e6d0;
  color: #333;
}

.btn-primary:hover {
  background: #00d4bc;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: #fff;
}

.service-card.featured .btn-secondary {
  color: #fff;
  border-color: #fff;
}

.service-card.featured .btn-secondary:hover {
  background: #fff;
  color: #667eea;
}

/* Technology Stack Section */
.technology-stack {
  padding: 80px 0;
  background: #f8f9fa;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.tech-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  text-align: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tech-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-3px);
}

.tech-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tech-item span {
  font-weight: 600;
  color: #333;
}

/* Portfolio Preview Section */
.portfolio-preview {
  padding: 80px 0;
  background: #fff;
}

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

.portfolio-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.portfolio-image {
  height: 200px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  position: relative;
}

.portfolio-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

.portfolio-info p {
  color: #666;
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-tags span {
  background: #f0f0f0;
  color: #666;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.portfolio-cta {
  text-align: center;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

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

.pricing-card.featured {
  border: 2px solid #667eea;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00e6d0;
  color: #333;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: #666;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: #666;
}

.pricing-cta {
  margin-top: auto;
}

/* Final CTA Section */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary.large, .btn-secondary.large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Mobile-FIRST RESPONSIVE NAVIGATION - FALLBACK STYLES */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1100;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .menu-toggle span {
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.4s;
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: rgba(24, 28, 36, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column !important;
    align-items: flex-start;
    padding: 2rem;
    transition: right 0.4s ease;
    overflow-y: auto;
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu > ul {
    flex-direction: column !important;
    width: 100%;
    gap: 1rem;
  }
  
  .nav-menu a {
    font-size: 1.2rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: block;
  }
}
