/* ========================================
   DESIGN SYSTEM & VARIABLES
   ======================================== */

:root {
    /* Brand & Theme Colors */
    --color-primary: rgb(0, 63, 73);
    --color-secondary: rgb(253, 73, 0);
    --color-tertiary: rgb(255, 255, 255);

    /* CTA Buttons - Background Colors */
    --cta-bg-on-primary: rgb(253, 73, 0);
    --cta-bg-on-secondary: rgb(0, 63, 73);
    --cta-bg-on-tertiary: rgba(255, 255, 255, 1);

    /* CTA Buttons - Hover Effects */
    --cta-hover-primary: rgba(255, 255, 255, 0.4);
    --cta-hover-secondary: rgba(253, 73, 0, 0.4);
    --cta-hover-tertiary: rgba(255, 255, 255, 0.4);

    /* CTA Buttons - Border Colors */
    --cta-border-primary: rgb(253, 73, 0);
    --cta-border-secondary: rgb(0, 63, 73);
    --cta-border-tertiary: rgba(255, 255, 255, 1);

    /* Links - Active/Click Colors */
    --link-active-primary: rgba(255, 255, 255, 0.4);
    --link-active-secondary: rgba(253, 73, 0, 0.4);
    --link-active-tertiary: rgba(253, 73, 0, 0.4);

    /* Error Colors */
    --error-primary: rgba(253, 0, 0, 0.637);
    --error-secondary: rgb(0, 63, 73);
    --error-tertiary: rgba(255, 255, 255, 1);

    /* Glassmorphism */
    --glass-primary: rgba(255, 255, 255, 0.2);
    --glass-secondary: rgba(253, 73, 0, 0.2);
    --glass-tertiary: rgba(253, 73, 0, 0.2);
    --glass-blur: blur(50%);

    /* Typography */
    --font-title: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-cta: "Bebas Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Font Colors */
    --text-primary: rgb(0, 63, 73);
    --text-secondary: rgb(253, 73, 0);
    --text-tertiary: rgb(255, 255, 255);

    /* Font Sizes */
    --size-title: 2rem;
    --size-body: 0.5rem;
    --size-cta: 0.8rem;

    /* Borders & Radii */
    --radius: 4px;

    /* Animation & Transitions */
    --transition-fast: 150ms ease;
    --transition-medium: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Page Layout */
    --page-padding: 0;
    --page-margin: 0;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

* {
    margin: var(--page-margin);
    padding: var(--page-padding);
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--color-tertiary);
    margin: var(--page-margin);
    padding: var(--page-padding);
}








/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
   
}

::-webkit-scrollbar-track {
    background: var(--color-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
    width: 8px;
    
}






/* ===========================
   PRELOADER
=========================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background Image */
.preloader-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Dark Overlay */
.preloader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-tertiary);
  z-index: 2;
}

/* Centered Logo */
.preloader-logo {
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-logo img {
  width: 300px;   /* adjust size */
  height: auto;
  animation: fadeLogo 1.1s infinite alternate ease-in-out;
}

/* Simple fade animation */
@keyframes fadeLogo {
  0% { opacity: 0.5; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

/* Fade out animation */
.preloader-hide {
  animation: fadeOut 0.8s forwards ease-in-out;
}

@keyframes fadeOut {
  100% { opacity: 0; visibility: hidden; }
}










/*========Quick Contacts =======*/

/* Base Styles */
.quick-contact {
  background-color: var(--color-secondary);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0, 63, 73, 0.05);
}

.qc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.qc-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: center;
}

/* Contact Items */
.qc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}

.qc-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Phone & Email Links */
.qc-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-tertiary);
  transition: opacity 0.2s ease;
  background: transparent;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.qc-link:hover {
  opacity: 0.8;
  scale: 1.2;
}

.qc-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-tertiary);
  line-height: 1.4;
}

/* CTA Button */
.qc-action {
  display: flex;
  align-items: center;
}

.qc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  color: var(--font-cta);
  padding: 0.5rem 1.5rem;
  font-weight: 900;
  font-size: 1rem;
  border: 2px solid var(--color-tertiary);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  animation: qc-border-blink 1.5s infinite;
}

.qc-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 6px;
  z-index: -1;
}

.qc-btn:hover {
  color: var(--color-tertiary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(253, 73, 0, 0.15);
}

.qc-btn:active {
  transform: translateY(0);
}

.qc-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(253, 73, 0, 0.2);
}

.qc-btn-text {
  position: relative;
  z-index: 1;
}

/* Border Blink Animation */
@keyframes qc-border-blink {
  0%, 100% {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 0 rgba(253, 73, 0, 0.7);
  }
  50% {
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(253, 73, 0, 0.4);
  }
}

/* Responsive Design */
/* Tablet */
@media (max-width: 768px) {
  .qc-inner {
    gap: 1.5rem;
  }
  
  .qc-item {
    gap: 0.5rem;
  }
  
  .qc-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .qc-text {
    font-size: 0.9rem;
  }
}

/* Mobile (Two Rows) */
@media (max-width: 639px) {
  .qc-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
  }
  
  /* Phone - Top Left */
  .qc-phone {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-right: auto;
  }
  
  /* Button - Top Right */
  .qc-action {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  
  /* Email - Full Width Second Row */
  .qc-email {
    grid-column: 1 / -1; /* Span both columns */
    grid-row: 2;
    justify-self: center;
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(0, 63, 73, 0.1);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
  }
  
  /* Adjust button for mobile */
  .qc-btn {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .qc-container {
    padding: 0 0.75rem;
  }
  
  .qc-inner {
    gap: 0.5rem;
  }
  
  .qc-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.85rem;
  }
  
  .qc-text {
    font-size: 0.85rem;
  }
}








/* ========================================
   NAVBAR BASE STYLES
   ======================================== */

/* Ensure any image inside navbar respects container and doesn't overflow */
.navbar img { display: inline-block; max-width: 100%; height: auto; object-fit: contain; vertical-align: middle; }

/* Defensive: hide images with empty src */
.navbar img:not([src]), .navbar img[src=""] { display: none !important; }

/* Logo scaling improved: use max-height instead of fixed height to avoid distortions */
.logo-img {
  width: auto;
  max-width: 160px;    /* keeps your desktop constraint */
  max-height: 48px;    /* responsive cap on height */
  height: auto;
  object-fit: contain;
}

/* small icons used in nav (dropdown-icon removed) */
.social-icons img, .phone-icon { width: 24px; height: 24px; object-fit: contain; }

/* NAV LAYOUT */
.navbar {
  padding: 16px 10px;
  background-color: var(--color-tertiary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(253, 73, 0, 0.06);
  transition: background-color 200ms ease, backdrop-filter 200ms ease;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.navbar-logo {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
}

/* Desktop menu */
.desktop-menu {
  display: flex;
  justify-content: flex-end;
  width: 70%;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item { position: relative; }

.nav-link {
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-primary);
  padding: 12px 18px;
  font-size: 1rem;
  background: transparent;
  border: none;
}

.nav-link:hover {
 font-weight:bold;
 color: var(--color-secondary);
  font-size: 1.4rem;
}


/* Partnership CTA button styling (distinct background) */
.partnership-link {
  display: inline-block;
  background-color: var(--cta-bg-on-primary);
  color: var(--color-tertiary);
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 800;
  margin-left: 10px;
  transition: background-color var(--transition-medium), transform var(--transition-medium);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(253,73,0,0.12);
}

.partnership-link:hover,
.partnership-link:focus {
  background-color: rgba(253, 73, 0, 0.85);
  color: var(--color-tertiary);
  transform: translateY(-2px);
  outline: none;
   padding: 2px 5px;
   font-size: 1.3rem;
}

/* ----------------------------
   MOBILE MENU (transform slide-in)
   ---------------------------- */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* keep full viewport but hidden by transform */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 65px; /* leave place for navbar */
  background-color: var(--color-tertiary);
  transform: translateY(-110%); /* hidden above viewport */
  opacity: 0;
  pointer-events: none;
  transition: transform 360ms cubic-bezier(.2,.9,.2,1), opacity 260ms ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

.mobile-menu .nav-list {
  flex-direction: column;
  width: 50%;
  text-align: center;
}

.mobile-menu .nav-item {
  width: 100%;
  display: block;
  padding: 6px 0;
}

.mobile-menu .nav-link {
  display: block;
  padding: 14px 18px;
  color: var(--color-primary);
  text-decoration: none;
  width: 100%;
  font-family: var(--font-title);
  
}

/* ensure partnership CTA looks good in mobile list */
.mobile-menu .partnership-link {
  margin: 5px;;
  text-align: center;
  border-radius: 3px;

}

 

/* mobile extras */
.mobile-extra {
  font-size: large;
  color: var(--color-primary);
  width: 80%;
  text-align: center;
  padding: 20px 12px 28px;
  border-top: 1px solid rgba(0,0,0,0.03);
  box-sizing: border-box;
}



/* hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  padding-right: 10px;
  z-index: 1001;
}
.hamburger-icon { width: 28px; height: 28px; }

/* responsive */
@media (max-width: 1023px) {
  .desktop-menu { display: none; }
  .hamburger { display: block; }
  .navbar-logo { justify-content: center; width: auto; }
}
/* utilities */
.sr-only { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }









/*==================== Carousel Section Wrapper ================*/
.carousel-section {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  min-height: 500px;                 /* adaptive base */
  background-color: var(--color-primary);
  height: 90vh;                  /* viewport relative height */
}

/* The "track" that slides left/right; no absolute slides */
.carousel-inner {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1000ms cubic-bezier(.2,.9,.2,1);
  will-change: transform;
  touch-action: pan-y;               /* allow vertical scrolling by default */
}

/* Each slide is 100% of viewport/section */
.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  box-sizing: border-box;
}

/* Overlay for improved contrast (per slide via pseudo element) */
.carousel-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Content is in normal flow (no absolute overlap) */
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  color: var(--color-tertiary);
}

/* Title + paragraph */
.slide-title {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(3rem, 4vw, 5rem);
  color: var(--color-tertiary);
  line-height: 50px!important;
  transform: translateX(30px);
  opacity: 0;
  animation-fill-mode: both;
}
.slide-paragraph {
  padding-top: 10px;
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-tertiary);
  font-size:  clamp(0.7rem, 4vw, 1rem);
  max-width: 700px;
  opacity: 0;
  transform: translateX(10px);
}

/* Buttons block (below text) */
.slide-ctas {
  margin-top:70px;
  display: flex;
  gap: 12px;
  transform: translateY(12px);
  opacity: 0;
  animation-fill-mode: both;
}






/* CTA buttons styling (kept similar to your tokens) */
button.cta-primary, button.cta-secondary {
  font-family: var(--font-cta);
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: transform var(--transition-medium), background-color var(--transition-medium);
}
button.cta-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
button.cta-primary:hover, button.cta-primary:focus { transform: translateY(-3px); background: rgba(253,73,0,0.9); }
button.cta-secondary { background: transparent; color: var(--color-secondary); }
button.cta-secondary:hover, button.cta-secondary:focus { background: var(--color-secondary); color: var(--color-tertiary); transform: translateY(-3px); }

/* Dot nav */
.nav-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.dot {
  width: 60px; height: 3px; border-radius: 3%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer;
  transition: all var(--transition-medium);
}
.dot[aria-selected="true"] { background: var(--color-secondary); width: 60px; border-radius: 3px; }

/* Focus styles for accessibility */
.dot:focus, .cta-primary:focus, .cta-secondary:focus { outline: 3px solid rgba(253,73,0,0.18); outline-offset: 4px; }

/* Animations: title slides left, ctas slide up */
@keyframes slideInFromRight {
  0% { transform: translateX(30px); opacity: 0; }
  60% { transform: translateX(-8px); opacity: 1; }
  100%{ transform: translateX(0); opacity: 1; }
}
@keyframes slideInUp {
  0% { transform: translateY(12px); opacity: 0; }
  60% { transform: translateY(-6px); opacity: 1; }
  100%{ transform: translateY(0); opacity: 1; }
}

/* When slide is active we trigger animations on inner elements (staggered) */
.carousel-slide.is-active .slide-title {
  animation: slideInFromRight 900ms cubic-bezier(.2,.9,.2,1) 120ms both;
}
.carousel-slide.is-active .slide-paragraph {
  animation: slideInFromRight 900ms cubic-bezier(.2,.9,.2,1) 220ms both;
}
.carousel-slide.is-active .slide-ctas {
  animation: slideInUp 700ms cubic-bezier(.2,.9,.2,1) 380ms both;
}

/* Responsive */
@media (max-width: 1023px) {
  .slide-content { padding: 40px 24px; }
  .carousel-section { min-height: 420px; }
  .slide-title { font-size: clamp(2rem, 5vw, 3rem); }
  .slide-paragraph { font-size: clamp(0.9rem, 3.5vw, 1.05rem); }
}
@media (max-width: 767px) {
  .carousel-section { min-height: 350px; }
  .slide-content { padding: 22px; align-items: flex-start; }
  .nav-dots { bottom: 12px; gap: 8px; }
}







/* ---============== SERVICES SECTION =============--- */
.services-section {
  width: 100%;
  padding: 20px 10px;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* --- HEADER --- */
.services-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.services-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--color-tertiary);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 0.2s ease forwards;
}

.services-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 2.5vw, 1rem);
  color: var(--color-tertiary);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 0.4s ease forwards;
  animation-delay: 0.1s;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

/* --- SERVICE CARD (Split Layout) --- */
.service-card {
  
  border-radius: 2px;
  background: var(--color-tertiary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeSlideUp 0.6s ease forwards;
  animation-play-state: paused;
}

.service-card:nth-child(1) { animation-delay: 0.4s; }
.service-card:nth-child(2) { animation-delay: 0.55s; }
.service-card:nth-child(3) { animation-delay: 0.7s; }

.service-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* --- TOP HALF (image + overlay title) --- */
.service-top {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  position: absolute;
  bottom: 10px;
  left: 15px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--color-tertiary);
  text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

/* --- BOTTOM HALF (desc + CTA) --- */
.service-bottom {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.6;
  
}

.service-cta {
  align-self: flex-start;
  font-family: var(--font-cta);
  padding: 6px 16px;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-cta:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
  scale: 1.05;
}

/* --- ANIMATION --- */
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .services-section { padding: 70px 20px; }
  .service-top { height: 160px; }
}

@media (max-width: 480px) {
  .service-top { height: 150px; }
  .service-cta { width: auto; }
}






 /* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
  
  display: flex;
  width: 100%;
  min-height: 200px;
  background: var(--color-tertiary);
  
  color: var(--color-primary);
  opacity:0.9;
}

.contact-left {
  width: 50%;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right {
  
  background-color: rgba(0, 63, 73, 0.);
  opacity:0.7;
  color: var(--color-secondary);
  width: 50%;
  padding: 30px 20px;
  display: flex;
  
}


.contact-left h2 {
  font-size: clamp(3rem, 4vw, 6rem);
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-weight: bold;

}

.contact-left p {
  font-size: 1.1rem;
  line-height: 1.6;
}


.contact-right {
  
  background-color: rgb(255,255,255);
  opacity: 0.9;
  color: var(--color-primary);
  width: 50%;
  padding: 30px 20px;

  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
}

.form-container {
  width: 100%;      /* optional: control width of the form container */
  max-width: 450px; /* optional: prevent form from being too wide */
}





/* Form Styling */
.contact-right form {
  display: flex;
  flex-direction: column;
  width: 100%;
 
 

}

.contact-right label {
  font-weight: 600;
  margin-top: 2px;
  align-self: flex-start;
  padding: 10px 0px 0px 5px;;
}

.contact-right label span {
  color: red;
}

.contact-right input,
.contact-right select,
.contact-right textarea {
  margin-top: 5px;
  padding: 8px 10px;
  border: 1px solid  var(--color-secondary);
  border-radius: 1px;
  font-size: 1rem;
  width: 100%;
  background: transparent;
  color: var(--color-secondary);
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: var(--color-primary);
}

.contact-right textarea {
  resize: none;
}

.recaptcha {
  margin: 20px 0;
}

.form-status {
  margin: 10px 0;
}

.success-msg {
  color: var(--color-tertiary);
  font-size: 1rem;
  font-family: var(--font-title);
}

.error-msg {
  color: var(--color-primary);
   font-size: 1rem;
  font-family: var(--font-title);
}

/* CTA Buttons */
.form-ctas {
  display: flex;
  justify-content:flex-start;
  margin-top: 5px;
  gap:100px
}

.btn-left, .btn-right {
  padding: 8px 15px;
  font-weight: 900;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: var(--font-cta);
}

.btn-left {
  border: 2px solid var(--color-secondary);
  background-color: var(--color-tertiary);
  color: var(--color-secondary);
}

.btn-left:hover {
  background-color: var(--color-secondary);
  color: var(--color-tertiary);
  border: 2px solid var(--color-secondary);
}

.btn-right {
  background-color: var(--color-primary);

  border: none;
  color: var(--color-tertiary);
}

.btn-right:hover {
  background-color: var(--color-tertiary);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

/* Responsive */
@media (max-width: 1023px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    width: 100%;
    padding: 30px 20px;
  }

  .form-ctas {
    flex-direction: column;
    gap: 10px;
  }
}



















/* Why Choose Us Section */
.why-choose-us {
  position: relative;
  padding: 0rem 0;
  overflow: hidden;
}

.why-background {
  position: relative;
  min-height: 100%;
}

.why-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/asi-mong-2MaZTXk49zQ-unsplash.webp'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates parallax effect */
  z-index: 0;
}

.why-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 63, 73, 0.85) 0%,
    rgba(0, 63, 73, 0.7) 50%,
    rgba(253, 73, 0, 0.1) 100%
  );
  backdrop-filter: blur(2px);
}

.why-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.why-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-title {
  padding: 1rem 0;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-tertiary);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.why-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* Individual Cards */
.why-card {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 63, 73, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 63, 73, 0.25);
  
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.why-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  padding: 8px;
  background: rgba(253, 73, 0, 0.1);
  border-radius: 50px;
  border: 2px solid rgba(253, 73, 0, 0.2);
}

.why-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.why-card-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .why-bg-image {
    background-attachment: scroll; /* Remove parallax on tablets for better performance */
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 3rem 0;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .why-card {
    padding: 1.5rem;
  }
  
  .why-card-header {
    gap: 0.875rem;
  }
  
  .why-icon {
    width: 40px;
    height: 40px;
  }
  
  .why-card-title {
    font-size: 1.125rem;
  }
  
  .why-title {
    font-size: 2rem;
  }
  
  .why-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 2rem 0;
  }
  
  .why-container {
    padding: 0 1rem;
  }
  
  .why-card {
    padding: 1.25rem;
  }
  
  .why-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
  }
  
  .why-icon {
    align-self: flex-start;
  }
  
  .why-header {
    margin-bottom: 2rem;
  }
  
  .why-title {
    font-size: 1.75rem;
  }
  
  .why-subtitle {
    font-size: 1rem;
  }
}

/* Animation for cards on load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }
.why-card:nth-child(5) { animation-delay: 0.5s; }
.why-card:nth-child(6) { animation-delay: 0.6s; }




















/* ========================================
   PRICING SECTION
   ======================================== */


.pricing-section {
  width: 100%;
  padding: 90px 20px;
  background: var(--color-primary);
  color: var(--text-tertiary);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 20px;
}

.pricing-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 4rem);
  color: var(--text-tertiary);
  margin: 0 0 16px;
  opacity: 0;
  transform: translateY(18px);
  animation: prs-fade-slide 640ms cubic-bezier(.2,.9,.2,1) 0.05s both;
}

.pricing-subtitle {
  font-family: var(--font-body);
  color: var(--color-tertiary);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(18px);
  animation: prs-fade-slide 640ms cubic-bezier(.2,.9,.2,1) 0.18s both;
}

/* Grid - Flexible Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* Cards */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 650px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.96));
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0, 63, 73, 0.1);
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateY(24px);
  animation: prs-card-appear 720ms cubic-bezier(.2,.9,.2,1) both;
}

/* Animation Stagger */
.pricing-card:nth-child(1) { animation-delay: 0.18s; }
.pricing-card:nth-child(2) { animation-delay: 0.32s; }
.pricing-card:nth-child(3) { animation-delay: 0.46s; }
.pricing-card:nth-child(4) { animation-delay: 0.60s; }

/* Card Hover */
.pricing-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0, 63, 73, 0.15);
  border-color: var(--color-secondary);
}

/* Card Top Section */
.pricing-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.package-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.3;
}

.package-label {
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--color-tertiary);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.package-label--hot { 
  background: var(--color-secondary);
  box-shadow: 0 4px 12px rgba(253, 73, 0, 0.2);
  padding: 6px 14px;
  font-size: 1rem;
  width: auto;
  text-align: center;
}

.package-label--new { 
  background: var(--cta-bg-on-secondary);
  box-shadow: 0 4px 12px rgba(0, 63, 73, 0.2);
   font-size: 1rem;
  width: auto;
  text-align: center;
}

/* Package Description */
.package-desc {
  margin: 0 0 24px;
  color: rgba(0, 0, 0, 0.75);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-shrink: 0;
}

/* Features Container */
.features-container {
  flex: 1;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.features-title {
  flex-shrink: 0;
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  font-family: var(--font-title);
}

.features-list {
  flex: 1;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--font-body);
  font-size: 0.95rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) rgba(0, 0, 0, 0.05);
}

/* Custom Scrollbar */
.features-list::-webkit-scrollbar {
  width: 5px;
}

.features-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.features-list::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 10px;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.5;
  position: relative;
  padding-left: 24px;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.features-list li:last-child {
  border-bottom: none;
}

/* Price & CTA Container */
.price-cta-container {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 24px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.price-box {
  padding: 16px 0;
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-primary);
  text-align: center;
  background: rgba(0, 63, 73, 0.05);
  border-radius: 6px;
}

/* CTA Button */
.pricing-cta {
  display: inline-flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--cta-bg-on-primary);
  color: var(--color-tertiary);
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-cta);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(253, 73, 0, 0.15);
  transition: all var(--transition-medium);
}

.pricing-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(253, 73, 0, 0.2);
  background: linear-gradient(135deg, var(--color-secondary), rgb(253, 100, 30));
}

.pricing-cta .cta-icon {
  color: inherit;
  transition: transform var(--transition-medium);
}

.pricing-cta:hover .cta-icon {
  transform: translateX(4px);
}

/* Animations */
@keyframes prs-fade-slide {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes prs-card-appear {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card {
    min-height: 620px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 70px 16px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-card {
    min-height: auto;
    height: auto;
    padding: 24px;
  }
  
  .features-container {
    min-height: 240px;
  }
  
  .package-title {
    font-size: 1.6rem;
  }
  
  .price-box {
    font-size: 1.6rem;
    padding: 14px 0;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 60px 12px;
  }
  
  .pricing-header {
    margin-bottom: 36px;
    padding: 0 10px;
  }
  
  .pricing-title {
    font-size: 2.2rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .pricing-card {
    padding: 20px;
  }
  
  .features-list {
    font-size: 0.9rem;
  }
  
  .features-list li {
    padding: 10px 0 10px 20px;
  }
  
  .pricing-cta {
    padding: 14px 20px;
    font-size: 1rem;
  }
}




/* =====================================
        CTA SECTION - ENHANCED
===================================== */

.cta-section {
    position: relative;
    padding: 70px 20px;
    color: var(--text-primary);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 63, 73, 0.03) 0%, rgba(253, 73, 0, 0.03) 100%);
}

/* Background Pattern */
.cta-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 63, 73, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 73, 0, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 2;
}

/* Container */
.cta-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Badge */
.cta-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--color-secondary), rgba(253, 73, 0, 0.8));
    color: var(--color-tertiary);
    font-family: var(--font-cta);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(253, 73, 0, 0.15);
}

/* Typography */
.cta-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(0, 63, 73, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-title .highlight {
    background: linear-gradient(135deg, var(--color-secondary), rgba(253, 73, 0, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 60px;
    color: rgba(0, 63, 73, 0.85);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Grid */
.cta-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 63, 73, 0.1);
    box-shadow: 0 20px 60px rgba(0, 63, 73, 0.08);
}

.contact-column {
    text-align: left;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    stroke-width: 1.5;
}

.contact-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.cta-link {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(0, 63, 73, 0.9);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 63, 73, 0.1);
    transition: all var(--transition-medium);
    position: relative;
    padding-left: 32px;
}

.cta-link:last-child {
    border-bottom: none;
}

.cta-link:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
    border-bottom-color: var(--color-secondary);
}

.cta-link.phone:before {
    content: "";
    position: absolute;
    left: 0;
}

.cta-link.email:before {
    content: "";
    position: absolute;
    left: 0;
}

/* Social Media Section */
.cta-social {
    margin-bottom: 60px;
}

.social-intro {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-tertiary);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 63, 73, 0.1);
    box-shadow: 0 8px 20px rgba(0, 63, 73, 0.08);
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--color-tertiary);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 63, 73, 0.15);
}

.social-link:nth-child(1):hover { background: #1DA1F2; } /* Twitter */
.social-link:nth-child(2):hover { background: #0077B5; } /* LinkedIn */
.social-link:nth-child(3):hover { background: #1877F2; } /* Facebook */
.social-link:nth-child(4):hover { background: #E4405F; } /* Instagram */
.social-link:nth-child(5):hover { background: #25D366; } /* WhatsApp */

.social-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-medium);
}

.social-link:hover .social-icon {
    transform: scale(1.2);
}

.social-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(0, 63, 73, 0.7);
    margin: 0;
}

/* CTA Buttons */
.cta-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-cta);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--transition-medium);
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--color-secondary), rgba(253, 73, 0, 0.9));
    color: var(--color-tertiary);
    box-shadow: 0 10px 30px rgba(253, 73, 0, 0.2);
    border: 2px solid transparent;
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(253, 73, 0, 0.3);
    background: linear-gradient(135deg, rgba(253, 73, 0, 0.9), var(--color-secondary));
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(0, 63, 73, 0.3);
    box-shadow: 0 8px 20px rgba(0, 63, 73, 0.1);
}

.cta-button.secondary:hover {
    transform: translateY(-5px);
    background: var(--color-primary);
    color: var(--color-tertiary);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 63, 73, 0.2);
}

.button-icon {
    width: 20px;
    height: 20px;
}

/* =====================================
        ANIMATIONS
===================================== */

.slide-in {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFade 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================
        RESPONSIVE
===================================== */

@media (max-width: 992px) {
    .cta-section {
        padding: 100px 20px;
    }
    
    .cta-contact-grid {
        padding: 30px;
        gap: 30px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 16px;
    }
    
    .cta-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .cta-contact-grid {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 25px;
    }
    
    .cta-button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 12px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-desc {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .cta-contact-grid {
        padding: 20px;
        gap: 20px;
    }
    
    .cta-link {
        font-size: 1rem;
        padding: 10px 0;
        padding-left: 28px;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}





/* ============================================================
      FAQ SECTION
   ============================================================ */

.faq-section {
    position: relative;
    padding: 80px 20px;
    background: var(--color-primary);
    color: var(--text-tertiary);
    overflow: hidden;
}

.faq-overlay {
    position: absolute;
    inset: 0;
    background: url("assets/images/brandpattern.png") center/cover no-repeat;
    opacity: 0.25;
    z-index: 1;
}

.faq-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: auto;
    flex-wrap: wrap;
}

.faq-left,
.faq-right {
    flex: 1;
    min-width: 300px;
}

/* ---------- LEFT SIDE ---------- */
.faq-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid var(--color-tertiary);
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-family: var(--font-title);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: var(--transition-medium);
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer p {
    margin-top: 10px;
    line-height: 1.7;
}

/* ---------- RIGHT SIDE FORM ---------- */

.form-title {
    font-size: 2rem;
    font-family: var(--font-title);
    margin-bottom: 20px;
}

.faq-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-form input,
.faq-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    outline: none;
    background: var(--glass-primary);
    backdrop-filter: blur(7px);
    color: var(--text-tertiary);
    font-family: var(--font-body);
}

.faq-form textarea {
    height: 140px;
    resize: none;
}

/* CAPTCHA */
.captcha-box {
    padding: 20px;
    background: var(--glass-tertiary);
    text-align: center;
    border-radius: 6px;
}

/* Buttons */
.form-buttons {
    display: flex;
    gap: 20px;
}

.btn-submit {
    flex: 1;
    padding: 12px;
    background: var(--cta-bg-on-primary);
    border: none;
    color: var(--color-tertiary);
    font-family: var(--font-cta);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-submit:hover {
    opacity: 0.8;
}

.btn-cancel {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--color-tertiary);
    color: var(--color-tertiary);
    font-family: var(--font-cta);
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-cancel:hover {
    background: var(--color-tertiary);
    color: var(--color-primary);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
    }
}














/* ===========================================
        PROJECTS CAROUSEL SECTION
   =========================================== */

.projects-carousel {
  width: 100%;
  padding: 80px 20px;
  background: var(--color-tertiary);
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.carousel-header {
  text-align: center;
  margin-bottom: 50px;
}

.carousel-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp var(--transition-medium) forwards 0.2s;
}

.carousel-description {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp var(--transition-medium) forwards 0.4s;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 10px 0;
  margin-left: -15px;
  margin-right: -15px;
}

/* Project Cards */
.project-card {
  flex: 0 0 calc(33.333% - 30px);
  min-width: 0;
  margin: 0 15px;
  background: var(--color-tertiary);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp var(--transition-medium) forwards;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Project Image */
.project-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

/* Project Content */
.project-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: var(--color-tertiary);
}

.project-info {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-package {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.project-industry {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-primary);
  padding: 6px 14px;
  background: rgba(0, 63, 73, 0.08);
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  font-weight: 500;
}

/* Project Link */
.project-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-secondary);
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--transition-fast);
}

.project-card:hover .project-link {
  color: var(--text-primary);
}

.project-link svg {
  transition: transform var(--transition-fast);
}

.project-card:hover .project-link svg {
  transform: translateX(5px);
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: var(--color-tertiary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition-medium);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: fadeIn var(--transition-medium) forwards 0.8s;
}

.carousel-wrapper:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(253, 73, 0, 0.25);
}

.carousel-btn:hover svg {
  color: var(--color-tertiary);
}

.carousel-btn svg {
  color: var(--text-primary);
  transition: color var(--transition-fast);
  stroke-width: 2.5;
}

.carousel-prev {
  left: -28px;
}

.carousel-next {
  right: -28px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeIn var(--transition-medium) forwards 1s;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 63, 73, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-medium);
  position: relative;
}

.carousel-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: transparent;
  transition: background var(--transition-fast);
}

.carousel-dot:hover::after {
  background: rgba(0, 63, 73, 0.1);
}

.carousel-dot.active {
  background: var(--color-secondary);
  transform: scale(1.3);
}

/* Portfolio Link */
.portfolio-link {
  text-align: center;
  margin-top: 50px;
  opacity: 0;
  animation: fadeIn var(--transition-medium) forwards 1.2s;
}

.portfolio-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cta);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  padding: 16px 36px;
  border: 2px solid var(--color-secondary);
  border-radius: 8px;
  transition: all var(--transition-medium);
  background: rgba(253, 73, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.portfolio-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 73, 0, 0.1), transparent);
  transition: left 0.6s;
}

.portfolio-cta:hover::before {
  left: 100%;
}

.portfolio-cta:hover {
  background: var(--color-secondary);
  color: var(--color-tertiary);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(253, 73, 0, 0.25);
}

.portfolio-cta svg {
  transition: transform var(--transition-medium);
}

.portfolio-cta:hover svg {
  transform: translateX(5px);
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===================
   RESPONSIVE DESIGN
=================== */

/* Tablet */
@media (max-width: 1024px) {
  .projects-carousel {
    padding: 60px 15px;
  }
  
  .carousel-title {
    font-size: 2.4rem;
  }
  
  .carousel-track {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .project-card {
    flex: 0 0 calc(50% - 20px);
    margin: 0 10px;
  }
  
  .carousel-btn {
    width: 48px;
    height: 48px;
  }
  
  .carousel-prev {
    left: -24px;
  }
  
  .carousel-next {
    right: -24px;
  }
  
  .project-image {
    height: 240px;
  }
}

/* Mobile (Large) */
@media (max-width: 768px) {
  .projects-carousel {
    padding: 50px 12px;
  }
  
  .carousel-title {
    font-size: 2.1rem;
  }
  
  .carousel-description {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .carousel-wrapper {
    overflow: visible;
    margin-bottom: 40px;
  }
  
  /* Mobile: Hide buttons, show scroll */
  .carousel-btn {
    display: none;
  }
  
  .carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin-left: -10px;
    margin-right: -10px;
    transform: none !important;
    transition: none !important;
    scrollbar-width: none;
    gap: 0;
  }
  
  .carousel-track::-webkit-scrollbar {
    display: none;
  }
  
  .project-card {
    flex: 0 0 85%;
    margin: 0 10px;
    scroll-snap-align: center;
    animation: slideUp var(--transition-medium) forwards;
    opacity: 0;
    transform: translateY(20px);
    flex-shrink: 0;
  }
  
  /* Stagger card animations for mobile */
  .project-card:nth-child(1) { animation-delay: 0.1s; }
  .project-card:nth-child(2) { animation-delay: 0.2s; }
  .project-card:nth-child(3) { animation-delay: 0.3s; }
  .project-card:nth-child(4) { animation-delay: 0.4s; }
  .project-card:nth-child(5) { animation-delay: 0.5s; }
  .project-card:nth-child(6) { animation-delay: 0.6s; }
  .project-card:nth-child(7) { animation-delay: 0.7s; }
  .project-card:nth-child(8) { animation-delay: 0.8s; }
  .project-card:nth-child(9) { animation-delay: 0.9s; }
  
  .project-image {
    height: 220px;
  }
  
  .project-content {
    padding: 20px;
  }
  
  .carousel-dots {
    display: none;
  }
  
  .portfolio-link {
    margin-top: 30px;
  }
  
  .portfolio-cta {
    font-size: 1.1rem;
    padding: 14px 28px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .projects-carousel {
    padding: 40px 10px;
  }
  
  .carousel-title {
    font-size: 1.9rem;
  }
  
  .carousel-description {
    font-size: 0.95rem;
  }
  
  .carousel-track {
    margin-left: -8px;
    margin-right: -8px;
  }
  
  .project-card {
    flex: 0 0 90%;
    margin: 0 8px;
  }
  
  .project-image {
    height: 200px;
  }
  
  .project-content {
    padding: 16px;
  }
  
  .project-package {
    font-size: 1.1rem;
  }
  
  .project-industry {
    font-size: 0.85rem;
  }
  
  .project-link {
    font-size: 0.95rem;
  }
  
  .portfolio-cta {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .carousel-btn {
    opacity: 1;
    width: 44px;
    height: 44px;
  }
  
  .carousel-btn:hover {
    transform: translateY(-50%);
  }
  
  .project-card:hover {
    transform: none;
  }
  
  .project-card:active {
    transform: scale(0.98);
  }
}










/* ============================
   GOOGLE MAPS SECTION
============================ */

.map-section {
  width: 100%;
  padding: 80px 20px;
  background: var(--color-primary);
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.map-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-tertiary);
  max-width: 600px;
  margin: 25px auto 0;
  line-height: 1.6;
}

/* Map Container */
.map-container {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: white;
}

/* Map Wrapper */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Google Map */
.google-map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Map Placeholder */
.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.map-placeholder.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  text-align: center;
  margin-bottom: 40px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-spinner p {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}

.placeholder-content {
  text-align: center;
  color: white;
}

.placeholder-content i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.placeholder-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.placeholder-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Map Controls */
.map-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.map-btn {
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #2c3e50;
  font-size: 1.2rem;
}

.map-btn:hover {
  background: #e74c3c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.map-btn:active {
  transform: translateY(0);
}

/* Location Card */
.location-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.location-header i {
  font-size: 1.8rem;
  color: #e74c3c;
}

.location-header h4 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 600;
}

.location-details {
  margin-bottom: 25px;
}

.location-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #5d6d7e;
  font-size: 1rem;
}

.location-details i {
  color: #3498db;
  width: 20px;
  text-align: center;
}

.directions-btn {
  width: 100%;
  padding: 14px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.directions-btn:active {
  transform: translateY(0);
}

/* Map Footer */
.map-footer {
  padding: 25px 40px;
  background: #2c3e50;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.transport-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 1.1rem;
}

.transport-item i {
  font-size: 1.4rem;
  color: #3498db;
  background: rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================
   RESPONSIVE DESIGN
=================== */

/* Tablet */
@media (max-width: 1024px) {
  .map-section {
    padding: 60px 15px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .map-wrapper {
    height: 500px;
  }
  
  .location-card {
    width: 280px;
    padding: 20px;
  }
}

/* Mobile (Large) */
@media (max-width: 768px) {
  .map-section {
    padding: 40px 12px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .map-wrapper {
    height: 400px;
  }
  
  .map-controls {
    top: 15px;
    right: 15px;
  }
  
  .map-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  .location-card {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 20px;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #eee;
  }
  
  .map-footer {
    padding: 20px;
  }
  
  .transport-info {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .transport-item {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .map-section {
    padding: 30px 10px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .map-wrapper {
    height: 350px;
  }
  
  .map-controls {
    top: 10px;
    right: 10px;
    gap: 8px;
  }
  
  .map-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .placeholder-content i {
    font-size: 3rem;
  }
  
  .placeholder-content h3 {
    font-size: 1.6rem;
  }
  
  .placeholder-content p {
    font-size: 1rem;
  }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
  .map-wrapper {
    height: 350px;
  }
  
  .location-card {
    padding: 15px;
  }
  
  .location-header h4 {
    font-size: 1.2rem;
  }
  
  .location-details p {
    font-size: 0.9rem;
    margin: 8px 0;
  }
}























.footer {
    background: var(--color-bg);
    padding: 60px 0 40px;
    color: var(--color-primary);
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

/* -----------------------------------------------------------
   COLUMN 1 — ABOUT + CONTACT + SOCIALS
----------------------------------------------------------- */
.footer-logo {
    width: 170px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-primary);
    transition: 0.2s ease;
}

.contact-item:hover {
    color: var(--color-secondary);
}

.contact-item img {
    width: 20px;
    height: 20px;
}

/* -----------------------------------------------------------
   SOCIALS
----------------------------------------------------------- */
.follow-title {
    margin-top: 20px;
    font-family: var(--font-title);
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.footer-socials img {
    width: 26px;
    height: 26px;
    transition: transform 0.2s ease;
}

.footer-socials img:hover {
    transform: scale(1.15);
}

/* -----------------------------------------------------------
   COLUMN 2 & 3 — LINKS
----------------------------------------------------------- */
.footer-col h4 {
    font-family: var(--font-title);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.footer-links ul,
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-nav a {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 0.95rem;
    display: inline-block;
    padding: 6px 0;
    transition: 0.2s;
}

.footer-links a:hover,
.footer-nav a:hover {
    color: var(--color-secondary);
}

/* -----------------------------------------------------------
   BOTTOM BAR
----------------------------------------------------------- */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 63, 73, 0.2);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* -----------------------------------------------------------
   RESPONSIVE — TABLET (900px)
----------------------------------------------------------- */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-logo {
        width: 150px;
    }
}

/* -----------------------------------------------------------
   RESPONSIVE — MOBILE (600px)
----------------------------------------------------------- */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-about {
        order: 1;
    }

    .footer-links {
        order: 2;
    }

    .footer-nav {
        order: 3;
    }

    .footer-socials {
        gap: 10px;
    }
}

/* -----------------------------------------------------------
   RESPONSIVE — SMALL MOBILE (400px)
----------------------------------------------------------- */
@media (max-width: 400px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-logo {
        width: 130px;
    }

    .footer-socials img {
        width: 23px;
        height: 23px;
    }
}






/* ============================
   FLOATING CALL BUTTON
============================ */

.floating-call-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.floating-call-btn {
  position: relative;
  background: linear-gradient(135deg, var(--color-secondary), rgba(253, 73, 0, 0.9));
  color: var(--color-tertiary);
  border: none;
  border-radius: 30px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(253, 73, 0, 0.25);
  transition: all var(--transition-medium);
  overflow: hidden;
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
}

.floating-call-btn:hover {
  background: linear-gradient(135deg, var(--color-primary), rgba(0, 63, 73, 0.9));
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 63, 73, 0.3);
  padding-right: 25px;
  border-color: var(--color-tertiary);
}

.floating-call-btn:active {
  transform: translateY(-1px);
}

.floating-call-btn:focus {
  outline: none;
  box-shadow: 
    0 0 0 3px rgba(255, 255, 255, 0.8),
    0 15px 40px rgba(0, 63, 73, 0.3);
}

/* Phone Icon */
.floating-phone-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.floating-call-btn:hover .floating-phone-icon {
  transform: rotate(15deg) scale(1.1);
  animation: phone-shake 0.5s ease-in-out;
}

@keyframes phone-shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}

/* Call Text */
.call-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateX(-10px);
}

.floating-call-btn:hover .call-text {
  max-width: 100px;
  opacity: 1;
  transform: translateX(0);
}

/* Blinking Ring */
.floating-phone-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 2px solid var(--color-secondary);
  animation: phone-ring-pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
  pointer-events: none;
  opacity: 0;
}

@keyframes phone-ring-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.floating-call-btn:hover .floating-phone-ring {
  animation: phone-ring-pulse 1.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
  border-color: var(--color-tertiary);
}

/* Optional: Pulse animation for attention */
@keyframes attention-pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(253, 73, 0, 0.25);
  }
  50% {
    box-shadow: 0 10px 30px rgba(253, 73, 0, 0.4);
  }
}

.floating-call-btn.pulse {
  animation: attention-pulse 2s infinite;
}

/* Phone Number Tooltip */
.floating-call-btn::after {
  content: "+254 712 345 678"; /* Your phone number */
  position: absolute;
  bottom: 100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-tertiary);
  padding: 8px 15px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  white-space: nowrap;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-medium);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1001;
}

.floating-call-btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 20px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-primary);
  opacity: 0;
  visibility: hidden;
  margin-bottom: 4px;
  transition: all var(--transition-medium);
}

.floating-call-btn:hover::after,
.floating-call-btn:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================
   BACK TO TOP BUTTON (Adjusted)
============================ */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-tertiary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-medium);
  box-shadow: 0 8px 25px rgba(0, 63, 73, 0.25);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-secondary);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(253, 73, 0, 0.3);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.back-to-top:hover svg {
  transform: translateY(-3px);
}

/* ============================
   RESPONSIVE DESIGN
============================ */

@media (max-width: 768px) {
  .floating-call-container {
    bottom: 20px;
    left: 20px;
  }
  
  .floating-call-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .floating-phone-icon {
    width: 18px;
    height: 18px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
  
  /* Show call text permanently on mobile */
  .call-text {
    max-width: 100px;
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Adjust hover effects for mobile */
  .floating-call-btn:hover {
    padding-right: 16px; /* Same as normal */
  }
}

@media (max-width: 480px) {
  .floating-call-container {
    bottom: 15px;
    left: 15px;
  }
  
  .floating-call-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .floating-phone-icon {
    width: 16px;
    height: 16px;
  }
  
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .back-to-top svg {
    width: 16px;
    height: 16px;
  }
  
  .call-text {
    max-width: 80px;
    font-size: 0.85rem;
  }
}

/* Small screens - stack buttons vertically */
@media (max-width: 360px) {
  .floating-call-container {
    bottom: 70px; /* Move up to avoid overlap with back-to-top */
  }
}




/* ============================
   WHATSAPP FLOATING BUTTON
============================ */

.whatsapp-fab {
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 1000;
  background: #25D366; /* WhatsApp green */
  color: white;
  border: none;
  border-radius: 30px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  transition: all var(--transition-medium);
  overflow: hidden;
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
}

.whatsapp-fab:hover {
  background: #128C7E; /* Darker WhatsApp green */
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(18, 140, 126, 0.3);
  padding-right: 25px;
  border-color: white;
}

.whatsapp-fab:active {
  transform: translateY(-1px);
}

.whatsapp-fab:focus {
  outline: none;
  box-shadow: 
    0 0 0 3px rgba(255, 255, 255, 0.8),
    0 15px 40px rgba(18, 140, 126, 0.3);
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.whatsapp-fab:hover .whatsapp-icon {
  transform: scale(1.1);
  animation: whatsapp-shake 0.5s ease-in-out;
}

@keyframes whatsapp-shake {
  0%, 100% { transform: scale(1.1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-10deg); }
  75% { transform: scale(1.1) rotate(10deg); }
}

/* WhatsApp Text */
.whatsapp-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateX(-10px);
}

.whatsapp-fab:hover .whatsapp-text {
  max-width: 100px;
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Ring Animation */
.whatsapp-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 2px solid #25D366;
  animation: whatsapp-ring-pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
  pointer-events: none;
  opacity: 0;
}

@keyframes whatsapp-ring-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.whatsapp-fab:hover .whatsapp-ring {
  animation: whatsapp-ring-pulse 1.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
  border-color: white;
}

/* Optional: Attention pulse animation */
@keyframes whatsapp-attention {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  }
  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-fab.pulse {
  animation: whatsapp-attention 2s infinite;
}

/* WhatsApp Number Tooltip */
.whatsapp-fab::after {
  content: "Chat with us on WhatsApp";
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #075E54; /* Dark WhatsApp green */
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  white-space: nowrap;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-medium);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1001;
}

.whatsapp-fab::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 20px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #075E54;
  opacity: 0;
  visibility: hidden;
  margin-bottom: 4px;
  transition: all var(--transition-medium);
}

.whatsapp-fab:hover::after,
.whatsapp-fab:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE DESIGN
============================ */

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 80px;
    left: 20px;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .whatsapp-icon {
    width: 22px;
    height: 22px;
  }
  
  /* Show text permanently on mobile */
  .whatsapp-text {
    max-width: 100px;
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Adjust hover effects for mobile */
  .whatsapp-fab:hover {
    padding-right: 16px; /* Same as normal */
  }
}

@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: 70px;
    left: 15px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
  
  .whatsapp-text {
    max-width: 80px;
    font-size: 0.85rem;
  }
  
  /* Hide tooltip on very small screens */
  .whatsapp-fab::after,
  .whatsapp-fab::before {
    display: none;
  }
}

/* Small screens - adjust position if you have other FABs */
@media (max-width: 360px) {
  .whatsapp-fab {
    bottom: 60px;
  }
}













/* ============================
   BACK TO TOP BUTTON
============================ */

/* CSS-only version */
.back-to-top-css {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  color: var(--color-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  opacity: 0.9;
  transition: all var(--transition-medium);
  box-shadow: 0 8px 25px rgba(253, 73, 0, 0.25);
}

.back-to-top-css:hover {
  opacity: 1;
  background: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 63, 73, 0.3);
}

.back-to-top-css svg {
  width: 20px;
  height: 20px;
}












































































































































/* ===============================
   ABOUT SECTION
   =============================== */
.about-section {
    width: 100%;
    padding: 4rem 10%;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    gap: 3rem;
    width: 100%;
    align-items: stretch;
}

/* LEFT SIDE */
.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.about-title {
    font-family: var(--font-title);
    font-size: var(--size-title);
    color: var(--text-primary);
}

/* RIGHT SIDE: allow content to flow and not be clipped */
.about-right {
    flex: 1;
    position: relative;
    background: url("assets/images/") center/cover no-repeat;
    border-radius: var(--radius);
    overflow: visible;        /* changed from hidden */
    padding: 2.2rem;         /* give space for the cards inside */
    min-height: 380px;       /* keep a sensible min height */
    display: flex;
    align-items: center;
    justify-content: center;
}


/* White overlay stays absolute so it covers the background only */
.about-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(3px);
    pointer-events: none;
    border-radius: inherit;
}

/* Achievements are no longer absolute — they will flow and be responsive */
.achievements-wrapper {
    position: relative;      /* let it flow naturally */
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns by default/tablet */
    gap: 1rem;
    z-index: 1;              /* ensure it sits above the overlay */
    align-items: stretch;
    justify-items: center;
    padding: 1rem;
}

/* ACHIEVEMENT CARD — make sizing flexible and mobile-friendly */
.achievement-card {
    width: 100%;
    max-width: 260px;
    background: white;
    border-radius: 6px;
    padding: 1rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    align-self: stretch;
}

.achievement-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.achievement-card h3 {
    font-family: var(--font-title);
    color: var(--text-secondary);
    font-size: 1.6rem;
}

.achievement-card p {
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Hover scaling */
.achievement-card:hover,
.achievement-card:focus {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===============================
   RESPONSIVENESS
   =============================== */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }

    .about-right {
        min-height: 380px;
    }

    .achievement-card {
        width: 48%;
    }
}

@media (max-width: 500px) {
    .achievement-card {
        width: 100%;
    }
}






/* CTA BUTTON */
.about-cta {
    margin-top: 1rem;
    display: inline-block;
    padding: 6px 8px;
    background: var(--cta-bg-on-primary);
    color: white;
    font-family: var(--font-cta);
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background var(--transition-medium), transform var(--transition-medium);
    text-decoration: none;
    width: fit-content;
}

.about-cta:hover {
    background: var(--cta-hover-secondary);
    transform: translateY(-3px);
}

/* IMPROVED MOBILE STACKING */
@media (max-width: 900px) {
    .about-section {
        padding: 3rem 5%;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-left {
        text-align: center;
        align-items: center;
    }

    .about-cta {
        margin-left: 0;
    }

    .about-right {
        width: 100%;
        min-height: 400px;
    }
}

@media (max-width: 500px) {
    .achievements-wrapper {
        padding: 1rem;
    }
    
    .achievement-card {
        width: 100%;
        max-width: none;
    }

    .about-title {
        font-size: 1.6rem;
    }
}


/* Tablet -> single column stack on narrower tablets/mobile portrait */
@media (max-width: 900px) {
    .about-section { padding: 3rem 5%; }
    .about-container { flex-direction: column; gap: 0.5rem; }
    .about-left { text-align: center; align-items: center; }

    /* Make achievements a 2-column grid (still OK for most phones in landscape) */
    .achievements-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
    }

    .about-right { min-height: 420px; padding: 1.5rem; }
}

/* Small phones: one card per row */
@media (max-width: 500px) {
    .achievements-wrapper {
        grid-template-columns: 2fr;
        gap: 0.9rem;
    }

    .achievement-card {
        max-width: none;
        width: 100%;
    }

    .about-title { font-size: 1.6rem; }
}













































/* ============================
   HISTORY SECTION - TWO CARDS
============================ */

.history-section {
  width: 100%;
  padding: 80px 20px;
  background: var(--color-primary);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Section Header */
.section-headerr {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-tertiary)!important;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-tertiary);
  opacity: 0.8;
  max-width: 600px;
  margin: 25px auto 0;
  line-height: 1.6;
}

/* History Cards Container */
.history-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Individual Card */
.history-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp var(--transition-medium) forwards;
}

.history-card:nth-child(1) {
  animation-delay: 0.2s;
}

.history-card.reverse:nth-child(2) {
  animation-delay: 0.4s;
}

/* Card Image */
.card-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 60px rgba(210, 241, 246, 0.15);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.history-card:hover .card-image img {
  transform: scale(1.05);
}

.image-label {
  position: absolute;
  top: 25px;
  left: 25px;
  background: var(--color-secondary);
  color: var(--text-tertiary);
  padding: 12px 25px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 8px 25px rgba(252, 209, 192, 0.3);
}

.label-text {
  font-family: var(--font-cta);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.label-year {
  font-family: var(--font-body);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Card Content */
.card-content {
  padding: 30px;
}

.content-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.card-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(232, 244, 246, 0.646);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.meta-tag:hover {
  background: var(--color-secondary);
  color: var(--color-tertiary);
}

.meta-tag i {
  font-size: 0.9rem;
}

.card-description {
  margin-bottom: 30px;
}

.card-description p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.card-description p:last-child {
  margin-bottom: 0;
}

/* Achievements Grid (Only in Second Card) */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 63, 73, 0.1);
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(194, 233, 239, 0.148);
  border-radius: 12px;
  transition: all var(--transition-medium);
  border: 1px solid transparent;
}

.achievement-item:hover {
  transform: translateY(-5px);
  background: var(--color-primary);
  border-color: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 63, 73, 0.1);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: rgba(253, 73, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-icon i {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

.achievement-content {
  display: flex;
  flex-direction: column;
}

.achievement-number {
  font-family: var(--font-cta);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 5px;
}

.achievement-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-tertiary);
  opacity: 0.8;
}

/* Closing Statement */
.closing-statement {
  text-align: center;
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(3, 215, 247, 0.138) 0%, rgba(253, 73, 0, 0.03) 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 63, 73, 0.1);
}

.closing-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.statement-icon {
  width: 70px;
  height: 70px;
  background: var(--color-secondary);
  color: var(--color-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 1.8rem;
}

.statement-text {
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-tertiary);
  max-width: 700px;
  margin: 0 auto 30px;
  font-style: italic;
}

.signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.signature-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.signature-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================
   RESPONSIVE DESIGN
=================== */

/* Tablet */
@media (max-width: 1024px) {
  .history-section {
    padding: 60px 15px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .history-cards {
    gap: 60px;
  }
  
  .history-card {
    gap: 40px;
  }
  
  .card-image {
    height: 450px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.9rem;
  }
  
  .card-description p {
    font-size: 1rem;
  }
  
  .achievements-grid {
    gap: 20px;
  }
  
  .achievement-number {
    font-size: 1.8rem;
  }
  
  .closing-statement {
    padding: 50px 40px;
    margin-top: 60px;
  }
  
  .statement-text {
    font-size: 1.2rem;
  }
}

/* Mobile (Large) */
@media (max-width: 768px) {
  .history-section {
    padding: 50px 12px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  .history-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .history-card.reverse {
    /* Keep image last on mobile */
    grid-template-columns: 1fr;
  }
  
  .history-card.reverse .card-content {
    order: 1;
  }
  
  .history-card.reverse .card-image {
    order: 2;
  }
  
  .card-image {
    height: 350px;
    border-radius: 8px;
  }
  
  .content-wrapper {
    max-width: 100%;
  }
  
  .card-title {
    font-size: 1.7rem;
  }
  
  .card-meta {
    gap: 10px;
  }
  
  .meta-tag {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .achievement-item {
    padding: 15px;
  }
  
  .achievement-icon {
    width: 50px;
    height: 50px;
  }
  
  .achievement-icon i {
    font-size: 1.3rem;
  }
  
  .achievement-number {
    font-size: 1.6rem;
  }
  
  .closing-statement {
    padding: 40px 25px;
    margin-top: 50px;
  }
  
  .statement-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .statement-text {
    font-size: 1.1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .history-section {
    padding: 40px 10px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .card-image {
    height: 280px;
  }
  
  .image-label {
    top: 15px;
    left: 15px;
    padding: 10px 20px;
  }
  
  .label-text {
    font-size: 1rem;
  }
  
  .label-year {
    font-size: 0.85rem;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
  
  .card-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .achievement-item {
    gap: 15px;
  }
  
  .achievement-icon {
    width: 45px;
    height: 45px;
  }
  
  .achievement-icon i {
    font-size: 1.2rem;
  }
  
  .achievement-number {
    font-size: 1.4rem;
  }
  
  .achievement-label {
    font-size: 0.85rem;
  }
  
  .closing-statement {
    padding: 30px 20px;
  }
  
  .statement-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .statement-text {
    font-size: 1rem;
  }
}












/* ============================
   MISSION SECTION
============================ */

.mission-section {
  width: 100%;
  padding: 100px 20px;
  background: var(--color-tertiary);
  position: relative;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-secondary) 50%, 
    transparent 100%);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mission Text */
.mission-text {
  padding-right: 40px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary)!important;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.mission-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.mission-statement {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 50px;
  padding-right: 40px;
}

/* Mission Points */
.mission-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mission-point {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInRight var(--transition-medium) forwards;
}

.mission-point:nth-child(1) { animation-delay: 0.1s; }
.mission-point:nth-child(2) { animation-delay: 0.2s; }
.mission-point:nth-child(3) { animation-delay: 0.3s; }

.point-icon {
  width: 60px;
  height: 60px;
  background: rgba(253, 73, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-medium);
}

.mission-point:hover .point-icon {
  background: var(--color-secondary);
  transform: scale(1.1) rotate(5deg);
}

.point-icon i {
  font-size: 1.5rem;
  color: var(--color-secondary);
  transition: color var(--transition-medium);
}

.mission-point:hover .point-icon i {
  color: var(--color-tertiary);
}

.point-content {
  flex: 1;
}

.point-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.point-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  opacity: 0.8;
}

/* Mission Image */
.mission-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 60px rgba(253, 73, 0, 0.1);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.mission-image:hover img {
  transform: scale(1.05);
}

.image-label {
  max-width: 200px;
  max-height: 60px;
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--color-secondary);
  color: var(--text-tertiary);
  padding: 12px 25px;
  border-radius: 8px;
  font-family: var(--font-cta);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(253, 73, 0, 0.3);
}

/* ============================
   VISION SECTION
============================ */

.vision-section {
  width: 100%;
  padding: 100px 20px;
  background: rgba(0, 63, 73, 0.03);
  position: relative;
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Vision Image */
.vision-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 60px rgba(0, 63, 73, 0.1);
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.vision-image:hover img {
  transform: scale(1.05);
}

/* Vision Text */
.vision-text {
  padding-left: 40px;
}

.vision-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--color-primary)!important;
  border-radius: 2px;
}

.vision-statement {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 50px;
  padding-right: 40px;
}

/* Vision Pillars */
.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pillar {
  opacity: 0;
  transform: translateX(20px);
  animation: slideInLeft var(--transition-medium) forwards;
  padding: 25px;
  background: var(--color-tertiary);
  border-radius: 12px;
  border: 1px solid rgba(0, 63, 73, 0.1);
  transition: all var(--transition-medium);
}

.pillar:nth-child(1) { animation-delay: 0.1s; }
.pillar:nth-child(2) { animation-delay: 0.2s; }
.pillar:nth-child(3) { animation-delay: 0.3s; }

.pillar:hover {
  transform: translateX(0) translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 63, 73, 0.1);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.pillar-number {
  font-family: var(--font-cta);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
}

.pillar-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.pillar-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  opacity: 0.8;
  margin: 0;
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===================
   RESPONSIVE DESIGN
=================== */

/* Tablet */
@media (max-width: 1024px) {
  .mission-section,
  .vision-section {
    padding: 80px 15px;
  }
  
  .mission-content,
  .vision-content {
    gap: 60px;
  }
  
  .mission-text {
    padding-right: 20px;
  }
  
  .vision-text {
    padding-left: 20px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .mission-statement,
  .vision-statement {
    font-size: 1.1rem;
    padding-right: 20px;
  }
  
  .mission-image,
  .vision-image {
    height: 450px;
  }
  
  .point-title,
  .pillar-title {
    font-size: 1.2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mission-section,
  .vision-section {
    padding: 60px 12px;
  }
  
  .mission-content,
  .vision-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .mission-text {
    padding-right: 0;
    order: 2;
  }
  
  .mission-image {
    order: 1;
    height: 350px;
  }
  
  .vision-text {
    padding-left: 0;
    order: 2;
  }
  
  .vision-image {
    order: 1;
    height: 350px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .mission-statement,
  .vision-statement {
    font-size: 1rem;
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .mission-points,
  .vision-pillars {
    gap: 25px;
  }
  
  .mission-point {
    gap: 15px;
  }
  
  .point-icon {
    width: 50px;
    height: 50px;
  }
  
  .point-icon i {
    font-size: 1.3rem;
  }
  
  .pillar {
    padding: 20px;
  }
  
  .pillar-header {
    gap: 15px;
  }
  
  .pillar-number {
    font-size: 1.3rem;
  }
  
  .image-label {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .mission-section,
  .vision-section {
    padding: 50px 10px;
  }
  
  .mission-content,
  .vision-content {
    gap: 40px;
  }
  
  .mission-image,
  .vision-image {
    height: 280px;
  }
  
  .section-title {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
  
  .mission-statement,
  .vision-statement {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .mission-points,
  .vision-pillars {
    gap: 20px;
  }
  
  .mission-point {
    flex-direction: column;
    gap: 10px;
  }
  
  .point-icon {
    width: 45px;
    height: 45px;
  }
  
  .point-icon i {
    font-size: 1.2rem;
  }
  
  .point-title {
    font-size: 1.1rem;
  }
  
  .point-description {
    font-size: 0.9rem;
  }
  
  .pillar {
    padding: 15px;
  }
  
  .pillar-title {
    font-size: 1.1rem;
  }
  
  .pillar-description {
    font-size: 0.9rem;
  }
  
  .image-label {
    bottom: 15px;
    right: 15px;
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}




































/* ============================
    CONTACT SECTION
============================ */


/* ============================
   MAIN CONTACTS SECTION
============================ */

.main-contacts-section {
  width: 100%;
  padding: 100px 20px;
  background: var(--color-primary);
  position: relative;
}

.main-contacts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-primary) 50%, 
    transparent 100%);
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Section Header */
.main-section-header {
  text-align: center;
  margin-bottom: 80px;
}

.main-section-title {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.main-section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.main-section-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-tertiary);
  opacity: 0.8;
  max-width: 500px;
  margin: 25px auto 0;
  line-height: 1.6;
}

/* Contacts Grid */
.main-contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Contact Card */
.main-contact-card {
  background: var(--color-tertiary);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 63, 73, 0.1);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.main-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background var(--transition-medium);
}

.main-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 63, 73, 0.1);
  border-color: var(--color-primary);
}

.main-contact-card:hover::before {
  background: var(--color-primary);
}

/* Social Card Special */
.main-social-card:hover::before {
  background: var(--color-secondary);
}

.main-social-card:hover {
  border-color: var(--color-secondary);
}

/* Card Header */
.main-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.main-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(0, 63, 73, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
}

.main-contact-card:hover .main-icon-wrapper {
  background: var(--color-secondary);
  transform: rotate(5deg);
}

.main-contact-icon {
  width: 32px;
  height: 32px;
  transition: filter var(--transition-medium);
}

.main-contact-card:hover .main-contact-icon {
  filter: brightness(0) invert(1);
}

.main-card-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* Card Content */
.main-card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Contact Links */
.main-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(0, 63, 73, 0.03);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-medium);
  border: 1px solid transparent;
}

.main-contact-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateX(5px);
}

.main-contact-link:hover .main-contact-text {
  color: var(--color-tertiary);
}

.main-contact-link:hover .main-link-arrow {
  color: var(--color-tertiary);
}

.main-contact-link.secondary {
  margin-top: 10px;
  background: rgba(253, 73, 0, 0.03);
}

.main-contact-link.secondary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.main-contact-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition-medium);
}

.main-link-arrow {
  color: var(--color-primary);
  transition: color var(--transition-medium);
}

/* Contact Note */
.main-contact-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  opacity: 0.7;
  margin-top: 10px;
  padding-left: 20px;
  position: relative;
}

.main-contact-note::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}

/* Address */
.main-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main-address-line {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
}

/* Map Link */
.main-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(0, 63, 73, 0.05);
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-cta);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all var(--transition-medium);
  width: fit-content;
  border: 1px solid transparent;
}

.main-map-link:hover {
  background: var(--color-primary);
  color: var(--color-tertiary);
  transform: translateX(5px);
  border-color: var(--color-primary);
}

.main-map-arrow {
  width: 16px;
  height: 16px;
  transition: filter var(--transition-medium);
}

.main-map-link:hover .main-map-arrow {
  filter: brightness(0) invert(1);
}

/* Social Media */
.main-social-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  opacity: 0.8;
  margin-bottom: 20px;
}

.main-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.main-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(0, 63, 73, 0.03);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-medium);
  border: 1px solid transparent;
}

.main-social-link:hover {
  transform: translateY(-3px);
  border-color: currentColor;
}

/* Social Media Specific Colors */
.main-social-link.instagram:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
}

.main-social-link.facebook:hover {
  background: #1877F2;
  color: white;
}

.main-social-link.pinterest:hover {
  background: #E60023;
  color: white;
}

.main-social-link.linkedin:hover {
  background: #0077B5;
  color: white;
}

.main-social-link.tiktok:hover {
  background: #000000;
  color: white;
}

.main-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 63, 73, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-medium);
}

.main-social-link:hover .main-social-icon {
  background: rgba(255, 255, 255, 0.2);
}

.main-social-icon img {
  width: 20px;
  height: 20px;
  transition: filter var(--transition-medium);
}

.main-social-link:hover .main-social-icon img {
  filter: brightness(0) invert(1);
}

.main-social-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-medium);
}

.main-social-handle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-primary);
  opacity: 0.7;
  margin-left: auto;
  transition: color var(--transition-medium);
}

.main-social-link:hover .main-social-text,
.main-social-link:hover .main-social-handle {
  color: white;
}

/* Footer Note */
.main-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  background: rgba(0, 63, 73, 0.03);
  border-radius: 4px;
  border: 1px solid rgba(238, 134, 50, 0.349);
}

.main-note-icon {
  width: 50px;
  height: 50px;
  background: rgba(253, 73, 0, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-note-icon img {
  width: 24px;
  height: 24px;
}

.main-note-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-tertiary);
  font-weight: 500;
  margin: 0;
}

/* ===================
   RESPONSIVE DESIGN
=================== */

/* Tablet */
@media (max-width: 1024px) {
  .main-contacts-section {
    padding: 80px 15px;
  }
  
  .main-section-title {
    font-size: 2.5rem;
  }
  
  .main-contacts-grid {
    gap: 25px;
  }
  
  .main-contact-card {
    padding: 30px;
  }
  
  .main-card-title {
    font-size: 1.4rem;
  }
  
  .main-contact-text {
    font-size: 1.1rem;
  }
  
  .main-social-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile (Large) */
@media (max-width: 768px) {
  .main-contacts-section {
    padding: 60px 12px;
  }
  
  .main-section-header {
    margin-bottom: 60px;
  }
  
  .main-section-title {
    font-size: 2.2rem;
  }
  
  .main-section-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  .main-contacts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .main-card-header {
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .main-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .main-contact-icon {
    width: 26px;
    height: 26px;
  }
  
  .main-card-title {
    font-size: 1.3rem;
  }
  
  .main-footer-note {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 25px;
  }
  
  .main-note-text {
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .main-contacts-section {
    padding: 50px 10px;
  }
  
  .main-section-title {
    font-size: 1.9rem;
  }
  
  .main-section-subtitle {
    font-size: 1rem;
  }
  
  .main-contact-card {
    padding: 25px;
  }
  
  .main-card-header {
    gap: 12px;
  }
  
  .main-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .main-contact-icon {
    width: 22px;
    height: 22px;
  }
  
  .main-contact-link {
    padding: 14px 16px;
  }
  
  .main-contact-text {
    font-size: 1rem;
  }
  
  .main-social-link {
    padding: 12px;
  }
  
  .main-social-icon {
    width: 35px;
    height: 35px;
  }
  
  .main-social-icon img {
    width: 18px;
    height: 18px;
  }
  
  .main-social-text {
    font-size: 0.85rem;
  }
  
  .main-social-handle {
    font-size: 0.75rem;
  }
  
  .main-note-icon {
    width: 45px;
    height: 45px;
  }
  
  .main-note-icon img {
    width: 20px;
    height: 20px;
  }
}







.maintenance-notice {
    background-color: rgba(0, 63, 73, 0.05); /* Primary with low opacity */
    border: 2px solid rgba(0, 63, 73, 0.2); /* Primary border */
    border-left: 4px solid rgb(253, 63, 0); /* Secondary color accent */
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.maintenance-notice p {
    margin: 0;
    color: rgb(0, 63, 73); /* Primary color text */
    line-height: 1.5;
}

.maintenance-notice strong {
    color: rgb(253, 63, 0); /* Secondary color for emphasis */
    font-size: 1.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.maintenance-notice br {
    margin-bottom: 0.75rem;
    display: block;
    content: "";
}

/* Optional: Add an icon using CSS instead of emoji */
.maintenance-notice::before {
    content: "🛠️";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 255, 255); /* Tertiary background */
    border: 2px solid rgb(253, 63, 0); /* Secondary border */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hover effect for interactivity */
.maintenance-notice:hover {
    background-color: rgba(0, 63, 73, 0.08);
    border-color: rgba(0, 63, 73, 0.3);
    transition: all 0.3s ease;
}

/* Animation for the tool icon */
@keyframes tool-shake {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-50%) rotate(-10deg); }
    75% { transform: translateY(-50%) rotate(10deg); }
}

.maintenance-notice:hover::before {
    animation: tool-shake 0.5s ease-in-out;
}



