/* Curious Kaizer Premium Futuristic Minimalist Style */

/* Reset and Base Styles */
:root {
  --primary-color: #000000;
  --text-color: #333333;
  --light-text: #ffffff;
  --accent-color: #4a90e2;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
  --mobile-padding: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--text-color);
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Prevent horizontal scroll */
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Mobile Navigation Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile Back Button */
.mobile-back-btn {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.mobile-back-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: #FFF;
  text-decoration: none;
}

.whatsapp-cta {
  display: inline-block;
  background-color: #25d366;
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px 0;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.whatsapp-cta:hover {
  background-color: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-cta i {
  margin-right: 8px;
}

/* ========== Base Mobile Styles ========== */
@media (max-width: 992px) {
  :root {
    --mobile-padding: 15px;
    --section-padding: 35px var(--mobile-padding);
    --border-radius: 12px;
    --card-padding: 20px;
  }
  
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  /* Base styles */
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  /* Header */
  .hero {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }
  
  .logo {
    margin: 0 auto 15px;
    max-width: 150px;
  }
  
  .logo-img {
    max-width: 100%;
    height: auto;
  }
  
  /* Navigation */
  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
  }
  
  .main-nav a {
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  /* Header buttons */
  .header-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 15px auto;
    width: 100%;
  }
  
  .header-buttons .cta {
    width: auto;
    min-width: 140px;
    margin: 0;
    padding: 10px 15px;
  }
  
  /* Services section */
  .services {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px 15px;
  }
  
  .service-card {
    margin: 0;
    padding: 20px;
  }
  
  /* Cards */
  .card-content {
    padding: 15px 0;
  }
  
  .card-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .service-btn {
    width: 100%;
    margin: 5px 0;
  }
  
  /* Why choose us section */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .footer-links, .footer-newsletter {
    width: 100%;
    max-width: 100%;
  }
  
  /* Form elements */
  input[type="email"],
  input[type="text"],
  textarea {
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Hide mobile back button if not needed */
  .mobile-back-btn {
    display: none;
  }
}

/* Mobile overflow control */
@media (max-width: 992px) {
  html, body {
    position: relative;
    overflow-x: hidden;
    width: 100%;
  }
  
  .container, 
  .services,
  .hero,
  .main-nav,
  .header-buttons {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Ensure no element causes horizontal scroll */
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 992px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card {
    margin-bottom: 0;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small mobile devices */
/* Responsive Navigation */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 var(--mobile-padding);
  }
  
  .section {
    padding: 3rem var(--mobile-padding);
  }
  
  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .mobile-back-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  :root {
    --mobile-padding: 12px;
    --section-padding: 25px var(--mobile-padding);
  }
  
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  html {
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Header */
  .hero {
    padding: 15px var(--mobile-padding) 20px;
  }
  
  .logo {
    max-width: 120px;
    margin: 0 auto 10px;
  }
  
  /* Navigation */
  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 10px 0 15px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .main-nav a {
    padding: 8px 5px;
    font-size: 0.75rem;
    text-align: center;
    border-radius: 6px;
    background: #f5f5f5;
    transition: all 0.2s ease;
  }
  
  .main-nav a:hover, .main-nav a.active {
    background: #000;
    color: #fff;
  }
  
  /* Header Buttons */
  .header-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 15px auto 0;
    width: 100%;
    max-width: 320px;
    padding: 0 var(--mobile-padding);
  }
  
  .header-buttons .cta {
    flex: 1;
    min-width: auto;
    padding: 10px 8px;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  
  /* Services Section */
  .services {
    padding: 20px var(--mobile-padding);
    gap: 20px;
  }
  
  .service-card {
    padding: 20px 15px;
    border-radius: 12px;
    margin: 0;
  }
  
  .service-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .service-card h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .card-content {
    padding: 10px 0;
  }
  
  .card-content p, 
  .card-content li {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  
  .card-actions {
    margin-top: 15px;
  }
  
  .service-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  /* Why Choose Section */
  .why {
    padding: 30px var(--mobile-padding);
  }
  
  .why h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .why-grid {
    gap: 15px;
  }
  
  .why-card {
    padding: 20px 15px;
  }
  
  /* Footer */
  footer {
    padding: 30px var(--mobile-padding);
  }
  
  /* Form Elements */
  input[type="text"],
  input[type="email"],
  textarea,
  button[type="submit"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  /* Utility Classes */
  .container {
    padding: 0 var(--mobile-padding);
  }
  
  /* Hide elements that might not be needed on mobile */
  .desktop-only {
    display: none !important;
  }
}

/* ========== Extra Small Devices (360px and down) ========== */
@media (max-width: 360px) {
  :root {
    --mobile-padding: 12px;
    --card-padding: 18px 16px;
  }
  
  .main-nav {
    grid-template-columns: 1fr;
    gap: 6px;
    max-width: 300px;
  }
  
  .main-nav a {
    padding: 10px 8px;
    font-size: 0.8rem;
  }
  
  .header-buttons {
    flex-direction: column;
    max-width: 280px;
  }
  
  .header-buttons .cta {
    width: 100%;
    padding: 12px;
  }
  
  .service-card {
    padding: var(--card-padding);
  }
  
  .service-card h2 {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }
  
  .card-content p,
  .card-content li {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .service-btn {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

/* ========== Print Styles ========== */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    padding: 20px;
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .service-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Top bar with site name */
.site-top-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid #333;
}

/* Container for content */
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Typography */
:root {
  /* Existing root variables */
  --font-primary: 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: var(--line-height-heading);
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

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

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  max-width: 65ch;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: darken(var(--accent-color), 10%);
  text-decoration: underline;
}

/* Responsive typography */
@media (max-width: 768px) {
  :root {
    --font-size-base: 0.9375rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.375rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

/* Text alignment for better readability */
p, li, h1, h2, h3, h4, h5, h6 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Step content alignment */
.step p, 
.step h3,
.pricing-card p,
/* Legal Pages Header Styling */
.terms-header h1,
.privacy-header h1,
.disclaimer-header h1 {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 2.5rem !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin: 20px 0 10px 0 !important;
  text-align: center !important;
  padding: 0 !important;
}

.terms-meta,
.privacy-meta,
.disclaimer-meta {
  color: #e0e0e0 !important;
  font-size: 1rem !important;
  margin-bottom: 30px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  text-align: center !important;
}

/* Ensure proper spacing in legal content */
.terms-container,
.privacy-container,
.disclaimer-container {
  margin-top: 40px !important;
  margin-bottom: 60px !important;
}

/* Ensure proper text contrast */
.terms-section,
.privacy-section,
.disclaimer-section {
  color: #333 !important;
}

/* Center align headings */
h1, h2, h3 {
  text-align: center;
}

/* List items alignment */
.pricing-card ul {
  text-align: left;
  padding-left: 40px;
  margin: 20px 0;
}

/* Responsive base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  overflow-x: hidden;
}

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

/* Main header styles - applied to all pages */
.main-header {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 64px 16px 48px 16px;
  border-bottom: 6px solid #fff;
}

/* Ensure header stays black on all pages */
header {
  background: #000 !important;
  color: #fff;
  border-bottom: 6px solid #fff;
}

.hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 6px solid #fff;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.logo-img {
  width: 340px;
  max-width: 98vw;
  height: auto;
  display: block;
  filter: none;
  background: none;
}

.tagline {
  font-size: 1.3rem;
  margin-bottom: 32px;
}

.tagline-highlight {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0 10px;
  white-space: nowrap;
}

.tagline-highlight:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tagline-highlight:hover:after {
  transform: scaleX(1);
}

.tagline-sub {
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 0.9;
}

.cta {
  display: inline-block;
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  padding: 18px 48px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}

.cta:hover {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
}

/* ========== Services Section ========== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: var(--section-padding);
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.services h2 {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 30px;
  color: #000;
  font-weight: 700;
  padding: 0 15px;
}

/* Base card styles */
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.card-text {
  color: var(--text-color);
  margin-bottom: 1.25rem;
  flex: 1;
}

.card-footer {
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Card grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .card-content {
    padding: 1.25rem;
  }
}

.service-card {
  background: #000;
  color: #fff;
  border-radius: var(--border-radius);
  padding: 1.75rem;
  transition: var(--transition);
  margin-bottom: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--accent-color);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive service cards */
@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 1.25rem;
  }
  
  .service-card .icon {
    font-size: 1.75rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 25px auto;
  padding: 0 12px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.step {
  background: #fff;
  color: #000;
  padding: 18px 16px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.02);
}

.step h3 {
  color: #000;
  font-size: 1.1rem;
  margin: 8px 0 10px 0;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.2px;
  width: 100%;
  padding: 0 5px;
}

.step p {
  color: #333;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  padding: 0 5px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Make sure process steps match service cards on mobile */
@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }
  
  .step {
    padding: 18px 15px;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 20px auto;
  }
  
  .step {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .step h3 {
    font-size: 1.05rem;
    margin: 8px 0 10px 0;
  }
  
  .step p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px auto 50px;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-options {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0 15px;
    gap: 20px;
  }
  
  .pricing-card {
    min-height: auto;
    padding: 25px 20px;
  }
  
  .pricing-card h3 {
    font-size: 1.3rem;
  }
  
  .pricing-card .price {
    font-size: 1.2rem;
  }
}

.pricing-card {
  min-height: 580px;
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.2);
  background: rgba(0, 0, 0, 0.9);
}

.pricing-card.featured {
  border: 2px solid #fff;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin: 0 0 12px 0;
  padding: 0 5px;
  line-height: 1.3;
  color: #000;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #000;
  text-align: center;
  width: 100%;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.4;
}

.pricing-card ul {
  flex-grow: 1;
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
  list-style: none;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-card li {
  position: relative;
  padding: 5px 0 5px 20px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pricing-card li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}

.pricing-card /* Button styles */
.service-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 12px 20px;
  background: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid #000;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 15px 0 0 0;
  border-radius: 0;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.pricing-card .service-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

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

.feature {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000;
}

.feature p {
  color: #333;
  line-height: 1.6;
}

/* Enhanced Contact Form Styles */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
}

.contact-form h2 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  color: #1f2937;
  text-align: center;
}

.contact-form p {
  margin: 0 0 16px 0;
  color: #4b5563;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form .form-row {
  display: flex;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.contact-form .form-group {
  flex: 1;
  margin: 0;
  padding: 0;
  position: relative;
  min-width: 0; /* Prevent flex items from overflowing */
}

.contact-form label {
  display: block;
  margin: 0 0 6px 0;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9fa;
  color: #333;
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* Enhanced Select Dropdown Styling */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #4f46e5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
  transition: all 0.25s ease;
}

/* Form Footer Styling */
.contact-form .form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px 0 0 0;
  padding: 24px 0 0 0;
  border-top: 1px solid #f0f0f0;
  gap: 16px;
  width: 100%;
}

.contact-form .form-footer .cta,
.contact-form .form-footer .whatsapp-cta {
  margin: 0;
  width: 100%;
  max-width: 280px;
  text-align: center;
  white-space: normal;
  padding: 12px 16px;
  font-size: 0.9rem;
  line-height: 1.4;
  height: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form .form-footer span {
  color: #9ca3af;
  font-size: 0.85rem;
  margin: 4px 0;
  font-weight: 500;
  text-align: center;
  width: 100%;
  display: block;
}

/* Enhanced CTA Button Styling */
.contact-form button {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.contact-form button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.contact-form button i {
  margin-right: 8px;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.contact-form button:hover i {
  transform: translateX(2px);
}

/* WhatsApp CTA Button Styling */
.contact-form .whatsapp-cta {
  margin: 0;
  padding: 12px 16px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
}

.contact-form .whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: linear-gradient(135deg, #20bd5f 0%, #0e7a63 100%);
  color: white !important;
}

.contact-form .whatsapp-cta i {
  margin-right: 8px;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.contact-form .whatsapp-cta:hover i {
  transform: scale(1.1);
}

.contact-form .form-note {
  font-size: 0.75rem;
  color: #666;
  margin-top: 6px;
  font-style: italic;
}

/* Form Footer Divider */
.contact-form .form-footer span {
  color: #888;
  font-size: 0.85rem;
  margin: 0 12px;
  font-weight: 500;
}

/* Hover and Focus States */
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #c7d2fe;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Disabled State */
.contact-form button:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Form Group Focus State */
.contact-form .form-group:focus-within label {
  color: #4f46e5;
}

/* Animated Focus Ring */
@keyframes focus-ring {
  from {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
  }
  to {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0);
  }
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  animation: focus-ring 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .contact-form .form-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .contact-form button {
    width: 100%;
  }
}

.service-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  padding: 12px 32px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  margin: 0 8px 12px 8px;
}

.service-btn:hover {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
}

.about, .why {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
  color: #000;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #000;
  position: relative;
  display: inline-block;
}

.about h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #000;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.about p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 2px solid #000;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.about-btn:hover {
  background: transparent;
  color: #000;
}

.why h2 {
  font-size: 2.2rem;
  margin: 0 auto 50px;
  color: #000;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 1px;
}

.why h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #000;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.about p {
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 650px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}

.why-card {
  min-height: 400px;
  padding: 30px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  box-sizing: border-box;
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.why-card h3 {
  color: #fff;
  margin: 0 0 20px 0;
  font-size: 1.3rem;
  text-align: center;
  padding: 0 10px;
  position: relative;
  padding-bottom: 15px;
}

.why-card h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: #000;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.why-card ul {
  list-style: none;
  padding: 0 15px;
  margin: 25px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card li {
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 25px;
  margin: 0;
  letter-spacing: 0.5px;
}

.why-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

.why-card .service-btn {
  margin: auto 0 0 0;
  display: block;
  width: calc(100% - 40px);
  padding: 12px 20px;
  margin: 0 auto;
  background: #fff;
  color: #000;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.why-card .service-btn:hover {
  background: #000;
  color: #fff;
  border-color: #fff;
}

.contact {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 56px 16px 40px 16px;
}

.contact h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  letter-spacing: 0.09em;
}

.contact form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact input, .contact textarea {
  padding: 14px;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  border-radius: 0;
  resize: none;
}

.contact button {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 14px 0;
  font-size: 1.05rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.09em;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact button:hover {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.main-nav {
  margin: 48px 0 48px 0;
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 16px 0;
}

.main-nav a {
  color: #fff;
  background: #000;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border: 2px solid #fff;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}

.main-nav a.active, .main-nav a:hover {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
}

footer {
  background: #000;
  color: #fff;
  padding: 60px 0 0;
  font-family: 'Orbitron', sans-serif;
  border-top: 1px solid #333;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-newsletter h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: #fff;
}

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

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

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  display: block;
  padding: 5px 0;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.contact-info p {
  color: #aaa;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.contact-info i {
  margin-right: 10px;
  color: #fff;
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  border-right: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-form button {
  background: #fff;
  color: #000;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.newsletter-form button:hover {
  background: #ddd;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
  font-size: 0.85rem;
}

.footer-legal {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.footer-legal a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-legal span {
  color: #555;
  font-size: 0.8rem;
}

/* Work Page Styles */
.work-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  margin-bottom: 40px;
}

.work-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.work-categories {
  padding: 40px 0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  margin: 0 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #777;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn.active {
  color: #000;
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.project-card {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
}

.project-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.project-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #000;
}

.project-info p {
  color: #666;
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tag {
  background: #f0f0f0;
  color: #333;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.project-links {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.project-links a {
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.project-links .view-project {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

.project-links .view-project:hover {
  background: #333;
  border-color: #333;
}

.project-links .view-code {
  background: transparent;
  color: #000;
  border: 1px solid #ddd;
}

.project-links .view-code:hover {
  background: #f8f8f8;
  border-color: #ccc;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .work-hero h1 {
    font-size: 2.2rem;
  }
  
  .category-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-btn {
    margin: 5px 0;
    width: 80%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .project-links {
    flex-direction: column;
  }
  
  .project-links a {
    text-align: center;
  }
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-newsletter {
    grid-column: auto;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 5px;
  }
  
  .footer-legal span {
    display: none;
  }
}

/* Contact Section */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Responsive base styles */
@media (max-width: 1024px) {
  .why-grid {
    gap: 20px;
    padding: 0 15px;
  }
  
  .why-card {
    padding: 25px 15px;
  }
}

@media (max-width: 800px) {
  .services {
    flex-direction: column;
    gap: 24px;
  }
  
  .service-card,
  .pricing-card,
  .why-card,
  .project-card {
    width: 100%;
    margin: 0 auto 20px;
    padding: 20px 15px;
    background: #000;
    color: #fff;
  }
  
  .card-content p,
  .card-content li {
    font-size: 0.95rem;
    color: #ccc;
  }
  
  .why {
    padding: 60px 15px;
  }
  
  .why h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    padding: 0 15px;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    gap: 15px;
  }
  
  .why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .why-card ul {
    padding: 0 10px;
    gap: 10px;
    margin: 20px 0;
  }
  
  .why-card li {
    font-size: 0.9rem;
  }
  
  .why-card .service-btn {
    width: calc(100% - 20px);
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .why {
    padding: 50px 10px;
  }
  
  .why h2 {
    font-size: 1.6rem;
    padding: 0 10px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    padding: 0 10px;
  }
  
  .why-card {
    padding: 25px 20px;
  }
  
  .why-card h3 {
    font-size: 1.3rem;
  }
  
  .why-card ul {
    padding: 0 15px;
    margin: 25px 0;
  }
  
  .why-card .service-btn {
    width: calc(100% - 40px);
    padding: 12px 20px;
  }
}
