/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: #223A54;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  animation: navDrop 0.6s ease;
}

@keyframes navDrop {
  from { transform: translateY(-70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* NAV CONTAINER */
.nav-container {
  max-width: 1450px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO + BRANDNAME WRAPPER */
.nav-left {
  display: flex;
  align-items: center;
  gap: 25px;  /* GAP BETWEEN LOGO & BRAND NAME */
}

/* LOGO CIRCLE */
.logo-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #E5A70D; 
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulseLogo {
  0% { transform: scale(1); box-shadow: 0 0 0 0 #E5A70D; }
  50% { transform: scale(1.08); box-shadow: 0 0 15px 5px rgba(229,167,13,0.5); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 #E5A70D; }
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BRAND NAME */
.brand-name {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  animation: fadeInBrand 0.8s ease;
  padding-left: 25px;
}

@keyframes fadeInBrand {
  from { opacity: 0; transform: translateX(-15px); }
  to { opacity: 1; transform: translateX(0); }
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 55px;  /* GAP BETWEEN LINKS */
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: 0.3s ease;
}

.nav-links li a::after {
  content: "";
  width: 0%;
  height: 3px;
  background: #E5A70D;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================= RESPONSIVE ================= */

/* Tablets & Small Desktops */
@media (max-width: 950px) {
  .nav-container {
    padding: 0 20px;
  }

  .brand-name {
    font-size: 20px;
    padding-left: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 80px;
    right: 0;
    background: #1F2937;
    padding: 25px 0;
    gap: 25px;
  }

  .nav-links.active {
    display: flex;
    animation: menuFade 0.5s ease;
  }

  @keyframes menuFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Phones */
@media (max-width: 500px) {
  .nav-container {
    padding: 0 12px;
  }

  .logo-box {
    width: 45px;
    height: 45px;
  }

  .brand-name {
    font-size: 16px;
    padding-left: 15px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .nav-links {
    top: 70px;
    gap: 20px;
    padding: 20px 0;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }
}

/* Very Small Screens (320px) */
@media (max-width: 320px) {
  .nav-container {
    padding: 0 8px;
    gap: 8px;
  }

  .logo-box {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 14px;
    padding-left: 10px;
  }

  .nav-links li a {
    font-size: 14px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }
}

/* BANNER */
.banner {
  width: 100%;
  height: 75vh; /* Adjust height as needed */
  background: url('images/hero.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(34, 58, 84, 0.8),   /* Darker at top */
    rgba(34, 58, 84, 0.4)    /* Lighter at bottom */
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeInBanner 1.2s ease forwards;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 20px;
  margin-bottom: 30px;
  font-style: italic;
  color: white;
}

.banner-btn {
  background: #c90c64;
  color: #f6f3f6;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #f9d67a;
  color: #223A54;
  transform: translateY(-3px);
}

/* Banner Animation */
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 950px) {
  .banner-content h1 { font-size: 38px; }
  .banner-content p { font-size: 18px; }
  .banner-btn { font-size: 16px; padding: 12px 25px; }
}

@media (max-width: 500px) {
  .banner {
    height: 60vh;
  }

  .banner-content h1 { font-size: 28px; }
  .banner-content p { font-size: 16px; }
  .banner-btn { font-size: 14px; padding: 10px 20px; }
}

@media (max-width: 320px) {
  .banner {
    height: 55vh;
  }

  .banner-content h1 { font-size: 22px; }
  .banner-content p { font-size: 14px; }
  .banner-btn { font-size: 12px; padding: 8px 16px; }
}

/* core values */
/* Section Wrapper */
.core-principles {
  background: #f4f7fb;
  padding: 80px 20px;
  text-align: center;
}

.core-principles .section-title {
  font-size: 38px;
  color: #223A54;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.core-principles .section-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background: #3b82f6;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Cards Wrapper */
.principles-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual Cards */
.principle-card {
  width: 330px;
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  transform: translateY(40px);
  opacity: 0;
}

.principle-card:hover {
  transform: translateY(-12px);
  box-shadow: 0px 20px 40px rgba(0,0,0,0.15);
}

/* Icons */
.icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.principle-card:hover svg {
  transform: scale(1.15) rotate(5deg);
}

/* Text */
.principle-card h3 {
  font-size: 22px;
  color: #223A54;
  margin-bottom: 10px;
  font-weight: 600;
}

.principle-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Reveal Animation */
.reveal.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media(max-width: 900px) {
  .principle-card {
    width: 90%;
  }
}

@media(max-width: 600px) {
  .section-title {
    font-size: 30px;
  }
  .principle-card {
    width: 100%;
    padding: 30px 20px;
  }
}

/* =====================================
Authorised seller
===================================== */
.authorized-seller {
  padding: 80px 20px;
  background: #fff; /* section background */
  text-align: center;
}

.authorized-seller .section-title {
  font-size: 36px;
  color: #223A54;
  margin-bottom: 10px;
  position: relative;
}

.authorized-seller .section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #4fa3f7;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.authorized-seller .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.seller-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease;
}

.logo-card img {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

/* Hover animation */
.logo-card:hover img {
  transform: scale(1.1) translateY(-10px);
}

/* RESPONSIVE */
@media(max-width:768px){
  .seller-logos {
    gap: 30px;
  }
  .logo-card img {
    max-width: 140px;
    max-height: 60px;
  }
}

@media(max-width:480px){
  .seller-logos {
    gap: 20px;
  }
  .logo-card img {
    max-width: 120px;
    max-height: 50px;
  }
}

/* ===================================
Why choose Us - UPDATED WITH SLIDESHOW
=================================== */
.why-choose-us {
  padding: 80px 20px;
  background: #f4f7fb;
}

.why-choose-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 280px;
}

.text-content h2 {
  font-size: 32px;
  color: #223A54;
  font-weight: 700;
  margin-bottom: 20px;
}

.text-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #223A54;
  font-weight: 500;
}

.benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1d75f0;
  font-weight: bold;
  font-size: 14px;
}

/* IMAGE SLIDESHOW STYLES */
.image-content {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.image-slideshow {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.image-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}

.image-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Navigation dots */
.slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Navigation buttons */
.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(34, 58, 84, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}

.image-slideshow:hover .slideshow-btn {
  opacity: 1;
}

.slideshow-btn.prev-btn {
  left: 15px;
}

.slideshow-btn.next-btn {
  right: 15px;
}

.slideshow-btn:hover {
  background: rgba(34, 58, 84, 0.9);
  transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media(max-width:1024px){
  .why-choose-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }
  
  .text-content h2 { 
    font-size: 28px; 
  }
  
  .text-content p { 
    font-size: 15px; 
  }
  
  .image-slideshow {
    height: 350px;
  }
}

@media(max-width:768px){
  .why-choose-us { 
    padding: 60px 15px; 
  }
  
  .text-content h2 { 
    font-size: 24px; 
  }
  
  .text-content p { 
    font-size: 14px; 
  }
  
  .image-slideshow {
    height: 300px;
  }
  
  .slideshow-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

@media(max-width:480px){
  .image-slideshow {
    height: 250px;
  }
  
  .slideshow-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
    opacity: 1; /* Always show on mobile */
  }
}

/* ==================================
Team Member
================================== */
.team-section {
  padding: 80px 20px;
  background: #f8faff;
  text-align: center;
}

.team-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #223A54;
  margin-bottom: 50px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.team-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.team-img img {
  width: 120px; /* size of the circle */
  height: 120px;
  object-fit: cover;
  border-radius: 50%; /* makes it circular */
  border: 4px solid #4fa3f7; /* optional border for elegance */
  transition: transform 0.5s, box-shadow 0.5s;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 18px;
  color: #223A54;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ========================================
Testimonials
======================================== */
.testimonials-section {
  padding: 80px 20px;
  background: #f0f6ff;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #223A54;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: #1d4ed8;
  font-size: 14px;
}

/* Responsive */
@media(max-width:1024px) {
  .testimonials-grid {
    gap: 20px;
  }
}

@media(max-width:768px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-card {
    width: 90%;
    max-width: 400px;
  }
}

/* ========================================
Google Reviews
======================================== */
.google-review-section {
  background: #fff;
  padding: 60px 0;
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.google-review-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.google-review-header img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.google-review-header h2 {
  font-size: 28px;
  font-weight: 400;
  color: #202124;
  margin: 0;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.rating {
  font-size: 48px;
  font-weight: 400;
  color: #202124;
  line-height: 1;
}

.stars {
  color: #fa7b17;
  font-size: 20px;
  letter-spacing: -2px;
}

.stars-small {
  color: #fa7b17;
  font-size: 14px;
  letter-spacing: -1px;
}

.count {
  color: #5f6368;
  font-size: 15px;
  margin-left: 4px;
}

.review-btn {
  background: #1a73e8;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-left: auto;
}

.review-btn:hover {
  background: #0d62d9;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.google-review-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #dadce0;
  position: relative;
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #1a73e8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
}

.reviewer-info {
  flex: 1;
}

.reviewer-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  line-height: 1.4;
}

.date {
  font-size: 13px;
  color: #5f6368;
  margin-top: 2px;
}

.google-review-card p {
  margin: 16px 0 0 0;
  color: #3c4043;
  line-height: 1.6;
  font-size: 15px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.more-link {
  color: #1a73e8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-top: 16px;
}

.more-link:hover {
  text-decoration: underline;
}

.google-review-card:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .google-review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .review-btn {
    margin-left: 0;
    align-self: flex-start;
  }
  
  .rating-summary {
    flex-wrap: wrap;
  }
  
  .google-review-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================
CUSTOMER SHOWCASE SECTION - FIXED
==================================== */
.customer-showcase {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden; /* Prevent horizontal scroll */
}

.customer-showcase .section-title {
  font-size: 36px;
  color: #223A54;
  margin-bottom: 10px;
  font-weight: 700;
}

.customer-showcase .section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Slider Container - FIXED */
.showcase-slider {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; /* Hide slides outside container */
  padding: 20px 0;
}

/* Slider Track - FIXED */
.slider-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease-in-out;
  padding: 10px 0;
  flex-wrap: nowrap; /* Prevent wrapping to new line */
}

/* Individual Slides - FIXED */
.slide {
  flex: 0 0 auto; /* Don't grow, don't shrink, auto basis */
  width: 300px; /* Fixed width */
  height: 400px; /* Fixed height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Portrait images will fill height, landscape will fill width */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.slide:hover img {
  transform: scale(1.05);
}

/* Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #223A54;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-btn:hover {
  background: #E5A70D;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .showcase-slider {
    max-width: 900px;
  }
}

@media (max-width: 992px) {
  .showcase-slider {
    max-width: 700px;
  }
  
  .slide {
    width: 250px;
    height: 180px;
  }
  
  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .customer-showcase {
    padding: 60px 15px;
  }
  
  .customer-showcase .section-title {
    font-size: 28px;
  }
  
  .customer-showcase .section-subtitle {
    font-size: 16px;
  }
  
  .showcase-slider {
    max-width: 500px;
  }
  
  .slide {
    width: 220px;
    height: 160px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .showcase-slider {
    max-width: 320px;
  }
  
  .slide {
    width: 180px;
    height: 130px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* ========================================
Footer
======================================== */
.footer {
  background: #223A54; /* same as navbar */
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

/* Main Container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 140px; /* Equal gap between all 3 columns */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards;
}

/* Footer Columns */
.footer-column {
  width: 300px; /* FIXED width = perfect spacing */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff6f61;
}

.footer-column p, 
.footer-column ul, 
.footer-column li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ff6f61;
}

/* Logo + Text */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  width: 55px;
  height: auto;
  border-radius: 8px;
}

.footer-logo h2 {
  font-size: 1.4rem;
  margin: 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-column {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}

/* ========================================
Floating Contact Buttons
======================================== */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.float-btn.call {
  background: #25D366;
}

.float-btn.whatsapp {
  background: #075E54;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
Mobile Responsive Adjustments
======================================== */
@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .floating-contact {
    bottom: 15px;
    right: 15px;
  }
  
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}