/* 
 * Najah Media Styles
 * Version 3.0.0
 */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Figtree:wght@400;500&display=swap");

:root {
  /* Brand Colors */
  --color-babypowder: #fdfcfa;
  --color-mustard: #ffd449;
  --color-flame: #ec4e20;
  --color-oxford-blue: #0a1d37;
  --color-night: #0a090c;

  /* Semantic Colors */
  --color-text: var(--color-oxford-blue);
  --color-background: var(--color-babypowder);
  --color-card-bg: #ffffff;
  --color-border: rgba(0, 0, 0, 0.1);

  /* Dark Theme Colors */
  --color-dark-background: #121212;
  --color-dark-surface: #1e1e1e;
  --color-dark-border: rgba(255, 255, 255, 0.1);
  --color-dark-text: rgba(255, 255, 255, 0.87);
  --color-dark-text-secondary: rgba(255, 255, 255, 0.6);
  --color-background-dark: var(--color-dark-background);
  --color-text-dark: #ffffff;
  --color-card-bg-dark: var(--color-dark-surface);

  /* Animation */
  --transition-speed: 0.3s;
  --transition-timing: ease;
  --transition-cubic: cubic-bezier(0.165, 0.84, 0.44, 1);

  /* Layout */
  --container-max: 1400px;
  --container-padding: clamp(1rem, 5vw, 2rem);

  /* Breakpoints */
  --breakpoint-xs: 480px;
  --breakpoint-sm: 768px;
  --breakpoint-md: 1024px;
  --breakpoint-lg: 1200px;
  --breakpoint-xl: 1400px;

  /* Typography Scale */
  --font-size-base: 1rem;
  --scale-ratio: 1.25;
  --fluid-h1: clamp(2rem, 5vw, 3.5rem);
  --fluid-h2: clamp(1.8rem, 4vw, 2.5rem);
  --fluid-h3: clamp(1.5rem, 3vw, 2rem);

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Optimize transitions */
.transition-all {
  transition: background-color var(--transition-speed) var(--transition-timing),
    color var(--transition-speed) var(--transition-timing),
    border-color var(--transition-speed) var(--transition-timing),
    box-shadow var(--transition-speed) var(--transition-timing);
}

/* Accessibility and Base Styles */
.btn-primary,
.btn-secondary,
.btn-utility,
.nav-links a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-cubic);
}

/* Button Variants */
.btn-primary {
  background: var(--color-mustard);
  color: var(--color-oxford-blue);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
}

.btn-primary:hover {
  background: var(--color-flame);
  color: var(--color-babypowder);
}

.btn-utility {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: rgba(236, 78, 32, 0.1);
  color: var(--color-flame);
  position: relative;
  overflow: hidden;
}

.btn-utility:hover {
  background: var(--color-flame);
  color: var(--color-babypowder);
}

/* Base Styles */
body {
  font-family: "Figtree", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.2;
}

/* Header */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: var(--container-max);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

/* Navigation */
.nav-links ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-text);
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-flame);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--transition-cubic);
}

.nav-links a:hover {
  color: var(--color-flame);
}

.nav-links a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Theme Toggle */
.btn-theme {
  overflow: hidden;
  transform: rotate(0deg);
}

.btn-theme .fa-sun,
.btn-theme .fa-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-speed) ease;
}

body:not(.dark-theme) .btn-theme .fa-sun {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(20px);
}

body:not(.dark-theme) .btn-theme .fa-moon {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

body.dark-theme .btn-theme .fa-sun {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

body.dark-theme .btn-theme .fa-moon {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-20px);
}

/* Utility Buttons Container */
.utility-buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}

/* Footer */
.footer {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem var(--container-padding);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s var(--transition-cubic);
}

.footer-links a:hover {
  color: var(--color-flame);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(236, 78, 32, 0.1);
  color: var(--color-flame);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s var(--transition-cubic);
}

.social-links a:hover {
  background: var(--color-flame);
  color: var(--color-babypowder);
  transform: translateY(-3px);
}

/* Dark Theme Adjustments */
body.dark-theme .footer {
  background: rgba(18, 18, 18, 0.95);
  border-top: 1px solid var(--color-border);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
  }

  .footer-section {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-info {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: var(--color-background);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-title {
  font-size: var(--fluid-h1);
  line-height: 1.2;
  color: var(--color-oxford-blue);
  margin-bottom: 1.5rem;
}

.dynamic-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  /* Adjust based on your text size */
  position: relative;
  margin-top: 0.5rem;
}

.dynamic-text {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 8s infinite;
  color: var(--color-flame);
}

.dynamic-text:nth-child(1) {
  animation-delay: 0s;
}

.dynamic-text:nth-child(2) {
  animation-delay: 2s;
}

.dynamic-text:nth-child(3) {
  animation-delay: 4s;
}

.dynamic-text:nth-child(4) {
  animation-delay: 6s;
}

@keyframes slideUp {
  0%,
  100% {
    opacity: 0;
    transform: translateY(20px);
  }

  3%,
  22% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.hero-stats {
  display: flex;
  gap: 4rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-flame);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-text);
  opacity: 0.8;
  margin-top: 0.5rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-card-bg);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.4s var(--transition-cubic),
    box-shadow 0.4s var(--transition-cubic);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 78, 32, 0.1);
  border-radius: 15px;
  color: var(--color-flame);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-oxford-blue);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.8;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-speed) var(--transition-cubic),
    background var(--transition-speed) var(--transition-timing);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-flame);
  color: white;
}

.btn-secondary {
  background: rgba(10, 29, 55, 0.05);
  color: var(--color-oxford-blue);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-oxford-blue);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--color-flame);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

.arrow-scroll span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color-oxford-blue);
  border-right: 2px solid var(--color-oxford-blue);
  transform: rotate(45deg);
  margin: -5px;
  animation: arrow 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

@keyframes arrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(0, 0);
  }
}

/* Services Section Styles */
.services {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  perspective: 1000px;
}

.service-card {
  border-radius: 24px;
  padding: 2.5rem;
  background: var(--color-card-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--transition-cubic),
    box-shadow 0.4s var(--transition-cubic);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--color-mustard) 0%,
    var(--color-flame) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.05;
}

/* Service Header */
.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--color-mustard) 0%,
    var(--color-flame) 100%
  );
  border-radius: 20px;
  transform: rotate(-5deg);
  transition: transform 0.3s var(--transition-cubic);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-icon-wrapper {
  transform: rotate(0) scale(1.1);
}

.service-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--color-white, #fff);
}

.service-title h3 {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.service-title p {
  color: var(--color-text);
  opacity: 0.8;
}

/* Service Content */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.service-item:hover {
  background: rgba(255, 212, 73, 0.1);
}

.service-item-icon {
  color: var(--color-flame);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-item-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.service-item-content p {
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.8;
  line-height: 1.5;
}

/* Service Footer */
.service-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-flame);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-cta i {
  transition: transform 0.3s var(--transition-cubic);
}

.service-cta:hover i {
  transform: translateX(5px);
}

/* Clients Section */
.clients {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    var(--color-background) 0%,
    rgba(253, 252, 250, 0.8) 50%,
    var(--color-background) 100%
  );
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.clients-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.clients-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-header h2 {
  font-size: var(--fluid-h2);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.clients-header p {
  color: var(--color-text);
  opacity: 0.8;
}

/* Marquee */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  border-radius: 15px;
}

.marquee {
  display: flex;
  width: fit-content;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2.5rem;
  min-width: 100%;
}

.client-logo {
  flex: 0 0 220px;
  height: 150px;
  padding: 2rem;
  background: var(--color-card-bg);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--transition-cubic),
    box-shadow 0.4s var(--transition-cubic);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--transition-cubic);
}

.client-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.client-logo:hover img {
  transform: scale(1.05);
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Stats Section */
.clients-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 80px;
  padding: 3rem;
  background: var(--color-card-bg);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-flame);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--color-text);
  font-size: 1rem;
  text-align: center;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--color-background);
}

.about-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h3 {
  font-size: var(--fluid-h2);
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 2rem;
  color: var(--color-text);
  opacity: 0.8;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature i {
  color: var(--color-flame);
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--color-card-bg);
}

.contact-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--color-flame);
}

.info-item h4 {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.info-item p {
  color: var(--color-text);
  opacity: 0.8;
}

/* Form */
.form-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-card-bg);
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: -0.75rem;
  background: var(--color-card-bg);
  padding: 0 0.5rem;
  color: var(--color-text);
  font-size: 0.9rem;
  transform: none;
}

.form-group textarea ~ label {
  top: 1.5rem;
  transform: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-flame);
  outline: none;
  box-shadow: 0 0 0 3px rgba(236, 78, 32, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group select:valid + label {
  top: 0;
  transform: translateY(-50%) scale(0.9);
  color: var(--color-flame);
  opacity: 1;
}

/* Buttons & Links */
.btn-submit,
.btn-whatsapp,
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s var(--transition-timing);
  will-change: transform;
}

.btn-submit {
  padding: 1rem 2rem;
  background: var(--color-flame);
  color: white;
  border: none;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--color-oxford-blue);
  transform: translateY(-2px);
}

.btn-submit i {
  transition: transform 0.3s var(--transition-timing);
}

.btn-submit:hover i {
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-mustard);
  color: var(--color-oxford-blue);
}

.social-link:hover {
  background: var(--color-flame);
  color: white;
  transform: translateY(-3px);
}

.btn-whatsapp {
  padding: 0.8rem 1.5rem;
  background: #25d366;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
  animation: whatsapp-pulse 2s infinite;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.4s var(--transition-cubic);
}

.btn-whatsapp:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(236, 78, 32, 0.2);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Utility Buttons */
.btn-theme {
  position: relative;
  overflow: hidden;
}

.btn-theme i {
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.btn-lang {
  width: auto;
  padding: 0 1rem;
  border-radius: 20px;
  gap: 0.5rem;
}

.btn-lang .lang-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}

.btn-utility:hover {
  background: var(--color-mustard);
  transform: translateY(-2px);
}

/* RTL Support */
body.rtl {
  direction: rtl;
}

body.rtl .nav-links ul,
body.rtl .utility-buttons {
  flex-direction: row-reverse;
}

body.rtl .privacy-policy {
  text-align: right;
}

body.rtl .policy-section ul {
  margin-left: 0;
  margin-right: 1.5rem;
}

body.rtl .last-updated {
  direction: rtl;
}

/* Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-flame);
  z-index: 1001;
  transition: width 0.1s ease;
  will-change: width;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1000;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--color-oxford-blue);
  /* Light mode color */
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.3s var(--transition-cubic);
}

/* Hamburger Spans Positioning */
.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

/* Dark Mode Specific Styles */
body.dark-theme .hamburger span {
  background-color: #ffffff !important;
  /* Force white color in dark mode */
}

/* Active State Styles */
.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

/* Additional Dark Theme Adjustments */
body.dark-theme .header,
body.dark-theme .footer {
  background: rgba(18, 18, 18, 0.95);
}

/* Logo Adjustments for Dark Mode */
body.dark-theme .logo-img {
  filter: brightness(0) invert(1);
  /* This will make dark logos visible in dark mode */
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-mustard);
  color: var(--color-oxford-blue);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  will-change: transform, opacity;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--color-flame);
  color: white;
  transform: translateY(-3px);
}

/* Lead Generation Section */
.lead-gen {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--color-background) 0%,
    rgba(253, 252, 250, 0.95) 100%
  );
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.lead-gen::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("assets/pattern.svg") repeat;
  opacity: 0.05;
  pointer-events: none;
}

.lead-gen-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Problems Panel */
.problems-panel h2 {
  font-size: var(--fluid-h2);
  color: var(--color-oxford-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 3rem;
}

.challenges-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-card-bg);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s var(--transition-cubic);
  cursor: pointer;
  position: relative;
  will-change: transform;
}

.challenge-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 78, 32, 0.1);
  border-radius: 12px;
  color: var(--color-flame);
  font-size: 1.5rem;
}

.challenge-content h3 {
  font-size: 1.1rem;
  color: var(--color-oxford-blue);
  margin-bottom: 0.3rem;
}

.challenge-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  opacity: 0.8;
}

/* Action Panel */
.action-panel {
  background: var(--color-card-bg);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.action-content h3 {
  font-size: 1.8rem;
  color: var(--color-oxford-blue);
  margin-bottom: 1rem;
}

.benefits {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.benefit-item i {
  color: var(--color-flame);
}

.strategy-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.strategy-form select,
.strategy-form input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(10, 29, 55, 0.1);
  border-radius: 12px;
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.strategy-form select:focus,
.strategy-form input:focus {
  border-color: var(--color-flame);
  outline: none;
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
  opacity: 0.7;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@keyframes highlight {
  0% {
    background-color: rgba(236, 78, 32, 0.1);
  }

  100% {
    background-color: transparent;
  }
}

.lead-gen:target {
  animation: highlight 1s ease-out;
}

/* Particles */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
}

/* Consolidated Media Queries */

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-background);
    padding: 80px 2rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn-utility,
  .nav-links a,
  .btn-utility::before,
  .nav-links a::before,
  .service-card,
  .challenge-item {
    transition: none !important;
    transform: none !important;
  }
}

/* Large Screens */
@media (max-width: 1200px) {
  :root {
    --container-padding: 2rem;
  }

  .hero-container {
    padding: 6rem var(--container-padding) 4rem;
  }

  .service-cards,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .client-logo {
    flex: 0 0 180px;
    height: 120px;
    padding: 1.2rem;
  }

  .marquee-group {
    gap: 3.5rem;
  }

  .contact-content,
  .lead-gen-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Medium Screens */
@media (max-width: 1024px) {
  .hero-container,
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-services {
    margin-top: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-gen-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stat-item {
    flex: 0 0 auto;
    min-width: 150px;
  }

  .challenges-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (max-width: 968px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .client-logo {
    flex: 0 0 160px;
    height: 110px;
    padding: 1rem;
  }

  .marquee-group {
    gap: 3rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
    --space-lg: 3rem;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero-container {
    padding: 5rem var(--container-padding) 3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .service-cards,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    transform: none !important;
  }

  .utility-buttons {
    gap: 0.5rem;
  }

  .btn-utility {
    width: 35px;
    height: 35px;
  }

  .btn-lang .lang-text,
  .btn-whatsapp span {
    display: none;
  }

  .btn-whatsapp {
    padding: 0.8rem;
    border-radius: 50%;
  }

  .btn-primary,
  .btn-secondary,
  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text h3,
  .category-header h3,
  .privacy-policy h1 {
    font-size: 1.8rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }

  .challenges-list {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    /* Prevent zoom on mobile */
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --space-lg: 2rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stat-item {
    width: 100%;
    text-align: center;
  }

  .logo-img {
    height: -40px;
  }

  .client-logo {
    flex: 0 0 120px;
    height: 90px;
    padding: 0.7rem;
  }

  .marquee-group {
    gap: 2rem;
  }

  .error-message {
    font-size: 0.8rem;
  }

  .form-indicator {
    height: 2px;
  }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-container {
    padding: 4rem var(--container-padding) 2rem;
  }

  .nav-links {
    padding: 60px 2rem;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Notched Phones Support */
@supports (padding: max(0px)) {
  .header,
  .footer {
    padding-left: max(var(--container-padding), env(safe-area-inset-left));
    padding-right: max(var(--container-padding), env(safe-area-inset-right));
  }
}

/* Dark Theme */
body.dark-theme {
  --color-babypowder: #121212;
  --color-oxford-blue: #ffffff;
  --color-card-bg: #1e1e1e;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-text: var(--color-dark-text);
  --color-heading: #ffffff;
  --color-background: var(--color-dark-background);
  --color-card-bg-dark: var(--color-dark-surface);

  background-color: var(--color-background);
  color: var(--color-text);

  .header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
  }

  .nav-links {
    background: var(--color-background);
  }

  .nav-links a {
    color: var(--color-text);
  }

  .hamburger span {
    background-color: var(--color-text);
  }

  .btn-utility,
  .btn-whatsapp {
    background-color: var(--color-surface);
    color: var(--color-text);
  }

  .btn-utility:hover,
  .btn-lang:hover,
  .btn-whatsapp:hover {
    transform: translateY(-3px);
    background: var(--color-flame);
    color: var(--color-babypowder);
    box-shadow: 0 4px 12px rgba(236, 78, 32, 0.2);
  }

  .btn-utility:active,
  .btn-lang:active,
  .btn-whatsapp:active {
    transform: translateY(0);
  }

  .btn-primary {
    background: var(--color-mustard);
    color: var(--color-night);
  }

  input,
  textarea,
  select {
    background-color: var(--color-surface);
    color: var(--color-text);
    border-color: var(--color-border);

    &::placeholder {
      color: var(--color-dark-text-secondary);
    }

    &:focus {
      border-color: var(--color-flame);
      background-color: rgba(255, 255, 255, 0.05);
    }
  }

  .footer {
    background-color: #1a1a1a;
  }

  .footer-section h4,
  .footer-section p,
  .footer-section a,
  .footer-bottom p {
    color: var(--color-text);
  }

  .social-links a {
    color: var(--color-text);
    opacity: 0.8;

    &:hover {
      opacity: 1;
    }
  }

  .privacy-policy {
    background: var(--color-background);

    h1,
    h2,
    p,
    ul li {
      color: var(--color-text);
    }
  }

  .last-updated {
    color: var(--color-text);
    opacity: 0.7;
  }

  .lead-gen {
    background: linear-gradient(
      135deg,
      var(--color-background) 0%,
      rgba(30, 30, 30, 0.95) 100%
    );
  }

  .challenge-item,
  .action-panel {
    background: var(--color-card-bg-dark);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-utility:focus-visible,
  .nav-links a:focus-visible {
    outline: 2px solid var(--color-flame);
    outline-offset: 2px;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .utility-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

/* Mobile-First Media Queries */
@media (max-width: 768px) {
  /* Container Adjustments */
  .container {
    padding: 0 var(--container-padding);
  }

  /* Header Mobile Styles */
  .header {
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    padding: 0.5rem var(--container-padding);
  }

  .nav-container {
    gap: 1rem;
  }

  /* Mobile Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-background);
    padding: 5rem var(--container-padding) 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s var(--transition-cubic);
    z-index: 1000;

    &.active {
      transform: translateX(0);
    }

    ul {
      flex-direction: column;
      gap: 2rem;
    }

    a {
      font-size: 1.5rem;
    }
  }

  /* Utility Buttons Mobile */
  .utility-buttons {
    gap: 0.5rem;
  }

  .btn-lang .lang-text,
  .btn-whatsapp span {
    display: none;
  }

  /* Hero Section Mobile */
  .hero-container {
    padding: 6rem var(--container-padding) 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  /* Service Cards Mobile */
  .service-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Lead Generation Section Mobile */
  .lead-gen-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .challenges-list {
    gap: 1rem;
  }

  /* Forms Mobile */
  .form-group {
    margin-bottom: 1rem;
  }

  input,
  textarea,
  select {
    font-size: 16px;
    /* Prevent zoom on iOS */
    padding: 0.8rem;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .social-links {
    justify-content: center;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --fluid-h1: clamp(2rem, 8vw, 2.5rem);
    --fluid-h2: clamp(1.5rem, 6vw, 2rem);
    --fluid-h3: clamp(1.2rem, 5vw, 1.5rem);
  }

  .hero-title {
    font-size: var(--fluid-h1);
  }

  .hero-description {
    font-size: 1rem;
  }

  .challenge-item {
    padding: 1rem;
  }

  .challenge-content h3 {
    font-size: var(--fluid-h3);
  }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
  .nav-links {
    padding-top: 4rem;
    overflow-y: auto;
  }

  .hero-container {
    min-height: auto;
    padding: 5rem var(--container-padding) 2rem;
  }
}

/* Dynamic Text Wrapper Styles */
.hero-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.dynamic-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  /* Adjust based on your text size */
  position: relative;
  margin-top: 0.5rem;
}

.dynamic-text {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 8s infinite;
  color: var(--color-flame);
}

.dynamic-text:nth-child(1) {
  animation-delay: 0s;
}

.dynamic-text:nth-child(2) {
  animation-delay: 2s;
}

.dynamic-text:nth-child(3) {
  animation-delay: 4s;
}

.dynamic-text:nth-child(4) {
  animation-delay: 6s;
}

@keyframes slideUp {
  0%,
  100% {
    opacity: 0;
    transform: translateY(20px);
  }

  3%,
  22% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: var(--fluid-h1);
    line-height: 1.3;
    padding: 0 1rem;
  }

  .dynamic-text-wrapper {
    min-height: 45px;
    /* Adjust for mobile text size */
    margin: 1rem 0;
  }

  .dynamic-text {
    font-size: 1.5rem;
    /* Adjust size for mobile */
    width: 100%;
    padding: 0 1rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: calc(var(--fluid-h1) * 0.9);
  }

  .dynamic-text {
    font-size: 1.25rem;
  }

  .dynamic-text-wrapper {
    min-height: 40px;
  }
}

/* Section Headers & Titles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: var(--fluid-h2);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-flame);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  opacity: 0.8;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

/* Services Section Specific */
.services {
  padding: 5rem 0;
  background: var(--color-background);
}

.services-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--transition-cubic);
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Dark Theme Adjustments */
body.dark-theme .section-title {
  color: var(--color-dark-text);
}

body.dark-theme .section-subtitle {
  color: var(--color-dark-text);
  opacity: 0.7;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: calc(var(--fluid-h2) * 0.9);
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

/* Privacy Policy Page Styles */
.privacy-policy {
  padding-top: 180px;
  padding-bottom: 60px;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  min-height: 100vh;
  background: var(--color-background);
}

.privacy-policy .container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.privacy-policy h1 {
  font-size: var(--fluid-h1);
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Header Adjustments */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .privacy-policy {
    padding-top: 150px;
    padding-bottom: 40px;
  }

  .privacy-policy h1 {
    font-size: calc(var(--fluid-h1) * 0.8);
    margin-bottom: 1rem;
  }

  .header {
    top: 0.5rem;
    width: calc(100% - 1rem);
  }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
  .privacy-policy {
    padding-top: 130px;
  }
}

/* Portfolio Section Styles */
.portfolio {
  padding: 5rem 0;
  background: var(--color-background);
}

.portfolio-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-title {
  font-size: var(--fluid-h3);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.image-container {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--transition-cubic);
}

/* Dark Theme Adjustments */
body.dark-theme .image-container {
  background: var(--color-dark-surface);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

body.dark-theme .gallery-title {
  color: var(--color-dark-text);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .portfolio-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-item {
    gap: 0.75rem;
  }

  .gallery-title {
    font-size: 1.25rem;
  }

  .image-container {
    padding: 1.5rem;
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.notification.success {
  background-color: #28a745;
}

.notification.error {
  background-color: #dc3545;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Form Error States */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #dc3545;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}
