@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #666;
  --accent-color: #0066cc;
  --accent-light: #e6f0ff;
  --light-gray: #f5f5f5;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 70px;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #0052a3 100%);
  width: 0%;
  z-index: 99;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--primary-color);
  line-height: 1.6;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

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

.logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
}

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

/* ===== CART ICON ===== */
.cart-icon {
  position: relative;
}

.cart-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 8px;
  border-radius: 6px;
}

.cart-icon a:hover {
  color: var(--accent-color);
  background-color: var(--light-gray);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-count.active {
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== NAVIGATION ===== */
nav.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav.nav-desktop a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Mobile Menu */
nav.nav-mobile {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  z-index: 99;
}

nav.nav-mobile.active {
  display: block;
  animation: slideDown 0.3s ease;
}

nav.nav-mobile ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}

nav.nav-mobile li {
  padding: 12px 0;
}

nav.nav-mobile a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 15px;
  display: block;
  transition: var(--transition);
}

nav.nav-mobile a:hover {
  color: var(--accent-color);
}

.mobile-dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

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

.dropdown-content {
  display: none;
  list-style: none;
  padding: 10px 0 0 20px;
  margin: 10px 0 0 0;
}

.mobile-dropdown.open .dropdown-content {
  display: block;
}

.dropdown-content li a {
  font-size: 14px;
  color: var(--secondary-color);
}

/* Desktop nav styling */
nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after {
  width: 100%;
}

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

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 9px;
  margin-left: 6px;
  transition: var(--transition);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 220px;
  list-style: none;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  margin-top: 15px;
  overflow: hidden;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background-color: var(--accent-light);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
  padding-left: 24px;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-color);
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  z-index: 101;
}

.mobile-menu-toggle:hover {
  background-color: var(--light-gray);
  color: var(--accent-color);
}

/* ===== MAIN CONTENT ===== */
main {
  min-height: calc(100vh - 160px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

main h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-color);
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
  animation-delay: 0.2s;
}

main h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

main p {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

main a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

main a:hover {
  text-decoration: underline;
}

main ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

main ul li {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
}

article {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

article:nth-child(2) {
  animation-delay: 0.1s;
}

article:nth-child(3) {
  animation-delay: 0.2s;
}

article:nth-child(4) {
  animation-delay: 0.3s;
}

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

article:hover {
  transform: translateX(5px);
}

article h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

article small {
  color: #999;
  font-size: 13px;
}

.faq-item {
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 6px;
  border-left: 4px solid var(--accent-color);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

.faq-item:nth-child(2) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-item:hover {
  background-color: var(--accent-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(8px);
  cursor: pointer;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item:hover h3 {
  color: var(--accent-color);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  margin-top: 80px;
  padding: 60px 20px 30px;
}

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

.footer-section h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

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

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

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
  display: inline-block;
}

.footer-section a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #999;
  font-size: 13px;
  letter-spacing: 0.3px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.6)), 
              url('../images/hero-bg.png') center 30%/cover fixed no-repeat;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: -60px -20px 0 -20px;
  padding: 80px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 102, 204, 0.04) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInDown 0.8s ease forwards;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease forwards 0.2s both;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards 0.4s both;
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  background-color: #0052a3;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #1a1a1a;
  transform: translateY(-3px);
}

/* Ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 60px 20px;
  background-color: var(--light-gray);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease forwards;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  animation: fadeInDown 0.8s ease forwards;
}

.section-header p {
  font-size: 16px;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease forwards 0.2s both;
}

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

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  cursor: pointer;
  border-top: 4px solid transparent;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-color);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: var(--transition);
  display: inline-block;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--accent-color);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.service-card p {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.service-link:hover {
  transform: translateX(5px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 80px 20px;
  background-color: #fff;
}

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

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

.testimonial-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
  transition: var(--transition);
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }

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

.stars {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.testimonial-text {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.testimonial-role {
  color: #999;
  font-size: 13px;
  margin-top: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #0052a3 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  margin: 80px 0 0 0;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease forwards;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease forwards;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 0.8s ease forwards 0.2s both;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== PARALLAX EFFECT ===== */
[data-parallax] {
  will-change: transform;
}
/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    margin: -120px 0 -120px 0;
    padding: 0;
    background-image: linear-gradient(rgba(26, 26, 26, 0.35), rgba(26, 26, 26, 0.35)), url('../images/hero-bg.png');
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding: 20px 15px;
  }

  .hero-content h1 {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }

  .hero-content p {
    font-size: 14px !important;
  }

  .scroll-indicator {
    display: none !important;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 24px;
  }

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

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

  .cta-section h2 {
    font-size: 22px;
  }

  .header-container {
    height: 55px;
    padding: 0 15px;
  }

  .logo {
    font-size: 16px;
    letter-spacing: 1px;
  }

  nav.nav-desktop {
    display: none;
  }

  nav.nav-desktop ul {
    display: none;
  }

  nav.nav-mobile {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    padding: 0;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
  }

  nav.nav-mobile.active {
    display: block;
  }

  nav.nav-mobile a {
    padding: 12px 15px;
    display: block;
    border-bottom: none;
    font-size: 14px;
  }

  nav.nav-mobile a::after {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 24px;
    padding: 10px 12px;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #f9f9f9;
    margin-top: 0;
    margin-left: 15px;
    border-radius: 0;
    animation: none;
  }

  main {
    padding: 0 15px 30px 15px;
  }

  main h1 {
    font-size: 28px;
  }

  main h2 {
    font-size: 20px;
  }

  main p {
    font-size: 14px;
  }

  .philosophy-section > div > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }

  .footer-container {
    gap: 20px;
    grid-template-columns: 1fr;
    font-size: 13px;
  }

  .services-section {
    padding: 40px 15px;
    margin-top: 40px;
  }

  .testimonials-section {
    padding: 30px 15px;
  }

  .cta-section {
    padding: 25px 15px;
  }

  .image-section-1,
  .image-section-2,
  .image-section-3 {
    background-attachment: scroll, scroll;
    background-position: auto, top center;
    min-height: 300px;
    padding: 50px 15px;
    margin: 60px 0;
  }

  .image-section-1 p,
  .image-section-2 p,
  .image-section-3 p {
    font-size: 18px !important;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
  
  .cookie-buttons button {
    font-size: 12px;
    padding: 8px 12px !important;
  }
  
  .cookie-text p {
    font-size: 12px;
  }
}

/* Tablets / Large phones (480px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    min-height: 70vh;
    margin: -40px -20px 0 -20px;
    padding: 50px 20px;
    background-image: linear-gradient(rgba(26, 26, 26, 0.35), rgba(26, 26, 26, 0.35)), url('../images/hero-bg.png');
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
  }

  .hero-content h1 {
    font-size: 40px !important;
    margin-bottom: 20px !important;
  }

  .hero-content p {
    font-size: 18px !important;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

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

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

  .cta-section h2 {
    font-size: 28px;
  }

  .header-container {
    height: 60px;
  }

  nav.nav-desktop {
    display: none;
  }

  nav.nav-desktop ul {
    display: none;
  }

  nav.nav-mobile {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    padding: 0;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
  }

  nav.nav-mobile.active {
    display: block;
  }

  nav.nav-mobile a {
    padding: 12px 20px;
    display: block;
    border-bottom: none;
  }

  nav.nav-mobile a::after {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #f9f9f9;
    margin-top: 0;
    margin-left: 20px;
    border-radius: 0;
    animation: none;
  }

  main {
    padding: 40px 20px;
    font-size: 15px;
  }

  main h1 {
    font-size: 36px;
  }

  main h2 {
    font-size: 24px;
  }

  main p {
    font-size: 15px;
  }

  .philosophy-section h2 {
    font-size: 24px !important;
  }

  .philosophy-section > div > div[style*="grid"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-container {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    font-size: 14px;
  }

  .services-section {
    padding: 50px 20px;
  }

  .testimonials-section {
    padding: 50px 20px;
  }

  .cta-section {
    padding: 35px 20px;
  }

  .image-section-1,
  .image-section-2,
  .image-section-3 {
    background-attachment: scroll, scroll;
    background-position: auto, top center;
    min-height: 350px;
    padding: 60px 20px;
    margin: 35px 0;
  }

  .image-section-1 p,
  .image-section-2 p,
  .image-section-3 p {
    font-size: 20px !important;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
  
  .cookie-text p {
    font-size: 13px;
  }
}

/* Small desktops (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px !important;
  }

  .hero-content p {
    font-size: 22px !important;
  }

  .btn {
    font-size: 15px;
  }

  nav.nav-desktop ul {
    gap: 25px;
  }

  nav.nav-desktop a {
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 32px;
  }

  main {
    padding: 50px 30px;
    font-size: 15px;
  }

  main h1 {
    font-size: 40px;
  }

  main h2 {
    font-size: 28px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    font-size: 14px;
  }

  .services-section {
    padding: 55px 30px;
  }

  .testimonials-section {
    padding: 55px 30px;
  }

  .image-section-1,
  .image-section-2,
  .image-section-3 {
    min-height: 400px;
    padding: 70px 30px;
    margin: 45px 0;
  }

  .image-section-1 p,
  .image-section-2 p,
  .image-section-3 p {
    font-size: 22px !important;
  }
}

/* Large desktops (1024px+) */
@media (min-width: 1025px) {
  .hero-content h1 {
    font-size: 72px !important;
  }

  .hero-content p {
    font-size: 28px !important;
  }

  .btn {
    font-size: 16px;
  }

  nav.nav-desktop ul {
    gap: 35px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  main {
    padding: 60px 40px;
    font-size: 16px;
  }

  main h1 {
    font-size: 56px;
  }

  main h2 {
    font-size: 32px;
  }

  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    font-size: 15px;
  }

  .services-section {
    padding: 80px 40px;
  }

  .testimonials-section {
    padding: 80px 40px;
  }

  .image-section-1,
  .image-section-2,
  .image-section-3 {
    min-height: 500px;
    padding: 120px 40px;
  }

  .image-section-1 p,
  .image-section-2 p,
  .image-section-3 p {
    font-size: 24px !important;
  }
}


/* ===== IMAGE ACCENT STYLES ===== */
.image-section-1 {
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.7)), 
                    url('../images/section-1.png');
  background-position: fixed, top center;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
  color: #fff;
  padding: 80px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 50px 0;
}

.image-section-2 {
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.7)), 
                    url('../images/section-2.png');
  background-position: fixed, top center;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
  color: #fff;
  padding: 80px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 50px 0;
}

.image-section-3 {
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.7)), 
                    url('../images/section-3.png');
  background-position: fixed, top center;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
  color: #fff;
  padding: 80px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 50px 0;
}

/* Mobile responsive - disable parallax on mobile for better performance */
@media (max-width: 768px) {
  .image-section-1,
  .image-section-2,
  .image-section-3 {
    background-attachment: scroll, scroll;
    background-position: auto, top center;
    min-height: 400px;
    padding: 100px 20px;
    margin: 60px 0;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 98;
  display: none;
  animation: slideUp 0.3s ease;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: var(--secondary-color);
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-buttons button {
  white-space: nowrap;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
