*, *::before, *::after {
    
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Fix Font Awesome icons */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900; /* solid icons */
}

body {
    font-family: 'Poppins';
    background-color: #ccc;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.site-header {
    position: relative;
    transition: all 0.3s ease-in-out;
    animation: fadeInHeader 0.8s ease-out;
    background: #fff;
}

.site-header:hover {
    transform: translateY(-2px);
}

.site-header__decor {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    transition: padding 0.3s ease;
}

.logo img {
    transition: transform 0.3s ease, filter 0.3s ease;
    height: auto;
    max-width: 100%;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.header-right {
    display: flex;
    align-items: self-end;
    justify-content: flex-end;
}

/* Social links */
.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
  margin-left: 15px;
  text-decoration: none;
  font-size: 14px;
  color: #1c494c;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: #ff7d01;
  transform: scale(1.1);
}

.social-links a svg {
  transition: all 0.3s ease;
  fill: currentColor;
}

/* Burger menu */
.burger-menu {
  position: relative;
  margin-left: 20px;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
  background-color: #1c494c;
  padding: 5px 5px;
  border-radius: 20px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  overflow: visible;
  z-index: 10000;
}

.burger-menu:hover {
  background-color: #ff7d01;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 125, 1, 0.3);
}

.burger-menu .dropdown {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  width: 180px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 9999;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 5px;
}

.burger-menu:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.burger-menu .dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 15px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 10001;
}

.burger-menu .dropdown li {
  padding: 0;
  transition: background-color 0.2s ease;
}

.burger-menu .dropdown li:hover {
  background-color: rgba(28, 73, 76, 0.05);
}

.burger-menu .dropdown li a {
  text-decoration: none;
  color: #1c494c;
  font-size: 14px;
  display: block;
  padding: 12px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.burger-menu .dropdown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #ff7d01;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.burger-menu .dropdown li a:hover {
  color: #ff7d01;
  padding-left: 25px;
  background: rgba(255, 125, 1, 0.05);
}

.burger-menu .dropdown li a:hover::before {
  transform: scaleY(1);
}


.site-header__decor-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-header__decor-single {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33333%;
    flex: 1 1 33.33333%;
    max-width: 33.33333%;
}

[class*="site-header__decor-inner-"] {
    position: relative;
}

    [class*="site-header__decor-inner-"]::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 10px;
        background-color: #1c494c;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    [class*="site-header__decor-inner-"]:hover::before {
        opacity: 1;
        height: 12px;
    }

@keyframes slideInDecor {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}

.site-header__decor-inner-1::before {
    background-color: #1c494c;
}

.site-header__decor-inner-2::before {
    background-color: #ff7d01;
}

.site-header__decor-inner-3::before {
    background-color: #ffcd00;
}

/* Responsive design and mobile animations */
@media (max-width: 768px) {
    .header-content {
        padding: 10px 15px;
    }
    
    .social-links a {
        margin-left: 10px;
        padding: 6px;
    }
    
    .burger-menu {
        margin-left: 15px;
        font-size: 18px;
    }
    
    .burger-menu .dropdown {
        width: 160px;
        right: -10px;
    }
    
    .site-header:hover {
        transform: none; /* Disable hover lift on mobile */
    }
    
    /* Reduce animation intensity on mobile */
    .social-links a:hover {
        transform: translateY(-2px) scale(1.05);
    }
}

/* Focus styles for accessibility */
.social-links a:focus,
.burger-menu:focus,
.burger-menu .dropdown li a:focus {
    outline: 2px solid #ff7d01;
    outline-offset: 2px;
}

@keyframes fadeInHeader {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    background: linear-gradient(135deg, #1c494c 0%, #1c494c 100%);
    color: white;
    padding: 20px 0;
    position: relative;
    margin-top: auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #4a9b8e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: #f8f8f8;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Animation for footer entrance */
.site-footer {
    animation: slideUpFooter 0.8s ease-out;
}

@keyframes slideUpFooter {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
    
    .footer-socials {
        gap: 12px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Focus styles for accessibility */
.social-icon:focus,
.scroll-to-top:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-to-top {
        transform: none !important;
    }
    
    .social-icon {
        transform: none !important;
    }
}

.button-demo {
    height: 50vh;
  text-align: center;
  margin: 2rem 0;
}

.button-demo button {
  margin: 0.5rem;
}

/* Base button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.btn-default {
  border: 1px solid #276332;
  background: transparent;
  color: #276332;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-default::after {
  position: absolute;
  inset: 0;
  background: #e8893c;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
  content: "";
}
.btn-default:hover::after {
  transform: translateY(0);
}
.btn-default:hover, 
.btn-default:focus {
  border-color: #e8893c;
  color: #fff;
}
.btn-default span { 
  position: relative; 
  z-index: 1; 
}

.btn-outline {
  border: 1px solid #ccc;
  background: #fff;
  color: #276332;
}
.btn-outline:hover {
  background: #efe0bd;
  transform: scale(1.05);
}

.btn-ghost {
  background: transparent;
  color: #276332;
  border: none;
}
.btn-ghost:hover { background: #e5e5e5; }

.btn-link {
  background: transparent;
  color: #276332;
  text-decoration: underline;
  border: none;
}
.btn-link:hover { color: #e8893c; }

.btn-heroCta {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 1.5rem;
}
.btn-heroCta:hover {
  background: #fff;
  color: #276332;
}

.btn-fill {
  border: 1px solid currentColor;
  color: #23602f;
  position: relative;
  overflow: hidden;
}
.btn-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg, #070707);
  transform: translateY(100%);
  transition: transform 0.3s;
  z-index: 0;
}
.btn-fill:hover::after {
  transform: translateY(0);
}
.btn-fill span,
.btn-fill {
  position: relative;
  z-index: 1;
  color: #23602f;
}
.btn-fill:hover { color: #fff; }

/* Sizes */
.btn-sm { padding: 0.25rem 0.75rem; font-size: 12px; }
.btn-lg { padding: 0.75rem 2rem; font-size: 16px; }
.btn-icon { width: 36px; height: 36px; padding: 0; }
