/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: 100%;
  width: 100%;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}



.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
 
}

.nav-logo img {
  width: 12rem;
  object-fit: contain;
}


.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #e7e7e7;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #78350f;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d97706;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #92400e;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
}

.hero-bg-layer{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  will-change: transform;
  background-image: url("img/hero4.jpg");
  
  
}



.floating-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
  z-index: 4;
  will-change: transform;
}

.leaf-1 {
  top: 15%;
  left: 8%;
  color: rgba(34, 197, 94, 0.4);
}
.egg-1 {
  top: 25%;
  right: 12%;
  color: rgba(251, 191, 36, 0.4);
}
.heart-1 {
  bottom: 30%;
  left: 15%;
  color: rgba(239, 68, 68, 0.4);
}
.star-1 {
  top: 40%;
  left: 50%;
  color: rgba(251, 191, 36, 0.3);
}

.hero-content {
  position: relative;
  top: 100px;
  z-index: 10;
  color: white;
  max-width: 1200px;
  padding: 0 2rem;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-items: center;
  flex-direction: column;
}


.hero-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-title-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}



.title-line {
  display: block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-line2 {
  display: block;
  background: linear-gradient(135deg, #ffffff, #fdfdfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line3 {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 1rem;
  opacity: 0.9;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-button {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}



.btn-primary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* About Section */
.about {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #f3f4f6, #fef3c7);
  overflow: hidden;
}

.about-bg {
  background-image: linear-gradient(rgba(34, 197, 94, 0.1), rgba(245, 158, 11, 0.1)),
    url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: #059669;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #92400e;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.highlight {
  color: #059669;
}

.highlight.green {
  color: #10b981;
}

.about-description {
  font-size: 1.1rem;
  color: #92400e;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.features-list {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.feature-icon.heart {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.feature-icon.leaf {
  background: linear-gradient(135deg, #10b981, #059669);
}
.feature-icon.award {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.feature-icon.shield {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #059669;
  background: transparent;
  color: #059669;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #059669;
  color: white;
  transform: translateY(-2px);
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.rating-card,
.chickens-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.rating-card {
  bottom: -1.5rem;
  right: -1.5rem;
}

.chickens-card {
  top: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.rating-number,
.card-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #d97706;
}

.chickens-card .card-number {
  color: white;
}

.rating-text,
.card-text {
  font-size: 0.8rem;
  color: #6b7280;
}

.chickens-card .card-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Products Section */
.products {
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff, #fef3c7);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-description {
  font-size: 1.2rem;
  color: #d97706;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-description.white {
  color: rgba(255, 255, 255, 0.9);
}

.section-title.white {
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-card.popular {
  border-color: #f59e0b;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.quality-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #10b981;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.product-content {
  padding: 2rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1rem;
}

.product-description {
  color: #d97706;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-features {
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #92400e;
}

.feature i {
  color: #10b981;
}

.product-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #92400e;
}

.unit {
  font-size: 0.9rem;
  color: #d97706;
  margin-left: 0.5rem;
}

.product-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, #d97706, #ea580c);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(217, 119, 6, 0.4);
}

.guarantee-card {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
}

.guarantee-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.guarantee-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.guarantee-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* Quality Section */
.quality {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #065f46, #047857);
  color: white;
  overflow: hidden;
}

.quality-bg {
  background-image: linear-gradient(rgba(6, 95, 70, 0.8), rgba(4, 120, 87, 0.9)),
    url("img/bird-349035_1920.jpg");
  background-size: cover;
  background-position: center center;
  background-clip: border-box;
  background-repeat: no-repeat;
  
  
  
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.cert-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.cert-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #10b981;
}

.cert-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.cert-item p {
  opacity: 0.9;
  line-height: 1.6;
}

.quality-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.quality-stats h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-box {
  text-align: center;
}

.stat-box .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.stat-box .stat-label {
  opacity: 0.9;
}

/* Process Section */
.process {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fef3c7, #ffffff);
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #f59e0b, #10b981);
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.process-step.left {
  justify-content: flex-end;
}

.process-step.right {
  justify-content: flex-start;
}

.step-content {
  width: 45%;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #fbbf24;
  position: relative;
  transition: all 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid #fbbf24;
  transform: translateY(-50%) rotate(45deg);
}

.process-step.left .step-content::before {
  right: -12px;
}

.process-step.right .step-content::before {
  left: -12px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.step-content h3 {
  font-size: 1.5rem;
  color: #92400e;
  margin-bottom: 1rem;
}

.step-content p {
  color: #92400e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #d97706;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-radius: 50%;
  border: 4px solid white;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1500595046743-cd271d694d30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  will-change: transform;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  color: #fbbf24;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #92400e;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  color: #92400e;
}

.author-role {
  font-size: 0.9rem;
  color: #d97706;
}

.rating {
  display: flex;
  gap: 4px;
}

.rating i {
  color: #fbbf24;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff, #fef3c7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(245, 158, 11, 0.2);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
}

.contact-icon.location {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.contact-icon.phone {
  background: linear-gradient(135deg, #10b981, #059669);
}
.contact-icon.email {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.contact-icon.clock {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-card h3 {
  font-size: 1.3rem;
  color: #92400e;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #d97706;
  line-height: 1.6;
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.contact-form h3 {
  font-size: 2rem;
  color: #92400e;
  margin-bottom: 2rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fefefe;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #92400e, #ea580c);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-logo i {
  font-size: 2.5rem;
  color: #fbbf24;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-subtitle {
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-description {
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(251, 191, 36, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #fbbf24;
  color: #92400e;
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(146, 64, 14, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #92400e;
  transform: translateY(-3px);
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility Classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
.nav-logo img {
  display: flex;
  align-items:center;
  justify-content: center;
}
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .timeline-line {
    left: 2rem;
  }

  .process-step {
    justify-content: flex-start !important;
    padding-left: 4rem;
  }

  .step-content {
    width: 100%;
  }

  .step-content::before {
    left: -12px !important;
  }

  .timeline-dot {
    left: 2rem !important;
  }
}

@media (max-width: 768px) {
   .nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-features {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
.nav-logo img {
  display: flex;
  align-items:center;
  justify-content: center;
}
.hero {
  width: 100vw;
  height: 100vh;
}

  .hero-content {
    padding: 0 1rem;
    top: 263px
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d97706, #ea580c);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #b45309, #c2410c);
}

/* Performance Optimizations */
* {
  will-change: auto;
}

.parallax-bg,
.floating-element,
.hero-bg-layer1,
.hero-bg-layer2,
.hero-bg-layer3 {
  will-change: transform;
}
