@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
  --brown: #C08351;
  --green: #3B7660;
  --light-grey: #EAEAEA;
  --yellow: #F2CB6C;
  --dark-grey: #28292B;
}

/* Prevent scrolling during loading */
body {
  overflow: hidden; /* Initially prevent scrolling */
}

/* Loading Screen Styles */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #28292B; /* Dark grey background */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  overflow: hidden;
}

#loading-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23FFFFFF" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
  background-size: 20px 20px;
  opacity: 0.1;
  pointer-events: none;
}

#loading-screen::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, transparent 30%, #28292B 70%);
  opacity: 0.8;
  animation: pulse-radial 4s ease-in-out infinite;
}

@keyframes pulse-radial {
  0% {
    transform: scale(0.85);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.85);
    opacity: 0.5;
  }
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  text-align: center;
  max-width: 90%;
  width: 700px;
  position: relative;
  z-index: 2;
}

.logo-container {
  margin-bottom: 50px;
  width: 80%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: gentle-float 4s ease-in-out infinite;
}

@keyframes gentle-float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

#loader-logo {
  width: 100%;
  height: auto;
  filter: none; /* Remove drop shadow/glow effect */
}

/* Target SVG elements within the logo */
#loader-logo path,
#loader-logo rect,
#loader-logo polygon,
#loader-logo circle,
#loader-logo ellipse,
#loader-logo line,
#loader-logo polyline {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw-logo 3s ease-in-out forwards;
}

/* Create draw effect for SVG paths */
@keyframes draw-logo {
  to {
    stroke-dashoffset: 0;
  }
}

/* Apply different animation delays to create cascading effect */
#loader-logo path:nth-child(1),
#loader-logo rect:nth-child(1),
#loader-logo polygon:nth-child(1),
#loader-logo circle:nth-child(1),
#loader-logo ellipse:nth-child(1) {
  animation-delay: 0s;
}

#loader-logo path:nth-child(2),
#loader-logo rect:nth-child(2),
#loader-logo polygon:nth-child(2),
#loader-logo circle:nth-child(2),
#loader-logo ellipse:nth-child(2) {
  animation-delay: 0.2s;
}

#loader-logo path:nth-child(3),
#loader-logo rect:nth-child(3),
#loader-logo polygon:nth-child(3),
#loader-logo circle:nth-child(3),
#loader-logo ellipse:nth-child(3) {
  animation-delay: 0.4s;
}

#loader-logo path:nth-child(4),
#loader-logo rect:nth-child(4),
#loader-logo polygon:nth-child(4),
#loader-logo circle:nth-child(4),
#loader-logo ellipse:nth-child(4) {
  animation-delay: 0.6s;
}

#loader-logo path:nth-child(5),
#loader-logo rect:nth-child(5),
#loader-logo polygon:nth-child(5),
#loader-logo circle:nth-child(5),
#loader-logo ellipse:nth-child(5) {
  animation-delay: 0.8s;
}

/* Add fill animation after drawing */
#loader-logo path,
#loader-logo rect,
#loader-logo polygon,
#loader-logo circle,
#loader-logo ellipse {
  fill-opacity: 0;
  animation: draw-logo 3s ease-in-out forwards, 
             fill-in 1s ease-in-out 2s forwards,
             pulse-glow 2s ease-in-out 3s infinite alternate;
}

@keyframes fill-in {
  from {
    fill-opacity: 0;
  }
  to {
    fill-opacity: 1;
  }
}

@keyframes pulse-glow {
  from {
    filter: brightness(1);
  }
  to {
    filter: brightness(1.2);
  }
}

.loading-progress {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 0 auto 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(192, 131, 81, 0.2);
}

.loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brown), #F2CB6C, var(--brown));
  background-size: 200% 100%;
  border-radius: 3px;
  animation: loading 2.5s ease-in-out forwards, gradient-shift 2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  20% {
    width: 20%;
  }
  50% {
    width: 60%;
  }
  80% {
    width: 85%;
  }
  100% {
    width: 100%;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



/* Main Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  background: var(--light-grey);
  color: var(--dark-grey);
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 16px;
  height: 100%;
  overflow-x: hidden;
}
::selection {
  background: var(--yellow);
  color: var(--dark-grey);
}
h1, h2, h3, h4, h5, .hero-title, .section-title, .nav-title, .logo {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
}
h1 {
  font-size: 3em;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.1em;
  margin: 0;
  position: relative;
  z-index: 2;
  color: white;
  letter-spacing: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1550px;
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.nav-title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.1em;
  position: relative;
  letter-spacing: 1px;
}
a {
  transition: all .25s ease-in-out;
}
.white { color: var(--light-grey); }
.black { color: var(--dark-grey); }
.pearl { color: var(--light-grey); }
.green { color: var(--green); }
.pink { color: var(--brown); }


.bg-black { background-color: var(--dark-grey); }
.bg-green { background-color: var(--green); }


.sticky-nav {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  padding: 10px 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  
  /* Match section-content width */
  max-width: 1550px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  margin: 0 auto;
  top: 20px;
}

/* When menu is shown, remove navbar background */
#takeover-nav.shown + header .sticky-nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* Also handle when the sticky-nav is in difference mode and menu is open */
.sticky-nav.active {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* When menu is shown, remove navbar background */
.sticky-nav.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Also ensure hamburger is visible */
.sticky-nav.menu-open #nav-btn .hamburger span {
  background-color: #fff;
}

.logo {
  width: 220px;
  height: 40px;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}

.navbar-logo {
  width: 100%;
  height: auto;
  max-height: 45px;
  object-fit: contain;
}

#nav-btn {
  padding-right: 20px;
  cursor: pointer;
  z-index: 999;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#nav-btn:hover {
  opacity: 0.8;
}
#takeover-nav {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  left: 0;
  top: -200%;
  transition: all .5s ease-in-out;
  z-index: 996;
}
#takeover-nav.shown {
  top: 0;
}
.nav-col {
  min-height: 100vh;
}
.nav-col a {
  color: var(--light-grey);
  text-decoration: none;
}
.nav-col a:hover {
  color: var(--yellow);
}
.nav-col.nav-contact {
  background: linear-gradient(135deg, #20392F, #3B7660); /* Green gradient */
  color: var(--light-grey);
  position: relative;
  overflow: hidden;
}

.nav-col.nav-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23FFFFFF" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
  background-size: 20px 20px;
  opacity: 0.1;
  pointer-events: none;
}

.nav-col.nav-menu {
  background: linear-gradient(135deg, #2F3640, #4A5568); /* Deep blue-gray gradient */
  /* Alternative options:
  Option 1: Dark navy blue
  background: linear-gradient(135deg, #1A2A40, #2C4268);
  
  Option 2: Slate/teal
  background: linear-gradient(135deg, #2C3A47, #3D5A80);
  
  Option 3: Deep purple
  background: linear-gradient(135deg, #2D243B, #513B56);
  */
  color: var(--light-grey);
  position: relative;
  overflow: hidden;
}

.nav-col.nav-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M0,10 L20,10 M10,0 L10,20" stroke="%23FFFFFF" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
  background-size: 20px 20px;
  opacity: 0.1;
  pointer-events: none;
}

.nav-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--brown);
}

.nav-contact .content {
  max-width: 700px;
  padding: 2rem;
}

.nav-items {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 1px;
}

.nav-items a {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 0.5rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-items a:hover {
  transform: translateX(10px);
  color: #F2CB6C !important; /* Yellow highlight */
}

.nav-items a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F2CB6C; /* Yellow underline */
  transition: width 0.3s ease;
  max-width: 40px; /* Fixed width for all underlines */
}

.nav-items a:hover::after {
  width: 40px; /* Fixed width instead of 100% */
}

.contact-items {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 1px;
}
.contact-items a:hover {
  color: var(--yellow);
}
.social {
  font-size: .75em;
}
.social a:hover {
  color: var(--light-grey);
}
.video-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background-color: var(--dark-grey);
}
.video-wrap::after {
  content: none;
}
#video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.9;
}
section {
  min-height: 50vh;
  width: 100%;
  position: relative;
}
section.hero {
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  clip-path: none;
}
section.two {
  background-color: var(--light-grey);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  margin-top: 0;
}
section.three {
  background-color: var(--dark-grey);
  color: var(--light-grey);
  position: relative;
  overflow: hidden;
}

.parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%; /* Slightly wider to avoid edge visibility during movement */
  height: 150%; /* Even more height for more dramatic parallax effect */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8; /* Increased opacity for better visibility */
  will-change: transform;
  transform-origin: center center;
  filter: brightness(0.9) contrast(1.1); /* Add slight enhancement to the image */
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
  z-index: 1; /* Above the image but below the content */
}

section.three .section-content {
  position: relative;
  z-index: 2; /* Make sure content is above both the image and overlay */
  padding: clamp(4rem, 8vw, 8rem) 0;
}

section.three .section-title,
section.three .section-text,
section.three .stat-number,
section.three .stat-label {
  color: var(--light-grey);
}

section.four {
  background-color: var(--green);
  color: var(--light-grey);
  padding: clamp(4rem, 8vw, 8rem) 0;
}
section.five {
  background-color: var(--light-grey);
  color: var(--dark-grey);
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 1px;
}
.section-text {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 3rem;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: 4rem;
}
.image-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: 4rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.stat-label {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 1px;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* X animation states */
#nav-btn.active .hamburger span:first-child {
  transform: translateY(9px) rotate(45deg);
}

#nav-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

#nav-btn.active .hamburger span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* Override Bootstrap margin */
.mb-5 {
  margin-bottom: 15rem !important;
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #20392F, #3B7660);
  color: var(--light-grey);
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(1rem, 2vw, 2rem);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://source.unsplash.com/random/1920x1080/?agriculture,wheat') center center/cover no-repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 0;
}

.footer-content {
  max-width: 1550px;
  width: calc(100% - clamp(1rem, 4vw, 4rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}

.footer-col {
  flex: 0 0 auto;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 100%;
  max-width: 320px;
}

.footer-logo-img {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-tagline {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 1.1rem;
  opacity: 0.8;
}

.footer-nav, .footer-contact, .footer-social {
  width: calc(33% - 2rem);
  min-width: 200px;
}

.footer-col h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}

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

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a, .social-link {
  color: var(--light-grey);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  opacity: 0.8;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-links a:hover, .social-link:hover {
  color: var(--yellow);
  opacity: 1;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.social-link {
  margin-right: 0.5rem;
}

.divider {
  color: var(--light-grey);
  opacity: 0.5;
  margin: 0 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(234, 234, 234, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

section.hero .content {
  position: relative;
  z-index: 1;
}

/* Active navigation state */
.nav-items a.active {
  color: var(--green);
}

.nav-items a.active::after {
  width: 40px; /* Fixed width instead of 100% */
  background-color: var(--green);
}

/* Page transition animation - simplified, more subtle version */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-grey);
  opacity: 0;
  z-index: 9998;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.page-transition.active {
  opacity: 0.9;
  pointer-events: all;
}

.page-transition.fade-out {
  opacity: 0;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  /* Loading screen mobile adjustments */
  
  .logo-container {
    width: 90%;
    margin-bottom: 30px;
  }
  
  /* Navigation mobile adjustments */
  .sticky-nav {
    width: calc(100% - 2rem);
    top: 15px;
    padding: 8px 8px;
  }
  
  .logo {
    width: 180px;
    height: 35px;
    padding-left: 15px;
  }
  
  #nav-btn {
    padding-right: 15px;
  }
  
  /* Hero section mobile adjustments */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    padding-left: 1rem;
    padding-right: 1rem;
    line-height: 1.2;
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
  
  /* Navigation menu mobile adjustments */
  .nav-items {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  
  .nav-items a {
    padding: 1rem 0;
    min-height: 60px;
  }
  
  .nav-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 3rem;
  }
  
  .contact-items {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
  }
  
  .nav-contact .content {
    padding: 1.5rem;
  }
  
  /* Section mobile adjustments */
  .section-content {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
  }
  
  .section-text {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    margin-bottom: 2rem;
  }
  
  /* Image grid mobile adjustments */
  .image-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .image-grid img {
    height: 250px;
  }
  
  /* Stats grid mobile adjustments */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  
  .stat-label {
    font-size: clamp(0.8rem, 1vw, 1rem);
  }
  
  /* Footer mobile adjustments */
  .footer-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-nav, .footer-contact, .footer-social {
    width: 100%;
    margin-top: 1.5rem;
  }
  
  .footer-logo {
    max-width: 280px;
  }
  
  .footer-logo-img {
    width: 180px;
  }
  
  .footer-tagline {
    font-size: 1rem;
  }
  
  .footer-links a, .social-link {
    font-size: 0.95rem;
    padding: 0.75rem 0;
    min-height: 50px;
  }
  
  /* Hamburger menu mobile adjustments */
  .hamburger {
    width: 28px;
    height: 18px;
  }
  
  /* Override Bootstrap margin for mobile */
  .mb-5 {
    margin-bottom: 8rem !important;
  }
}

@media screen and (max-width: 480px) {
  /* Extra small mobile adjustments */
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .section-content {
    padding: 0 0.75rem;
  }
  
  .section-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  }
  
  .section-text {
    font-size: 1rem;
  }
  
  .image-grid img {
    height: 200px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem 0;
  }
  
  .footer-content {
    width: calc(100% - 1rem);
  }
  
  .sticky-nav {
    width: calc(100% - 1rem);
    top: 10px;
  }
  
  .logo {
    width: 160px;
    height: 30px;
    padding-left: 10px;
  }
  
  #nav-btn {
    padding-right: 10px;
  }
  
  /* Navigation menu extra small adjustments */
  .nav-items {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
  }
  
  .nav-items a {
    padding: 1.2rem 0;
    min-height: 70px;
  }
  
  .nav-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 2rem;
  }
  
  .contact-items {
    font-size: 1rem;
  }
  
  .nav-contact .content {
    padding: 1rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Increase touch targets */
  .nav-items a {
    min-height: 60px;
    padding: 1rem 0;
  }
  
  .footer-links a, .social-link {
    min-height: 50px;
    padding: 0.75rem 0;
  }
  
  #nav-btn {
    min-width: 50px;
    min-height: 50px;
  }
  
  /* Remove hover effects on touch devices */
  .nav-items a:hover {
    transform: none;
  }
  
  .nav-items a:hover::after {
    width: 0;
  }
  
  .footer-links a:hover, .social-link:hover {
    color: var(--light-grey);
    opacity: 0.8;
  }
}

/* Landscape mobile adjustments */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  
  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
  
  .nav-items {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }
  
  .nav-title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
  }
} 