/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2563eb;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(37, 99, 235, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 1;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.highlight {
  color: #2563eb;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #fbbf24, #ef4444);
  border-radius: 2px;
}

.hero-description {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

/* Hero Card */
.hero-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: rotate(3deg);
  transition: transform 0.3s ease;
  max-width: 500px;
  margin: 0 auto;
}

.hero-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.card-header {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
}

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

.card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.card-dots span:nth-child(1) {
  background: #ef4444;
}
.card-dots span:nth-child(2) {
  background: #fbbf24;
}
.card-dots span:nth-child(3) {
  background: #10b981;
}

.card-content {
  padding: 24px;
  background: #0f172a;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 13px;
  line-height: 1.4;
  overflow-x: auto;
}

.code-line {
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
  min-height: 18px;
}

.indent {
  padding-left: 20px;
}

.double-indent {
  padding-left: 40px;
}

/* Code Syntax Highlighting */
.code-keyword {
  color: #c792ea;
  font-weight: 500;
}

.code-variable {
  color: #82aaff;
  padding-left: 5px;
}

.code-operator {
  color: #89ddff;
  margin: 0 4px;
}

.code-string {
  color: #c3e88d;
}

.code-property {
  color: #f07178;
}

.code-bracket {
  color: #ffcb6b;
}

.code-comma {
  color: #89ddff;
}

.code-semicolon {
  color: #89ddff;
}

/* Featured Projects */
.featured-projects {
  padding: 80px 0;
  background: white;
}

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

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

.section-header p {
  font-size: 1.125rem;
  color: #64748b;
}

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

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 99, 235, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.project-content p {
  color: #64748b;
  margin-bottom: 1rem;
}

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

.tag {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #ef4444);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(251, 191, 36, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

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

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

/* Page Hero */
.page-hero {
  padding: 110px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(251, 191, 36, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(239, 68, 68, 0.1) 0%,
      transparent 50%
    );
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 1.25rem;
  color: #64748b;
  position: relative;
  z-index: 2;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.timeline-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #2563eb, #fbbf24, #ef4444);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: calc(50% - 30px);
  position: relative;
  border-left: 4px solid #2563eb;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 60px;
  border-left: 4px solid #fbbf24;
}

.timeline-item:nth-child(3n) .timeline-content {
  border-left: 4px solid #ef4444;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #2563eb;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid white;
  box-shadow: 0 0 0 4px #2563eb;
}

.timeline-item:nth-child(even) .timeline-dot {
  background: #fbbf24;
  box-shadow: 0 0 0 4px #fbbf24;
}

.timeline-item:nth-child(3n) .timeline-dot {
  background: #ef4444;
  box-shadow: 0 0 0 4px #ef4444;
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.timeline-description {
  color: #64748b;
  line-height: 1.6;
}

/* Skills Section */
.skills-section {
  padding: 80px 0;
}

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

.skill-category {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #2563eb;
}

.skill-category:nth-child(2) {
  border-top: 4px solid #fbbf24;
}

.skill-category:nth-child(3) {
  border-top: 4px solid #ef4444;
}

.skill-category h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.skill-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-3px);
  background: #e2e8f0;
}

.skill-item i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.skill-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section p {
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-services ul {
  color: #94a3b8;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #334155;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #2563eb;
}

.social-links a:nth-child(2):hover {
  background: #fbbf24;
}

.social-links a:nth-child(3):hover {
  background: #ef4444;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

/* Solutions Page Styles */
.services-section {
  padding: 80px 0;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #2563eb;
}

.service-card:nth-child(2) {
  border-top: 4px solid #fbbf24;
}

.service-card:nth-child(3) {
  border-top: 4px solid #ef4444;
}

.service-card:nth-child(4) {
  border-top: 4px solid #10b981;
}

.service-card:nth-child(5) {
  border-top: 4px solid #8b5cf6;
}

.service-card:nth-child(6) {
  border-top: 4px solid #f59e0b;
}

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: #2563eb;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.service-content > p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.service-features ul li {
  margin-bottom: 0.5rem;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.service-features ul li::before {
  content: "✓";
  color: #10b981;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.problems-section {
  padding: 80px 0;
  background: white;
}

.problems-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.problem-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid #ef4444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.problem-icon {
  color: #ef4444;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.solution-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 1rem;
  border-left: 2px solid #e2e8f0;
}

.solution-icon {
  color: #10b981;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.problem-text p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1e293b;
  font-style: italic;
  margin: 0;
}

.solution-text p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* What It's Like to Work With Me */
.work-with-me-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.trust-point {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 4px solid #2563eb;
}

.trust-point:nth-child(2) {
  border-top: 4px solid #fbbf24;
}

.trust-point:nth-child(3) {
  border-top: 4px solid #ef4444;
}

.trust-point:nth-child(4) {
  border-top: 4px solid #10b981;
}

.trust-point:nth-child(5) {
  border-top: 4px solid #8b5cf6;
}

.trust-point:nth-child(6) {
  border-top: 4px solid #f59e0b;
}

.trust-point:hover {
  transform: translateY(-5px);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.trust-point:nth-child(2) .trust-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.trust-point:nth-child(3) .trust-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.trust-point:nth-child(4) .trust-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.trust-point:nth-child(5) .trust-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.trust-point:nth-child(6) .trust-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.trust-icon i {
  font-size: 1.5rem;
}

.trust-point h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.trust-point p {
  color: #64748b;
  line-height: 1.6;
}

/* Quick Stats / Highlights */
.stats-section {
  padding: 80px 0;
  background: white;
}

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

.stat-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #2563eb;
}

.stat-card:nth-child(2) {
  border-top: 4px solid #fbbf24;
}

.stat-card:nth-child(3) {
  border-top: 4px solid #ef4444;
}

.stat-card:nth-child(4) {
  border-top: 4px solid #10b981;
}

.stat-card:nth-child(5) {
  border-top: 4px solid #8b5cf6;
}

.stat-card:nth-child(6) {
  border-top: 4px solid #f59e0b;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.stat-card:nth-child(2) .stat-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.stat-card:nth-child(3) .stat-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.stat-card:nth-child(4) .stat-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.stat-card:nth-child(5) .stat-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.stat-card:nth-child(6) .stat-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-icon i {
  font-size: 1.5rem;
}

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

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

/* Portfolio Page Styles */
.portfolio-filter {
  padding: 40px 0;
  background: #f8fafc;
}

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

.filter-btn {
  padding: 8px 20px;
  border: 2px solid #e2e8f0;
  background: white;
  color: #64748b;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
}

.portfolio-section {
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  gap: 3rem;
}

.portfolio-item {
  margin-top: 40px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.portfolio-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.portfolio-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
}

.detail-section {
  margin-bottom: 2rem;
}

.detail-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.detail-section ul {
  list-style: none;
  padding-left: 0;
}

.detail-section ul li {
  margin-bottom: 0.5rem;
  color: #64748b;
}

/* Highlights Section */
.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.highlight-item:hover {
  background: #e2e8f0;
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
  min-width: 36px;
  min-height: 36px;
}

.highlight-item:nth-child(2) .highlight-icon {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.highlight-item:nth-child(3) .highlight-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.highlight-item:nth-child(4) .highlight-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.highlight-item:nth-child(5) .highlight-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.highlight-item span {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Lighthouse Performance Stats */
.lighthouse-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.lighthouse-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  position: relative;
  background: conic-gradient(
    from 0deg,
    #10b981 0deg,
    #10b981 var(--percentage),
    #e2e8f0 var(--percentage),
    #e2e8f0 360deg
  );
}

.metric-circle::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
}

.metric-score {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
}

.metric-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.performance-swinkio {
  --percentage: 353deg;
}

.accessibility-swinkio {
  --percentage: 338deg;
}

.best-practices-swinkio {
  --percentage: 346deg;
}

.seo-swinkio {
  --percentage: 360deg;
}

.performance-rocketagents {
  --percentage: 346deg;
}

.accessibility-rocketagents {
  --percentage: 342deg;
}

.best-practices--rocketagents {
  --percentage: 342deg;
}

.seo--rocketagents {
  --percentage: 331deg;
}

.performance-roberts {
  --percentage: 310deg;
}

.accessibility-roberts {
  --percentage: 328deg;
}

.best-practices-roberts {
  --percentage: 346deg;
}

.seo-roberts {
  --percentage: 328deg;
}

.portfolio-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Process Page Styles */
.process-overview {
  padding: 60px 0;
  background: white;
}

.process-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.process-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.process-intro p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.process-steps {
  padding: 80px 0;
  background: #f8fafc;
}

.steps-grid {
  display: grid;
  gap: 3rem;
}

.step-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  background: #2563eb;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #e2e8f0;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.step-icon i {
  font-size: 1.5rem;
  color: #2563eb;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.step-content > p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.step-details {
  margin-top: 1.5rem;
}

.step-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.step-details ul {
  list-style: none;
  padding-left: 0;
}

.step-details ul li {
  margin-bottom: 0.5rem;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.step-details ul li::before {
  content: "•";
  color: #2563eb;
  position: absolute;
  left: 0;
}

.process-timeline {
  padding: 80px 0;
  background: white;
}

.timeline-chart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline-chart::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #2563eb, #fbbf24, #ef4444);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
}

.timeline-phase {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 150px;
  border: 3px solid #2563eb;
}

.timeline-phase h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.timeline-phase p {
  font-size: 0.875rem;
  color: #64748b;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.contact-form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-form-container > p {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 0 !important;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card,
.availability-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-card > p {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e2e8f0;
  border-radius: 50%;
  flex-shrink: 0;
}

.method-icon i {
  color: #2563eb;
}

.method-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.method-info p {
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.method-info small {
  color: #64748b;
  font-size: 0.875rem;
}

.availability-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.availability-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-indicator.available {
  background: #10b981;
}

.status-indicator.busy {
  background: #fbbf24;
}

.status-indicator.unavailable {
  background: #ef4444;
}

.response-time h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.response-time ul {
  list-style: none;
  padding-left: 0;
}

.response-time ul li {
  margin-bottom: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #64748b;
  line-height: 1.6;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-card {
    max-width: 400px;
    transform: rotate(0deg);
  }

  .card-content {
    font-size: 11px;
    padding: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    margin-right: 0 !important;
  }

  .timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }

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

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

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

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .lighthouse-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .portfolio-links {
    flex-direction: column;
  }

  .timeline-chart {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline-chart::before {
    display: none;
  }

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

  .trust-points-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .filter-buttons {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .filter-btn {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-card {
    max-width: 320px;
  }

  .card-content {
    font-size: 10px;
    padding: 12px;
  }

  .code-line {
    margin-bottom: 2px;
  }

  .indent {
    padding-left: 12px;
  }

  .double-indent {
    padding-left: 24px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-card,
  .availability-card {
    padding: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .problem-text,
  .solution-text {
    flex-direction: column;
    gap: 0.5rem;
  }

  .solution-text {
    padding-left: 0;
    border-left: none;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
  }

  .trust-point {
    padding: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .lighthouse-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .highlights-list {
    gap: 0.75rem;
  }

  .highlight-item {
    padding: 0.5rem;
  }

  .highlight-icon {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
    min-width: 32px;
    min-height: 32px;
  }
}

/* Contact Form Two - Contact Form 7 Styling */

/* Reset and Base Styles for Contact Form */
/* .contact-page-two {
  padding-top: 70px;
} */

/* Contact Section */
.contact-section-two {
  padding: 80px 0;
  background: white;
}

.contact-grid-two {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-container-two h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-form-container-two > p {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.125rem;
}

/* Contact Form 7 Wrapper */
.cf7-form-wrapper {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Contact Form 7 Main Form */
.wpcf7-form {
  display: grid;
  gap: 1.5rem;
}

/* Form Group Styling - Your Custom Structure */
.wpcf7-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Two Column Layout for Specific Groups */
.wpcf7-form .form-group:nth-child(1),
.wpcf7-form .form-group:nth-child(2) {
  grid-column: span 1;
}

/* Create a grid for the first 7 form groups */
.wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Full width for textarea and submit */
.wpcf7-form .form-group:nth-child(8),
.wpcf7-form .form-group:nth-child(9) {
  grid-column: 1 / -1;
}

/* Labels */
.wpcf7-form .form-group label {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* All Form Controls */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Focus States */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: white;
}

/* Placeholder Styling */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #94a3b8;
  font-style: italic;
}

/* Specific Field Styling */
/* Your Name Field */
.wpcf7-form span.wpcf7-form-control-wrap.your-name input {
  background: white;
}

/* Your Email Field */
.wpcf7-form span.wpcf7-form-control-wrap.your-email input {
  background: white;
}

/* Your Phone Field */
.wpcf7-form span.wpcf7-form-control-wrap.your-phone input {
  background: white;
}

/* Your Company Field */
.wpcf7-form span.wpcf7-form-control-wrap.your-company input {
  background: white;
}

/* Select Dropdowns */
.wpcf7-form span.wpcf7-form-control-wrap.your-service select,
.wpcf7-form span.wpcf7-form-control-wrap.your-budget select,
.wpcf7-form span.wpcf7-form-control-wrap.your-timeline select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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;
  background-color: white;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.wpcf7-form select option {
  padding: 8px;
  background: white;
  color: #1e293b;
}

/* Textarea Specific */
.wpcf7-form span.wpcf7-form-control-wrap.your-message textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  background: white;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  min-width: 150px;
  width: auto;
  justify-self: start;
}

.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
}

/* Loading State */
.wpcf7-form.submitting input[type="submit"] {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Validation States */
.wpcf7-form .wpcf7-not-valid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.wpcf7-form .wpcf7-not-valid:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

/* Validation Messages */
.wpcf7-form .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
}

/* Response Messages */
.wpcf7-form .wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  display: none;
}

.wpcf7-form .wpcf7-response-output:not(.wpcf7-display-none) {
  display: block;
}

/* Success Message */
.wpcf7-form .wpcf7-mail-sent-ok {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
}

/* Error Messages */
.wpcf7-form .wpcf7-mail-sent-ng,
.wpcf7-form .wpcf7-aborted,
.wpcf7-form .wpcf7-spam,
.wpcf7-form .wpcf7-validation-errors {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
}

/* Hide CF7 default elements */
.wpcf7-form p {
  margin: 0;
}

.wpcf7-form br {
  display: none;
}

/* Form Control Wrappers */
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}

/* Contact Info Section */
.contact-info-two {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-two,
.availability-card-two {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #2563eb;
}

.availability-card-two {
  border-top: 4px solid #fbbf24;
}

.contact-card-two h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.contact-card-two > p {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods-two {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method-two {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.method-icon-two {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: 50%;
  flex-shrink: 0;
}

.method-icon-two i {
  color: #2563eb;
  font-size: 1.125rem;
}

.method-info-two h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.method-info-two p {
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.method-info-two small {
  color: #64748b;
  font-size: 0.875rem;
}

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

.social-links-two a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links-two a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.social-links-two a:nth-child(2) {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.social-links-two a:nth-child(2):hover {
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.social-links-two a:nth-child(3) {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.social-links-two a:nth-child(3):hover {
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Availability Card */
.availability-card-two h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.availability-status-two {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.status-indicator-two {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* .status-indicator-two.available {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
} */

.status-indicator-two.available {
  background: #eb1010ff;
  box-shadow: 0 0 0 3px rgba(248, 53, 53, 0.2);
}

.status-indicator-two.busy {
  background: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.status-indicator-two.unavailable {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.availability-status-two span {
  font-weight: 500;
  color: #1e293b;
}

.availability-card-two > p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.response-time-two h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.response-time-two ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.response-time-two ul li {
  margin-bottom: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.5rem;
}

.response-time-two ul li::before {
  content: "•";
  color: #fbbf24;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* FAQ Section */
.faq-section-two {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.faq-item-two {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #2563eb;
}

.faq-item-two:nth-child(2) {
  border-left: 4px solid #fbbf24;
}

.faq-item-two:nth-child(3) {
  border-left: 4px solid #ef4444;
}

.faq-item-two:nth-child(4) {
  border-left: 4px solid #10b981;
}

.faq-item-two:nth-child(5) {
  border-left: 4px solid #8b5cf6;
}

.faq-item-two:nth-child(6) {
  border-left: 4px solid #f59e0b;
}

.faq-item-two:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item-two h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-item-two p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid-two {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Mobile Form Layout */
  .wpcf7-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wpcf7-form .form-group:nth-child(8),
  .wpcf7-form .form-group:nth-child(9) {
    grid-column: 1;
  }

  .cf7-form-wrapper {
    padding: 1.5rem;
  }

  .contact-card-two,
  .availability-card-two {
    padding: 1.5rem;
  }

  .contact-methods-two {
    gap: 1rem;
  }

  .method-icon-two {
    width: 40px;
    height: 40px;
  }

  .faq-grid-two {
    grid-template-columns: 1fr;
  }

  .faq-item-two {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-section-two {
    padding: 60px 0;
  }

  .contact-form-container-two h2 {
    font-size: 1.75rem;
  }

  .cf7-form-wrapper {
    padding: 1rem;
  }

  .wpcf7-form {
    gap: 1rem;
  }

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form select,
  .wpcf7-form textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .wpcf7-form input[type="submit"] {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
  }

  .contact-card-two,
  .availability-card-two {
    padding: 1rem;
  }

  .contact-method-two {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .social-links-two {
    justify-content: center;
  }
}

/* Additional Specific Field Targeting */
.wpcf7-form .form-group:has(span.your-name),
.wpcf7-form .form-group:has(span.your-email),
.wpcf7-form .form-group:has(span.your-phone),
.wpcf7-form .form-group:has(span.your-company),
.wpcf7-form .form-group:has(span.your-service),
.wpcf7-form .form-group:has(span.your-budget),
.wpcf7-form .form-group:has(span.your-timeline) {
  margin-bottom: 0;
}

/* Ensure proper spacing */
.wpcf7-form .form-group {
  margin-bottom: 0;
}

.wpcf7-form-control-wrap select.wpcf7-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding-right: 2.5rem;
  position: relative;
}

.wpcf7-form-control-wrap select.wpcf7-select::after {
  /* won't work on <select> directly */
}

/* Apply arrow only to wrappers that have a select */
.wpcf7-form-control-wrap select.wpcf7-select + *::after {
  /* not ideal */
}

/* BETTER: Use :has() if your browser supports it — modern only */
.wpcf7-form-control-wrap:has(select.wpcf7-select)::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
  font-size: 0.9rem;
}

.wpcf7-form textarea {
  resize: none;
}
