/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  h2 {
    font-size: 2.5rem;
    color: #1a252f;
  }

  h3 {
    font-size: 1.5rem;
    color: #2c3e50;
  }

  p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
  }
  
  /* Container */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  
  /* Header */
  header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
    text-decoration: none;
  }
  
  .logo img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Logo Text Styling */
  .logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #4a7ba7 0%, #0056b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
  }
  
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }
  
  .nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a7ba7 0%, #0056b3 100%);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #0056b3;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10rem 2rem 8rem;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero .container {
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
  }
  
  .hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .btn {
    display: inline-block;
    background-color: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
  }
  
  .btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Services Section */
  .services {
    padding: 6rem 2rem;
    background-color: #f8f9fb;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: #1a252f;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
  }
  
  .service-card {
    padding: 2.5rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
    position: relative;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px 12px 0 0;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
  }

  .service-card p {
    color: #666;
    line-height: 1.8;
  }
  
  /* Projects Section */
  .projects {
    padding: 6rem 2rem;
    background-color: white;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
  }
  
  .project-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 1px solid #eee;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.12);
  }
  
  .project-content {
    padding: 2rem;
  }
  
  .project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
  }
  
  .project-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
  }
  
  .project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .project-links a {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    color: #667eea;
    border: 2px solid #667eea;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .project-links a:hover {
    background-color: #667eea;
    color: white;
    transform: translateY(-2px);
  }
  
  /* About Section */
  .about {
    padding: 6rem 2rem;
    background-color: white;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-content > div:first-child p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .about-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Contact Section (Gradient Background - Psybergate Structure) */
  .contact-section {
    background: linear-gradient(135deg, #4a7ba7 0%, #0056b3 100%);
    color: white;
    padding: 4rem 2rem;
    position: relative;
  }

  .contact-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .contact-left, .contact-middle, .contact-right {
    display: flex;
    flex-direction: column;
  }

  .contact-left h3, .contact-middle h3, .contact-right h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
  }

  .contact-left h4, .contact-middle h4 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
  }

  .footer-logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
  }

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

  .footer-nav ul li {
    margin-bottom: 1rem;
  }

  .footer-nav ul li a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
  }

  .footer-nav ul li a::before {
    content: '•';
    margin-right: 0.8rem;
  }

  .footer-nav ul li a:hover {
    color: #f0f0f0;
  }

  .contact-item-gradient {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
  }

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

  .contact-item-gradient svg {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
  }

  .contact-item-gradient a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }

  .contact-item-gradient a:hover {
    color: #f0f0f0;
  }

  .social-links-gradient {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .social-links-gradient a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    color: #0056b3;
    transition: all 0.3s;
    border: 2px solid white;
  }

  .social-links-gradient a:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
  }

  .social-links-gradient svg {
    width: 20px;
    height: 20px;
  }

  .contact-form-gradient {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form-gradient .form-group {
    margin-bottom: 0;
  }

  .contact-form-gradient label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
  }

  .contact-form-gradient input,
  .contact-form-gradient textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-sizing: border-box;
  }

  .contact-form-gradient input::placeholder,
  .contact-form-gradient textarea::placeholder {
    color: #999;
  }

  .contact-form-gradient input:focus,
  .contact-form-gradient textarea:focus {
    outline: none;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  }

  .contact-form-gradient textarea {
    resize: vertical;
    min-height: 100px;
  }

  .btn-submit-gradient {
    background-color: #0056b3;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }

  .btn-submit-gradient:hover {
    background-color: #003d82;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
  }

  .footer-column h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
  }

  .footer-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 1rem;
  }

  .footer-column p:last-of-type {
    margin-bottom: 0;
  }

  /* Contact Items in Footer */
  .footer-column .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
  }

  .footer-column .contact-item:hover {
    transform: translateX(5px);
  }

  .footer-column .contact-item span {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .footer-column .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }

  .footer-column .contact-item a:hover {
    color: #667eea;
  }

  .contact-icon {
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* Social Links in Footer */
  .footer-column .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-column .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(102, 126, 234, 0.15);
    color: #667eea;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.3);
  }

  .footer-column .social-links a:hover {
    background-color: #667eea;
    color: white;
    transform: translateY(-3px);
    border-color: #667eea;
  }

  .footer-column .social-links svg {
    width: 18px;
    height: 18px;
  }

  /* Footer Form */
  .footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-form .form-group {
    margin-bottom: 0;
  }

  .footer-form input,
  .footer-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: white;
    color: #2c3e50;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .footer-form input::placeholder,
  .footer-form textarea::placeholder {
    color: #999;
  }

  .footer-form input:focus,
  .footer-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
  }

  .footer-form textarea {
    resize: vertical;
    min-height: 100px;
  }

  .btn-submit {
    background-color: #667eea;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
  }

  .btn-submit:hover {
    background-color: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  }

  /* Footer Bottom */
  .footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
  }

  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-left p {
    margin: 0;
    font-size: 0.9rem;
    color: #95a5a6;
  }

  .footer-right {
    display: flex;
    gap: 2rem;
  }

  .footer-right a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-right a:hover {
    color: #667eea;
  }
  .form-group input {
    border-radius: 8px;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 100%;
    background: #f8f9fb;
    border: 2px solid #e0e6ed;
    color: #2c3e50;
    box-shadow: none;
    padding: 0.9rem 1rem;
    box-sizing: border-box;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .form-group input::placeholder {
    color: #999;
  }

  .form-group input:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }

  .form-group textarea {
    border-radius: 8px;
    height: 120px;
    width: 100%;
    max-width: 100%;
    background: #f8f9fb;
    border: 2px solid #e0e6ed;
    color: #2c3e50;
    box-shadow: none;
    padding: 0.9rem 1rem;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
  }

  .form-group textarea::placeholder {
    color: #999;
  }

  .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }


  /* Circuit board pattern for tech theme */
  .circuit-bg {
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
  }
  
  .circuit-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0, 86, 179, 0.05) 20px, rgba(0, 86, 179, 0.05) 21px),
                      repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0, 86, 179, 0.05) 20px, rgba(0, 86, 179, 0.05) 21px);
    opacity: 0.4;
    z-index: 0;             /* Lowered */
    pointer-events: none;   /* Crucial! Prevents it from blocking clicks */
  }
  
  /* Animation for tech elements */
  @keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
  }
  
  .tech-pulse {
    animation: pulse 3s infinite ease-in-out;
  }
  
  /* Toast notification */
  .toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4a6fbe;
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1100;
    max-width: 350px;
  }
  
  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .toast-title {
    font-weight: bold;
    margin-bottom: 3px;
  }
  
  .toast-description {
    font-size: 0.9rem;
  }

  .project-links a.btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px 5px 0 0;
    background-color: #fff;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .project-links a.btn:hover {
    background-color: #0d6efd;
    color: white;
  }

  /* Pricing Section Styles */
.packages {
  padding: 5rem 2rem;
  background-color: #f5f7fa;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #555;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #0056b3;
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.discount-badge {
  background-color: #e53e3e;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

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

.pricing-card {
  background-color: white;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  transform: scale(1.05);
  z-index: 1;
  border: 2px solid #0056b3;
  margin-top: 10px;
}

.pricing-card:hover:not(.popular) {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 6px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
  letter-spacing: 0.5px;
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

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

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-yearly {
  display: none;
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
}

.pricing-features {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.pricing-features li svg {
  color: #16a34a;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  text-align: center;
  margin: 0 2rem 2rem;
  padding: 0.75rem;
}

.pricing-footer {
  text-align: center;
  margin-top: 3rem;
}

.pricing-footer a {
  color: #0056b3;
  text-decoration: underline;
}

/* Footer - Main Section */
footer {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: #ecf0f1;
  padding: 4rem 2rem 2rem;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
    order: -1;
  }
  
  .pricing-toggle {
    flex-direction: column;
  }
  .contact {
    display: flex;
    flex-direction: column;
  }
}
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: row;
      padding: 0.9rem 1rem;
      justify-content: space-between;
    }

    .logo-text {
      font-size: 1.2rem;
    }

    .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      flex-direction: column;
      background-color: white;
      gap: 0;
      display: none;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      z-index: 999;
    }

    .nav-links.active {
      display: flex;
    }

    .nav-links a {
      padding: 1rem;
      border-bottom: 1px solid #eee;
      text-decoration: none;
    }

    .hamburger {
      display: flex;
    }

    .hero {
      padding: 6rem 1.5rem 4rem;
    }

    .hero h1 {
      font-size: 2.2rem;
    }

    .hero p {
      font-size: 1.1rem;
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 2.5rem;
    }

    .services-grid,
    .projects-grid {
      gap: 1.5rem;
    }

    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .contact {
      padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group textarea {
      max-width: 100%;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 3rem 2rem 2rem;
    }

    .footer-column h3 {
      font-size: 1.1rem;
    }

    .footer-column p {
      font-size: 0.9rem;
    }

    .footer-bottom-content {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }

    .footer-right {
      justify-content: center;
      gap: 1.5rem;
    }

    .pricing-grid {
      grid-template-columns: 1fr;
    }

    .pricing-card.popular {
      transform: none;
      border: 2px solid #667eea;
    }

    .pricing-toggle {
      flex-direction: column;
    }
  }

  /* Responsive Design - Small Phones */
  @media (max-width: 480px) {
    html {
      font-size: 15px;
    }

    .container {
      padding: 0 1rem;
    }

    .header-container {
      padding: 0.8rem 1rem;
    }

    .logo img {
      height: 40px;
    }

    .logo-text {
      font-size: 1.1rem;
    }

    .hero {
      padding: 5rem 1rem 3rem;
      margin-top: 60px;
    }

    .hero h1 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .btn {
      padding: 0.8rem 2rem;
      font-size: 0.95rem;
    }

    .section-title {
      font-size: 1.6rem;
      margin-bottom: 1.8rem;
    }

    .services {
      padding: 3rem 1rem;
    }

    .projects {
      padding: 3rem 1rem;
    }

    .service-card,
    .project-card {
      padding: 1.5rem;
    }

    .about {
      padding: 3rem 1rem;
    }

    .contact {
      padding: 2rem 1rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      font-size: 0.95rem;
      margin-bottom: 0.6rem;
    }

    .contact-info {
      padding: 1.5rem;
    }

    footer {
      padding: 2.5rem 1rem 1.5rem;
    }

    footer > div:first-child {
      gap: 1.5rem;
    }

    .social-links a {
      width: 40px;
      height: 40px;
    }
  }

/* Footer rebuild: Psybergate-like layout with KSS Innovate color palette */
.site-footer {
  background: linear-gradient(135deg, #4a7ba7 0%, #0056b3 100%);
  color: #ffffff;
  padding: 0;
}

.site-footer-main {
  padding: 4rem 0 3rem;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.site-footer .footer-column h3 {
  margin: 0 0 1.2rem;
  font-size: 1.5rem;
  color: #ffffff;
}

.site-footer .footer-column p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  line-height: 1.75;
}

.site-footer .footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer .footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #0056b3;
}

.footer-contact-form .form-group {
  margin-bottom: 0.8rem;
}

.footer-contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 600;
}

.site-footer .footer-contact-form input,
.site-footer .footer-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: #ffffff;
  color: #2c3e50;
  padding: 0.75rem 0.8rem;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.site-footer .footer-contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.site-footer .footer-contact-form input:focus,
.site-footer .footer-contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.footer-submit-btn {
  margin-top: 0.5rem;
  background: #0b6fe0;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.footer-submit-btn:hover {
  background: #0857b0;
  transform: translateY(-1px);
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.1);
  padding: 1.2rem 0;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.footer-brand-inline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand-inline img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand-inline p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 0.95rem;
}

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

@media (max-width: 992px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .footer-form-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-footer-main {
    padding: 3rem 0 2rem;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand-inline {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

