/* ===== Blog Section ===== */
.blog-section {
  background: var(--gray-100);
  padding: 6rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px) scale(1.02);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-card:hover img {
  transform: scale(1.05);
}
.blog-card > a {
  display: block;
  overflow: hidden;
}
.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  color: var(--dark-color);
  font-weight: 700;
}
.blog-card p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.blog-card span {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
}
.blog-card .blog-meta img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-card .blog-meta span {
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 500;
}
.blog-card .blog-meta .blog-date {
  color: var(--gray-400);
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
:root {
    --primary-color: #F57C00;
    --accent-color: #E65100;

  --accent-rgb: 59, 130, 246;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --rounded-sm: 0.25rem;
  --rounded: 0.5rem;
  --rounded-md: 0.75rem;
  --rounded-lg: 1rem;
  --rounded-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded);
  font-weight: 600;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.primary-btn {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: var(--shadow);
}

.primary-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.secondary-btn {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.secondary-btn:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.outline-btn {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--gray-300);
}

.outline-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.section-header {
  margin-bottom: 3rem;
  text-align: left;
}

.section-header.center {
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

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

.section-description {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Navbar Dropdown Styles */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 0.5rem;
  min-width: 220px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  padding: 0.5rem 1.5rem;
}
.dropdown-menu a {
  color: var(--text-dark);
  display: block;
  transition: color 0.2s;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--accent-color);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
  color: var(--accent-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.cta-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 1rem;
}

/* Mobile Menu */
.nav__menu__btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-line {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero-section {
  padding: 12rem 0 6rem;
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.highlight {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(var(--accent-rgb), 0.2);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

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

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1rem;
}

.tech-badge img {
  height: 30px;
  width: auto;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.badge i {
  color: var(--accent-color);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.mouse-animation {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-light);
  border-radius: 12px;
  position: relative;
  margin-top: 0.5rem;
}

.mouse-animation::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: 5px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ===== About Section ===== */
.about-section {
  padding: 6rem 0;
  background: var(--white);
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  flex: 1;
}

.about-image img {
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent-color);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--rounded);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.years {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.label {
  font-size: 0.875rem;
  display: block;
  margin-top: 0.25rem;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature {
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: var(--rounded);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ===== Services Section ===== */
.services-section {
  padding: 6rem 0;
  background: var(--gray-100);
}

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

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--rounded);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

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

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* ===== Portfolio Section ===== */
.portfolio-section {
  padding: 6rem 0;
  background: var(--white);
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--rounded);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
}

.portfolio-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-content p {
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.portfolio-link {
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.portfolio-link:hover {
  color: var(--accent-color);
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--gray-100);
}

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

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--rounded);
  box-shadow: var(--shadow-sm);
}

.rating {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===== Process Section ===== */
.process-section {
  padding: 6rem 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: step-counter;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--gray-100);
  border-radius: var(--rounded);
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: 4rem 0;
  background: url('images/about.jpg') no-repeat center center / cover;
  color: var(--text-dark);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(117, 102, 102, 0.65); /* White overlay with 85% opacity */
  z-index: 1;
}

.cta-section > * {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 6rem 0;
  background: var(--gray-100);
}

.contact-content {
  display: flex;
  gap: 3rem;
}

.contact-info {
  flex: 1;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  color: var(--white);
}


/* ======================
   WhatsApp Floating Chatbox Glassmorphism Styles
   ====================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 60%, #128c7e 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  box-shadow: 0 8px 32px rgba(30,58,95,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  outline: none;
}
.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e 60%, #25d366 100%);
  box-shadow: 0 12px 36px rgba(30,58,95,0.22);
}
.whatsapp-chatbox {
  display: none;
  flex-direction: column;
  width: 340px;
  max-width: 95vw;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px rgba(30,58,95,0.18);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 12px;
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  transform: translateY(40px) scale(0.98);
}
.whatsapp-chatbox.open {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.chatbox-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.7);
  padding: 18px 20px 12px 20px;
  border-bottom: 1px solid rgba(30,58,95,0.07);
}
.chatbox-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(245,124,0,0.08);
}
.chatbox-title {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: #128c7e;
  font-size: 1.08rem;
}
.chatbox-title small {
  color: #25d366;
  font-size: 0.85rem;
  font-weight: 500;
}
.chatbox-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #888;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbox-close:hover {
  color: #e74c3c;
  background: rgba(231,76,60,0.08);
}
.chatbox-body {
  padding: 22px 20px 10px 20px;
  background: transparent;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chatbox-message.bot {
  background: rgba(37,211,102,0.09);
  color: #1E3A5F;
  padding: 12px 16px;
  border-radius: 14px 14px 14px 4px;
  font-size: 1.05rem;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(30,58,95,0.04);
  max-width: 90%;
}
.chatbox-quick-replies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.quick-reply {
  background: rgba(37,211,102,0.13);
  color: #128c7e;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 2px;
}
.quick-reply:hover {
  background: #25d366;
  color: #fff;
}
.chatbox-footer {
  padding: 14px 20px 18px 20px;
  background: transparent;
  border-top: 1px solid rgba(30,58,95,0.07);
  display: flex;
  justify-content: flex-end;
}
.chatbox-cta {
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30,58,95,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.chatbox-cta:hover {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
}
@media (max-width: 600px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
  .whatsapp-chatbox {
    width: 98vw;
    min-width: 0;
    right: 0;
    left: 0;
    border-radius: 18px;
    margin-bottom: 8px;
  }
  .whatsapp-btn {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }
}


/* ===== Footer ===== */
.footer {
  background: var(--dark-color);
  color: var(--gray-300);
  padding: 4rem 0 0;
}

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

.footer-about img {
  margin-bottom: 1.5rem;
  height: 40px;
}

.footer-about p {
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-color);
  color: var(--white);
}

.footer h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

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

.footer ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a:hover {
  color: var(--accent-color);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .hero-container,
  .about-content,
  .contact-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content,
  .about-text {
    max-width: 100%;
  }
  
  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta,
  .trust-badges {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
  
  .about-image {
    margin-bottom: 3rem;
  }
  
  .experience-badge {
    right: 50%;
    transform: translateX(50%);
  }
  
  .section-header {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }
  
  .nav__links.active {
    right: 0;
  }
  
  .nav__menu__btn {
    display: block;
  }
  
  .nav__menu__btn.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav__menu__btn.active .menu-line:nth-child(2) {
    opacity: 0;
  }
  
  .nav__menu__btn.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}