* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New color palette: Agric Green, Golden Yellow, Red */
    --primary-green: #2f7a2f;    /* agric green (main brand green) */
    --light-green: #66a966;      /* lighter green for hovers/gradients */
    --gold: #f5bf12;             /* golden yellow (accent) */
    --accent-red: #c62828;       /* strong red accent */
    --cream: #fff6e0;            /* warm cream */
    --white: #ffffff;
    --dark-text: #1f1f1f;
    --light-gray: #f5f5f5;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    width: 100svw;
    margin: 0 auto;
    overflow-x: hidden;
}

/* HEADER STYLES */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    /* background: var(--white); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    width: 100svw;
    backdrop-filter: blur(18px);
    background: rgba(243, 240, 240, 0.792);
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 100svw;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--accent-red);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--primary-green);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--accent-red);
    transform: translateY(-3px);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 122, 47, 0.28);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark-text);
}

.btn-red {
    background: var(--accent-red);
    color: var(--dark-text);
}

.btn-red:hover {
    background: #e56b08;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 90, 18, 0.28);
}

.btn-gold:hover {
    background: #e5ad08;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 191, 18, 0.28);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    /* background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%); */
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2f7a2f88;
    backdrop-filter: blur(10px);
    /* background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px); */
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out;
}

.hero .subheading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0 3rem;
    animation: slideUp 0.8s ease-out 0.3s both;
    flex-wrap: wrap;
}

.counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.counter-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.counter-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* MODAL STYLES */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-text);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-red);
}

.modal h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.modal-success {
    display: none;
    text-align: center;
}

.modal-success.active {
    display: block;
}

.modal-success-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.modal-success h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

/* SECTIONS */
section {
    padding: 4rem 2rem;
    max-width: 100svw;
    margin: 0 auto;
}

section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

/* WHO WE ARE SECTION */
.who-we-are {
    background: var(--light-gray);
}

.who-we-are-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.who-we-are-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.mission-vision-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: #666;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.value-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.value-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* SERVICES SECTION */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgb(190, 190, 190);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card a {
    border: 1px solid var(--primary-green);
    padding: 0.4rem 1.2rem;
    color: var(--primary-green);
    border-radius: 1rem;
    text-decoration: none;
    transition: var(--transition);
    font-weight: bolder;
    /* font-family: verdana; */
}

.service-card a:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* PRODUCTS SECTION */
.product-gallery {
  width: 100%;
  overflow: hidden;
  padding: 4rem 0;
  position: relative;
  /* background: #0f172a; Dark, premium agribusiness tone */
  background: url('assets/products/corn-plantation.jpg') no-repeat center center/cover;
}

.products-description {
    /* z-index: 22; */
    padding-top: 55px;
    position: absolute;
    display: flex;
    flex-direction: column;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
}

.products-description h2 {
    color: var(--gold);
}

.products-description p {
    color: white;
}

.product-gallery::before {
  content: "AR-RAZZAQ";
  color: rgba(255, 255, 0, 0.596);
  text-shadow: 0 0 20px rgb(233, 232, 197), 0 0 40px rgb(245, 244, 217);
  font-size: clamp(4rem, 10vw, 13rem);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(20px);
  /* width: 10%;
  height: 100%; */
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #66a96659, #c6282859, #f5c01259);
  pointer-events: none;
}

.gallery-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll 35s linear infinite;
}

.product-card {
  position: relative;
  height: 320px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  border: 1px solid white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

  /* box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3); */

  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */

.product-card img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

/* Product Name */
.product-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.4px;
  z-index: 2;
}

/* Hover Overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.45s ease;
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

/* Pause animation on hover */
.product-gallery:hover .gallery-track {
  animation-play-state: paused;
}

/* Infinite Scroll Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    height: 260px;
  }
}

/* PARTNERS SECTION */
.partners {
    /* background: var(--light-gray); */
    /* background: url(assets/AR-RAZAQ\ Clients\ Partners\ Logos.png); */
    background-size: cover;
    /* backdrop-filter: blur(18px); */
    background-color: rgba(41, 78, 51, 0.993);
    /* background-position: 100%; */
    background-repeat: no-repeat;
}

.partners h2 {
    color: var(--gold);
}

.partners p {
    color: #eee;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    /* background: var(--white); */
    backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    color: #ccc;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid white;
    position: relative;
    overflow: hidden;
}

.partner-logo img {
    width: 50%;
    transition: 0.5s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.partner-logo:hover img {
    transform: scale(1.1);
}

.partner-logo .partner-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(0, 0, 0, 0.1),var(--gold)); */
    background: linear-gradient(rgba(0,0,0,0.08), rgba(245,191,18,0.35));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    text-align: center;
    transform: translateY(65%);
    transition: 0.5s ease;
}

.partner-logo .partner-layer h4,
.partner-logo .partner-layer p {
    color: var(--white);
}

.partner-logo:hover .partner-layer {
    transform: translateY(0);
}

/* IMPACT SECTION */
.impact {
    background: var(--white);
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.impact-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 86, 49, 0.3);
}

.impact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.impact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--accent-red);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

/* AWARDS SECTION */
.awards {
    background: var(--light-gray);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.award-year {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.award-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* INVESTOR SECTION */
.investor {
    background: var(--white);
}

.investor-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.investor-description {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* WHY CHOOSE US SECTION */
.why-choose {
    /* background: var(--light-gray); */
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px); */
    background-color: rgba(128, 58, 0, 0.2);    
    pointer-events: none;
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* CONTACT SECTION */
.contact {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(47,122,47,0.01));
}

.contact h2 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 2rem;
    letter-spacing: 0.2px;
}

.contact .section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    color: var(--muted);
}

/* Grid layout for desktop, stacked on small screens */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Glass cards for both panes */
.contact-info,
.contact-form {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    box-shadow: 0 10px 30px rgba(16,24,32,0.22);
    padding: 2rem;
    border-radius: 14px;
    transition: var(--transition);
}

/* Left column - contact info */
.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
    background: linear-gradient(135deg, var(--primary-green), red);
    box-shadow: 0 6px 18px rgba(47,122,47,0.12);
}

.contact-item-content h4 {
    margin: 0 0 4px 0;
    font-size: 0.98rem;
    color: var(--primary-green);
}

.contact-item-content p,
.contact-item-content a {
    margin: 0;
    color: var(--dark-text);
    font-size: 0.93rem;
    text-decoration: none;
}

.contact-item-content a:hover { color: var(--accent-red); text-decoration: underline; }

/* Social icons */
.contact-social { margin-top: 1rem; display:flex; gap:0.75rem; }

.contact-social a {
    width:42px; height:42px; display:inline-flex; align-items:center; justify-content:center;
    border-radius:10px; background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    color: var(--primary-green); text-decoration:none; font-size:1.1rem;
    border:1px solid rgba(255,255,255,0.06);
}

.contact-social a:hover { color: var(--gold); transform: translateY(-3px); }

/* Map container */
.map-container { margin-top: 1.25rem; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }

.map-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(47,122,47,0.06), rgba(245,191,18,0.04));
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--muted);
    font-size:0.95rem;
}

/* Right column - form styles */
.contact-form h3 { margin-bottom: 1rem; color: var(--primary-green); font-size: 1.25rem; }

.contact-form .form-group { margin-bottom: 1rem; }

.contact-form label {
    display:block;
    margin-bottom:0.4rem;
    font-size:0.9rem;
    color:var(--muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    color: var(--dark-text);
    outline: none;
    transition: var(--transition);
    font-size: 0.95rem;
    box-shadow: none;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(245,191,18,0.9);
    box-shadow: 0 8px 20px rgba(245,191,18,0.08);
}

/* Submit button in form */
.contact-form .btn {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: linear-gradient(180deg, var(--gold), #e5ad08);
    color: var(--dark-text);
    border: 1px solid rgba(0,0,0,0.06);
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245,191,18,0.12);
}

/* Small helper text */
.contact-note { margin-top: 0.75rem; font-size: 0.88rem; color: var(--muted); }

/* FOOTER */
footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-red) 100%);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark-text);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* WHATSAPP WIDGET */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    border: none;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.service-card i {
    color: #1e5631;
    transition: all 0.5s;
}

.service-card:hover i {
    color: #f8cf13;
}

.award-card {
    transition: all 0.5s;
}

.award-card:hover i {
    color: #1e5631;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    body {
        width: 100svw;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subheading {
        font-size: 1.2rem;
    }

    .counters {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        width: 100svw;
    }

    .header-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1rem;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 0.75rem;
        border-bottom: 1px solid #eee;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .header-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-icons {
        display: none;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subheading {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .counters {
        grid-template-columns: 1fr;
    }

    .mission-vision-cards {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-cards {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    body {
        width: 100svw;
    }

    .header-container {
        padding: 0.75rem;
    }

    .logo {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .subheading {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 0.85rem;
    }

    section {
        padding: 2rem 1rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .modal {
        width: 90%;
        padding: 1.5rem;
    }

    .carousel {
        height: 250px;
    }

    .carousel-nav {
        padding: 0.75rem;
        font-size: 1.2rem;
    }

    .contact-item {
        gap: 0.75rem;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 1rem;
        right: 1rem;
    }
}