/* -------------- 
   VARIABLES
-------------- */
:root {
  --vibrant-orange: #F7931E;    /* Primary Accent (CTA) */
  --graphite-grey: #3A3A3A;     /* Primary Dark / Nav / Footer */
  --off-white: #F8F6F2;         /* Light Background */
  --cool-slate: #5A5A5A;        /* Secondary Neutral / Subtext */
  --warm-beige: #EFEDE8;        /* CTA Contrast / Service Cards */
  --burnt-orange: #E57200;      /* Button Hover */
  --light-grey: #D3D3D3;        /* Divider */
  
  /* Added variables */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* -------------- 
   GLOBAL
-------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--off-white);
  color: var(--graphite-grey);
  line-height: 1.6;
  padding-top: 80px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--graphite-grey);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 16px;
  color: var(--cool-slate);
}

/* Section Titles & Subtitles */
.section-title {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--vibrant-orange);
  margin: 16px auto 10px;
}

.subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--cool-slate);
  margin: 0.5rem auto 2.5rem;
  text-align: center;
  max-width: 700px;
}

/* HEADER */
header.header {
  background: var(--graphite-grey);
  padding: 0;
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  height: 80px;
}

header.header.scrolled {
  background: rgba(58, 58, 58, 0.95);
  backdrop-filter: blur(8px);
}

header .container {
  padding: 0;
  max-width: 100%;
  width: 100%;
  position: relative;
}

.logo-container {
  background-color: white;
  height: 100%;
  padding: 15px 30px 16px 0;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  z-index: 10;
  min-width: 185px;
  border-right: none;
}

.logo {
  display: flex;
  margin: 0;
  padding: 0;
}

.logo img {
  margin-left: 0;
  padding-left: 0;
  height: 50px;
  max-width: 100%;
  transition: transform var(--transition-normal);
}

.logo img:hover {
  transform: scale(1.05);
}

.header-content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-left: 250px;
  padding-right: 200px;
}

.nav-links {
  display: flex;
  list-style: none;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  align-items: center;
  height: 100%;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 19px;
  position: relative;
  transition: color var(--transition-normal);
  padding: 30px 0;
  display: inline-block;
}

.nav-links li a:hover {
  color: var(--vibrant-orange);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 25px;
  left: 0;
  background-color: var(--vibrant-orange);
  transition: width var(--transition-normal);
}

.nav-links li a:hover::after {
  width: 100%;
}

.header-cta {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* CTA BUTTONS */
.cta-button,
.secondary-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-normal);
}

.cta-button {
  background-color: var(--vibrant-orange);
  color: white;
  box-shadow: var(--shadow-sm);
}

.cta-button:hover {
  background-color: var(--burnt-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.secondary-button {
  background-color: transparent;
  color: var(--graphite-grey);
  border: 2px solid var(--graphite-grey);
  margin-left: 10px;
}

.secondary-button:hover {
  background-color: var(--graphite-grey);
  color: white;
  transform: translateY(-3px);
}

/* HERO SECTION */
.hero {
  padding: 100px 0 80px;
  background-color: var(--off-white);
  position: relative;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero p {
  font-size: 20px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md, 10px);
  box-shadow: var(--shadow-lg, 0 10px 20px rgba(0, 0, 0, 0.1));
  border: 3px solid var(--vibrant-orange);
  height: 400px;
  width: 100%;
  max-width: 600px;
  background-color: white;
  padding: 10px;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--vibrant-orange);
  border-radius: var(--radius-md);
  z-index: -1;
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
  background-color: var(--warm-beige);
  position: relative;
}

.services-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  flex: 1;
  max-width: 350px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  margin: 20px 10px;
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  height: 500px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--vibrant-orange);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--vibrant-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  color: white;
  font-size: 32px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--cool-slate);
  flex-grow: 1;
}

.service-button-container {
  margin-top: auto;
}

/* ABOUT SECTION */
.about-section {
  padding: 100px 0;
  background-color: var(--off-white);
  position: relative;
}

.about-box {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--vibrant-orange), var(--burnt-orange));
}

.about-header {
  color: var(--vibrant-orange);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1.5px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 20px;
}

.about-left,
.about-right {
  flex: 1;
}

.about-left h2 {
  font-size: 36px;
  margin-bottom: 25px;
  position: relative;
}

.about-left h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 60px;
  height: 3px;
  background-color: var(--vibrant-orange);
}

.about-right h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.about-right ul {
  list-style: none;
}

.about-right ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.about-right ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--vibrant-orange);
  position: absolute;
  left: 0;
  top: 0;
}

/* PARTNERS SECTION */
.partners-section {
  padding: 80px 0;
  background-color: white;
}

.partners-section p {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  gap: 100px;
}

.partner-logo {
  flex: 0 0 auto;
  opacity: 0.8;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 100px;
  width: 250px;
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.partner-logo img {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
}

/* CTA BANNER */
.cta-banner {
  background: var(--vibrant-orange);
  padding: 20px 0;
  text-align: center;
  position: relative;
}

.cta-banner-container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-banner .cta-button {
  background-color: white;
  color: var(--vibrant-orange);
  padding: 8px 16px;
  font-size: 14px;
}

.cta-banner .cta-button:hover {
  background-color: var(--graphite-grey);
  color: white;
}

/* FOOTER */
footer {
  background: var(--graphite-grey);
  color: white;
  padding: 30px 0 10px;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 15px;
  align-items: start;
}

.footer-logo img {
  height: 28px;
  max-width: 100%;
  margin-bottom: 10px;
  transition: transform var(--transition-normal);
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-logo p {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-links h3,
.footer-contact h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
  position: relative;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--vibrant-orange);
  bottom: -6px;
  left: 0;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--vibrant-orange);
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 6px;
  font-size: 12px;
  color: #ccc;
}

.footer-contact p a {
  color: #ccc;
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-contact p a:hover {
  color: var(--vibrant-orange);
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.social-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.social-icon:hover {
  background: var(--vibrant-orange);
  transform: translateY(-3px);
}

.social-icon i {
  color: white;
  font-size: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  color: #aaa;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
  font-size: 30px;
  color: white;
}

.whatsapp-float .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #FF4444;
  color: white;
  font-size: 12px;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Animations */
.zoom-in {
  animation: zoomIn 0.8s forwards;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) {
  transition-delay: 0.1s;
}

.service-card:nth-child(2) {
  transition-delay: 0.3s;
}

.service-card:nth-child(3) {
  transition-delay: 0.5s;
}

/* ========================================= 
   RESPONSIVE STYLES
========================================= */

/* Tablet Styles */
@media screen and (max-width: 992px) {
  .service-card {
    max-width: 100%;
    width: calc(50% - 30px);
    height: 520px;
  }
  
  .about-content {
    gap: 40px;
  }
  
  nav {
    padding-left: 180px;
    padding-right: 80px;
  }
}

/* ========================================= 
   MOBILE NAVIGATION  - UNIVERSAL
========================================= */

/* Desktop Navigation - Keep Original */
@media screen and (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
  
  .nav-links {
    display: flex !important;
    position: static !important;
    background: transparent !important;
    height: auto !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
  }
}

/* Mobile Navigation & Layout Fixes */
@media screen and (max-width: 768px) {
  /* Global Mobile Adjustments */
  body {
    padding-top: 70px !important;
    overflow-x: hidden !important;
  }
  
  /* Header adjustments */
  .header {
    height: 70px !important;
    z-index: 9000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
  
  /* Logo container */
  .logo-container {
    height: 70px !important;
    min-width: 180px !important;
    padding: 10px 20px 10px 0 !important;
    z-index: 9001 !important;
    background-color: white !important;
  }
  
  .logo img {
    height: 40px !important;
    margin-left: 15px !important;
  }
  
  /* Hide desktop CTA */
  .header-cta {
    display: none !important;
  }
  
  /* Hamburger menu styling */
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9002 !important;
    cursor: pointer !important;
    width: 30px !important;
    height: 24px !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .hamburger span {
    width: 28px !important;
    height: 3px !important;
    background: white !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    display: block !important;
  }
  
  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0 !important;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px) !important;
  }
  
  /* TRANSPARENT MOBILE MENU */
  .nav-links {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(58, 58, 58, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 9001 !important;
    list-style: none !important;
  }
  
  /* Open state */
  .nav-links.nav-open,
  .nav-links.active {
    height: auto !important;
    max-height: 350px !important;
    padding: 20px 0 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Navigation items */
  .nav-links li {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    text-align: center !important;
    list-style: none !important;
  }
  
  .nav-links li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    color: white !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s ease !important;
  }
  
  .nav-links li:last-child a {
    border-bottom: none !important;
    padding-bottom: 12px !important;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    background-color: rgba(247, 147, 30, 0.15) !important;
    color: #F7931E !important;
    transform: translateX(8px) !important;
  }
  
  /* Remove desktop underline effects on mobile */
  .nav-links li a::after {
    display: none !important;
  }
  
  /* Hero section mobile */
  .hero {
    padding: 40px 0 50px !important;
    background-color: var(--off-white) !important;
    min-height: auto !important;
    width: 100% !important;
    overflow: visible !important;
  }
  
  .hero .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    margin: 0 auto !important;
  }
  
  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Hero image - show first on mobile */
  .hero-image {
    order: 1 !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 200px !important;
    margin: 0 auto 20px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  }
  
  .hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  
  /* Hero content - show second on mobile */
  .hero-content {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    margin: 0 !important;
    text-align: center !important;
  }
  
  .hero-content h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    color: #3A3A3A !important;
    text-align: center !important;
    padding: 0 5px !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  .hero-content p {
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 25px !important;
    color: #5A5A5A !important;
    text-align: center !important;
    padding: 0 5px !important;
    word-wrap: break-word !important;
  }
  
  /* Hero buttons */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    position: relative !important;
    z-index: 10 !important;
  }
  
  .hero-buttons .cta-button,
  .hero a[href*="contact.html"] {
    display: block !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto 10px !important;
    padding: 14px 20px !important;
    background-color: transparent !important;
    color: #F7931E !important;
    text-decoration: none !important;
    border: 2px solid #F7931E !important;
    border-radius: 6px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    line-height: 1.2 !important;
  }
  
  .hero-buttons .cta-button:hover,
  .hero a[href*="contact.html"]:hover {
    background-color: #F7931E !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(247, 147, 30, 0.3) !important;
  }
  
  .hero-buttons .secondary-button,
  .hero a[href*="tours.php"],
  .hero a[href*="services"] {
    display: block !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto 10px !important;
    padding: 14px 20px !important;
    background-color: transparent !important;
    color: #3A3A3A !important;
    border: 2px solid #3A3A3A !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    line-height: 1.2 !important;
    margin-left: 0 !important;
  }
  
  .hero-buttons .secondary-button:hover,
  .hero a[href*="tours.php"]:hover {
    background-color: #3A3A3A !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(58, 58, 58, 0.2) !important;
  }
  
  /* Typography Adjustments */
  .section-title {
    font-size: 28px !important;
    padding: 0 15px !important;
  }
  
  .subtitle {
    font-size: 16px !important;
    padding: 0 20px !important;
  }
  
  /* Services section mobile */
  .services-section {
    padding: 60px 0 !important;
  }
  
  .services-grid {
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    padding: 0 20px !important;
  }
  
  .service-card {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto 20px !important;
    height: auto !important;
    min-height: 400px !important;
  }
  
  .service-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    background-color: var(--vibrant-orange) !important;
  }
  
  .service-icon i {
    color: white !important;
    font-size: 32px !important;
  }
  
  /* About section mobile */
  .about-section {
    padding: 60px 20px !important;
  }
  
  .about-box {
    padding: 30px 20px !important;
  }
  
  .about-content {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .about-left h2 {
    font-size: 26px !important;
  }
  
  .about-right h3 {
    font-size: 22px !important;
  }
  
  /* Partners section mobile */
  .partners-section {
    padding: 60px 20px !important;
  }
  
  .partners-grid {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .partner-logo {
    width: 80% !important;
    max-width: 200px !important;
  }
  
  /* WhatsApp button mobile */
  .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
    bottom: 20px !important;
    right: 20px !important;
  }
  
  .whatsapp-float i {
    font-size: 24px !important;
  }
  
  /* Containers */
  .container {
    padding: 0 20px !important;
  }
  
  /* Disable animations on mobile */
  .fade-in, .slide-in-left, .slide-in-right, .zoom-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px !important;
  }
  
  .hero p {
    font-size: 15px !important;
  }
  
  .section-title {
    font-size: 24px !important;
  }
  
  .subtitle {
    font-size: 15px !important;
  }
  
  .about-left h2 {
    font-size: 22px !important;
  }
  
  .about-right h3 {
    font-size: 20px !important;
  }
}

/* ========================================= 
   HIDE HERO SLIDER PROGRESS BAR
========================================= */

.slider-progress {
  display: none !important;
}

.slider-progress-inner {
  display: none !important;
}

.hero-slider-container .slider-progress,
.fullscreen-hero .slider-progress {
  display: none !important;
}

/* ========================================= 
   TOURS PAGE SPECIFIC STYLES
========================================= */

/* Service page specific styles */
.service-hero {
  padding: 80px 0 40px;
  background-color: var(--off-white);
}

.service-container {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 40px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service-icon-large {
  width: 60px;
  height: 60px;
  background-color: var(--vibrant-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.service-header h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.service-divider {
  height: 3px;
  width: 60px;
  background-color: var(--vibrant-orange);
  margin: 0 0 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-feature {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-left: 3px solid var(--vibrant-orange);
}

.service-feature:hover {
  transform: translateY(-5px);
}

.service-feature-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(247, 147, 30, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  color: var(--vibrant-orange);
  font-size: 18px;
}

.service-feature h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.service-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  max-height: 400px;
}

.service-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.hero-image-container {
  width: 100vw;
  margin: 40px 0 0;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#pano-banner {
  width: 100%;
  height: 100%;
}

/* Tours page specific sections */
.tours-overview-section {
  padding: 60px 0;
  background-color: var(--warm-beige);
}

.tours-content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.tours-text-content {
  flex: 1;
  min-width: 300px;
}

.tours-image-content {
  flex: 1;
  min-width: 300px;
}

.tours-features-section {
  padding: 60px 0;
  background-color: var(--off-white);
}

.tours-applications-section {
  padding: 30px 0 0;
  background-color: var(--warm-beige);
}

/* Stats layout */
.stats-container {
  margin-top: 40px;
  background-color: #FFF8F1;
  border-radius: 8px;
  padding: 40px 30px 50px;
  position: relative;
  overflow: hidden;
}

.stats-border {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--vibrant-orange);
}

.stats-title {
  margin-bottom: 20px;
  text-align: center;
  color: #3A3A3A;
  font-size: 28px;
  font-weight: 600;
}

.stats-subtitle {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
  color: #5A5A5A;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
}

.stat-item {
  flex: 1;
  min-width: 170px;
  padding: 0 15px;
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  color: #F7931E;
  margin-bottom: 15px;
  line-height: 1;
}

.stat-item p {
  margin: 0;
  font-size: 16px;
  color: #5A5A5A;
}

/* Portfolio section styles for tours */
.featured-tours-section {
  padding: 0 0 30px;
  margin-bottom: 0;
  background-color: var(--off-white);
}

.tours-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--cool-slate, #5A5A5A);
}

/* Portfolio grid styling */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.view-tour-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vibrant-orange, #F7931E);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.view-tour-button:hover {
  background: #E57200;
  transform: translateY(-2px);
}

.portfolio-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--graphite-grey, #3A3A3A);
}

.portfolio-info p {
  font-size: 15px;
  color: var(--cool-slate, #5A5A5A);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.portfolio-tag {
  background: rgba(247, 147, 30, 0.1);
  color: var(--vibrant-orange, #F7931E);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Hide duplicate portfolio sections */
.portfolio-section:not(.featured-tours-section),
.tour-section:not(.featured-tours-section),
.portfolio-showcase {
  display: none !important;
}

/* Mobile responsive for tours */
@media (max-width: 768px) {
  .service-header {
    flex-direction: column;
    text-align: center;
  }
  
  .service-divider {
    margin: 10px auto 20px;
  }
  
  .hero-image-container {
    height: 250px;
  }
  
  .service-image {
    max-height: 300px;
  }
  
  .service-image img {
    max-height: 300px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .tours-content-grid {
    flex-direction: column;
  }
  
  .stats-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat-item {
    min-width: auto;
  }
}

/* ========================================= 
   SERVICES PAGE SPECIFIC STYLES
========================================= */

/* Services Hero Section */
.services-hero {
  padding: 80px 0 40px;
  background-color: var(--off-white);
}

/* Services page specific grid */
.services-page .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px auto;
  max-width: 1200px;
}

.services-page .service-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-page .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services-page .service-icon {
  width: 80px;
  height: 80px;
  background-color: #F7931E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.services-page .service-icon i {
  font-size: 36px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.services-page .service-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--graphite-grey);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.services-page .service-card p {
  color: var(--cool-slate);
  margin-bottom: 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.services-page .service-features {
  text-align: left;
  margin-bottom: 30px;
  font-size: 15px;
  color: var(--cool-slate);
}

.services-page .service-feature {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.services-page .service-feature:last-child {
  border-bottom: none;
}

.services-page .learn-more-btn {
  display: inline-block;
  background-color: var(--vibrant-orange);
  color: white;
  padding: 12px 0;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s ease;
}

.services-page .learn-more-btn:hover {
  background-color: #e57200;
}

/* Services page mobile fixes */
@media (max-width: 992px) {
  .services-page .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-page .service-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  
  .services-page .service-card {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .services-page .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #F7931E;
  }
  
  .services-page .service-icon i {
    color: white;
    font-size: 32px;
  }
/* ========================================= 
   PROJECTS SECTION - SERVICES PAGE
========================================= */

/* Projects section styling */
.portfolio-preview {
  padding: 70px 0;
  background-color: var(--off-white);
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.portfolio-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  justify-items: center;
}

.portfolio-image {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  height: auto;
}

.portfolio-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

.portfolio-text {
  padding: 25px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-text h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--graphite-grey);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.portfolio-text p {
  font-size: 15px;
  color: var(--cool-slate);
  margin-bottom: 0;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 70px 0;
  text-align: center;
  background-color: white;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.get-in-touch-btn {
  display: inline-block;
  background-color: var(--vibrant-orange);
  color: white;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.get-in-touch-btn:hover {
  background-color: var(--burnt-orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(229, 114, 0, 0.3);
}

.get-in-touch-btn i {
  font-size: 16px;
}

/* Responsive adjustments for projects */
@media (max-width: 992px) {
  .portfolio-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .portfolio-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .portfolio-preview {
    padding: 50px 0;
  }
  
  .portfolio-container {
    padding: 0 20px;
  }
  
  .portfolio-images {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .portfolio-image {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .portfolio-image img {
    height: 200px;
  }
  
  .portfolio-text {
    padding: 20px 15px;
  }
  
  .portfolio-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .portfolio-text p {
    font-size: 14px;
  }
  
  .cta-section {
    padding: 50px 0;
  }
  
  .cta-container {
    padding: 0 20px;
  }
  
  .get-in-touch-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {  
  .portfolio-text h3 {
    font-size: 17px;
  }
  
  .portfolio-text p {
    font-size: 13px;
  }
  
  
}