/*-----------------------------------------------------------------------------------
    Lujojo Holdings Custom CSS - Brand Color Overrides
    Professional Engineering Color Scheme: Royal Blue, Charcoal Grey, White with Gold/Teal Accents
-----------------------------------------------------------------------------------*/

/* Import Professional Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* Lujojo Holdings Brand Colors - Updated with Correct Orange */
:root {
  /* Primary Brand Colors */
  --lujojo-orange: #e08a00;          /* Brand Orange - Primary */
  --lujojo-charcoal: #2d3748;        /* Charcoal Grey - Secondary */
  --lujojo-black: #1a202c;           /* Black for text */
  --lujojo-white: #ffffff;           /* Pure White */
  --lujojo-light-grey: #f7fafc;      /* Light Background */
  --lujojo-dark-grey: #4a5568;       /* Medium Grey */
  
  /* Override Bootstrap Variables */
  --bs-primary: #e08a00;             /* Brand Orange */
  --bs-primary-rgb: 224, 138, 0;
  --bs-secondary: #2d3748;           /* Charcoal Grey */
  --bs-secondary-rgb: 45, 55, 72;
  --bs-dark: #1a202c;                /* Black */
  --bs-dark-rgb: 26, 32, 44;
  --bs-light: #f7fafc;               /* Light Grey */
  --bs-light-rgb: 247, 250, 252;
  
  /* Typography */
  --bs-body-font-family: "Lato", "Montserrat", sans-serif;
  --bs-heading-font-family: "Montserrat", sans-serif;
  --bs-body-color: #4a5568;
  --bs-heading-color: #1a202c;
  --bs-link-color: #e08a00;
  --bs-link-hover-color: #b8710a;
}

/* Typography Updates */
body {
  font-family: var(--bs-body-font-family);
  color: var(--bs-body-color);
}

h1, h2, h3, h4, h5, h6,
.title {
  font-family: var(--bs-heading-font-family);
  color: var(--bs-heading-color);
  font-weight: 600;
}

/* Header Styling - Minimal and Visible Navbar - 10vh Height with 5vw Padding */
.header {
  background-color: var(--lujojo-white) !important;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative !important;
  z-index: 999;
  transition: all 0.3s ease;
  height: 10vh;
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw; /* 5vw padding on sides */
}

@media (max-width: 767px) {
  .header {
    padding: 0 1vw;
  }
}



/* Footer Logo - Centered and Clean */
.footer-logo-centered {
  width: 180px !important;
  max-width: 180px !important;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto; /* Center horizontally with bottom margin */
}

.footer-logo-centered img {
  width: 100% !important;
  height: auto !important;
  max-height: 50px !important;
  object-fit: contain !important;
}

/* Footer Content - Enhanced Visibility */
.footer {
  padding: 40px 0 20px 0 !important;
  background-color: #f8f9fa !important;
}

.footer-address {
  text-align: center;
  max-width: 90vw;
  margin: 0 auto 30px auto;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  gap: 2rem;
}

@media (max-width: 767px) {
  .footer-address {
    flex-direction: column;
  }
}

.office-info {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--lujojo-black);
}

.office-info strong {
  color: var(--lujojo-orange);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  margin-right: 8px;
}

.quick-contact-form {
  width: 80%;
  max-width: 600px; /* Limit max width for better readability */
  margin: 0 auto; /* Center the form */
  padding: 2rem;
  background-color: #f8f9fa; /* Light background for contrast */
  border-radius: 8px; /* Soft rounded corners */
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: Arial, sans-serif; /* Clean, professional font */
}

.quick-contact-form h3 {
  text-align: center;
  color: #333; /* Darker text for readability */
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 1rem;
  color: #555; /* Slightly lighter for hierarchy */
  font-weight: 500;
}

.form-control {
  padding: 0.75rem;
  border: 1px solid #ccc; /* Subtle border */
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

.form-control:focus {
  outline: none;
  border-color: #007bff; /* Primary color on focus */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3); /* Glow effect */
}

textarea.form-control {
  resize: vertical; /* Allow vertical resize only */
  min-height: 100px; /* Minimum height for textarea */
}


/* Responsive adjustments */
@media (max-width: 600px) {
  .quick-contact-form {
    width: 90%;
    padding: 1.5rem;
  }
}

.office-info:after {
  content: '';
  display: block;
  color: var(--lujojo-black);
  font-size: 14px;
  margin-top: 2px;
}

.f-content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.contact-info-container {
  text-align: center;
}

.contact-info, .email-info {
  margin: 15px 0;
}

.contact-info a, .email-info a {
  color: var(--lujojo-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info a:hover, .email-info a:hover {
  color: var(--lujojo-orange);
  text-decoration: underline;
}

/* Social media styles removed - no longer needed */

/* Footer Copyright - Minimal */
.footer-copyright {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

@media (max-width: 767px) {
  .footer-copyright {
    font-size: 9px;
  }
}

.footer-copyright strong {
  color: var(--lujojo-orange) !important;
  font-weight: 600 !important;
  display: inline !important;
  margin: 0 !important;
}

/* Responsive Footer */
@media (max-width: 767px) {
  .footer-logo-centered {
    width: 150px !important;
    max-width: 150px !important;
  }
  
  .footer-logo-centered img {
    max-height: 40px !important;
  }
  
  .footer-address {
    padding: 20px 15px;
    margin: 0 15px 20px 15px;
  }
  
  .office-info strong {
    font-size: 14px;
  }
  
  .contact-info a, .email-info a {
    font-size: 14px;
  }
  
  .footer-copyright {
    font-size: 12px;
    padding: 0 15px;
  }
}

.header-wrapper, .header-sticky, .container-fluid {
  width: 100% !important;
  height: 100% !important;
}

.header-wrapper .container-fluid { 
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .header-wrapper .container-fluid {
    padding: 0 1vw;
  }
}

.header-wrapper .container-fluid .row { 
  width: 100% !important;
  display: flex;
  align-items: s;
  justify-content: space-between;
}


.header.header-transparent-bg {
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Body styling - no padding needed for static header */
body {
  padding-top: 0;
}


/* Logo Styling - Adjust for 10vh header */
.header .logo img,
.header-logo img {
  max-height: 35px; /* Reduced from 45px to 35px */
  width: auto;
}

@media screen and (max-width: 767px) {
  .header-logo {
    width: 100px;
    height: 100px;
  }
}

/* Minimal Navigation Menu - Right Aligned */
.main-menu-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-menu ul {
  display: flex;
  align-items: center;
  gap: 30px; /* Reduced from 40px to 30px for tighter spacing */
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  color: var(--lujojo-black) !important;
  font-weight: 500;
  font-size: 0.8rem; /* Scale with header height */
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  line-height: 3;
  border-bottom: 2px solid transparent;
  display: block;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
  color: var(--lujojo-orange) !important;
  border-bottom-color: var(--lujojo-orange);
}

/* Override theme's menu styles */
.main-menu-white ul li a {
  color: var(--lujojo-black) !important;
}

.main-menu-white ul li a:hover {
  color: var(--lujojo-orange) !important;
}

/* Mobile Menu Toggle - Updated for smaller header */
.mobile-menu-hamburger a {
  color: var(--lujojo-black) !important;
  font-size: 20px; /* Reduced from 24px */
  padding: 5px; /* Reduced padding */
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.mobile-menu-hamburger a:hover {
  color: var(--lujojo-orange) !important;
}

.mobile-menu-hamburger a span {
  font-size: 12px; /* Smaller text */
  font-weight: 500;
}

.mobile-menu-hamburger a i {
  font-size: 18px; /* Smaller icon */
}

/* Mobile Menu Toggle - Updated for smaller header */

/* Button Styling - Updated with Orange Brand Color */
.btn-primary {
  background-color: var(--lujojo-orange);
  border-color: var(--lujojo-orange);
  color: var(--lujojo-white);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #b8710a;
  border-color: #b8710a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 138, 0, 0.3);
}

.btn-secondary {
  background-color: var(--lujojo-charcoal);
  border-color: var(--lujojo-charcoal);
  color: var(--lujojo-white);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-primary {
  color: var(--lujojo-orange);
  border-color: var(--lujojo-orange);
  background-color: transparent;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--lujojo-orange);
  border-color: var(--lujojo-orange);
  color: var(--lujojo-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 138, 0, 0.3);
}

/* Service Block Styling */
.service-block {
  background-color: var(--lujojo-white);
  border: 1px solid var(--lujojo-light-grey);
  transition: all 0.3s ease;
}

.service-block:hover {
  border-color: var(--lujojo-royal-blue);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
  transform: translateY(-5px);
}

.service-block .icon {
  color: var(--lujojo-royal-blue);
}

.service-block:hover .icon {
  color: var(--lujojo-gold);
}

/* Section Titles */
.section-title .title {
  color: var(--lujojo-dark-grey);
  position: relative;
}

.section-title .subtitle {
  color: var(--lujojo-dark-grey);
  position: relative;
}

.section-title .title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--lujojo-royal-blue), var(--lujojo-teal));
}

/* Hero Section - Updated Design with White Background and Hexagon Mask - Full Height */
.hero-section-modern {
  background-color: var(--lujojo-white);
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 20px; /* Base padding for all screens */
}

.hero-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/general/architect-workplace-top-view-2024-12-07-14-51-27-utc-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px; /* Maximum width for very large screens */
  margin: 0 auto; /* Center the content */
}

/* Ensure Bootstrap container works well with our centering */
.hero-section-modern .container {
  max-width: 75vw;
  padding: 0;
}

.hero-text-content {
  padding: 60px 0;
}

.hero-text-content .subtitle {
  color: var(--lujojo-orange); /* Correct brand orange */
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text-content .title {
  color: var(--lujojo-black); /* Black for text */
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text-content .description {
  color: #4a5568;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btn {
  background-color: var(--lujojo-orange);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #b8710a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 138, 0, 0.3);
}

/* Hexagon Image Mask */
.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .hero-image-wrapper {
    padding: 0;
  }
}

.hexagon-image {
  width: 600px;
  height: 600px;
  position: relative;
  margin-right: 50px;
}

.hexagon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon-stroke {
  position: absolute;
  left: 25px;
  top: 70%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
}

.hexagon-stroke svg {
  width: 100%;
  height: 100%;
}

.hexagon-stroke svg polygon {
  fill: none;
  stroke: var(--lujojo-orange);
  stroke-width: 2;
  opacity: 0.7;
}

/* Large Screen Optimizations */
@media (min-width: 1400px) {
  .hero-section-modern {
    padding: 0 60px; /* More padding for very large screens */
  }
  
  .hero-content-wrapper {
    max-width: 1600px; /* Even wider for ultra-wide screens */
  }
}

@media (min-width: 1200px) {
  .hero-section-modern {
    padding: 0 40px; /* Good padding for large screens */
  }
}

/* Medium to Large Screens */
@media (min-width: 993px) and (max-width: 1199px) {
  .hero-section-modern {
    padding: 0 30px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section-modern {
    height: auto;
    min-height: 100vh;
    padding: 80px 20px; /* Keep base padding for tablets */
  }
  
  .hero-text-content .title {
    font-size: 36px;
  }
  
  .hero-image-wrapper {
    margin-top: 30px;
  }
  
  .hexagon-image {
    width: 300px;
    height: 300px;
    margin-right: 30px;
  }
  
  .hexagon-stroke {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hero-section-modern {
    height: auto;
    min-height: 100vh;
    padding: 60px 15px; /* Proper padding for mobile */
  }
  
  .hero-text-content .title {
    font-size: 28px;
  }
  
  .hero-text-content .description {
    font-size: 16px;
  }
  
  .hexagon-image {
    width: 250px;
    height: 250px;
    margin-right: 20px;
  }
  
  .hexagon-stroke {
    width: 150px;
    height: 150px;
    right: -15px;
  }
}

/* Legacy Hero Section (commented out for reference) */
/*
.hero-slide-content {
  color: var(--lujojo-white);
}

.hero-slide-content .title {
  color: var(--lujojo-white);
  font-weight: 700;
}

.hero-slide-content .subtitle {
  color: var(--lujojo-gold);
  font-weight: 500;
}
*/

/* Funfact Counter */
.single-funfact {
  text-align: center;
  padding: 30px 20px;
}

.single-funfact .odometer {
  color: var(--lujojo-royal-blue);
  font-size: 3rem;
  font-weight: 700;
}

.single-funfact .title {
  color: var(--lujojo-charcoal);
  font-size: 1rem;
  margin-top: 10px;
}

/* Client Section */
.client-content .name a {
  color: var(--lujojo-royal-blue);
  font-weight: 600;
}

.client-thumb-icon .icon {
  color: var(--lujojo-gold);
}

/* Footer */
footer {
  background-color: var(--lujojo-charcoal);
  color: var(--lujojo-white);
}

footer .footer-nav a {
  color: var(--lujojo-white);
}

footer .footer-nav a:hover {
  color: var(--lujojo-gold);
}

.footer-social-icons a {
  color: var(--lujojo-white);
  background-color: var(--lujojo-royal-blue);
}

.footer-social-icons a:hover {
  background-color: var(--lujojo-gold);
}

/* Project Tab */
.tabs-header-nav .nav-link {
  color: var(--lujojo-charcoal);
  border: none;
  font-weight: 500;
}

.tabs-header-nav .nav-link.active,
.tabs-header-nav .nav-link:hover {
  color: var(--lujojo-royal-blue);
  border-bottom: 2px solid var(--lujojo-royal-blue);
}

/* Brand Logo Carousel */
.brand-logo-carousel .single-brand-logo {
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.brand-logo-carousel .single-brand-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Contact Form */
.form-control {
  border-color: var(--lujojo-light-grey);
  color: var(--lujojo-charcoal);
}

.form-control:focus {
  border-color: var(--lujojo-royal-blue);
  box-shadow: 0 0 0 0.25rem rgba(30, 58, 138, 0.25);
}

/* Professional Certifications */
.certifications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.certification-badge {
  background: linear-gradient(135deg, var(--lujojo-royal-blue), var(--lujojo-teal));
  color: var(--lujojo-white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Engineering Services Grid */
.engineering-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: var(--lujojo-white);
  border: 1px solid var(--lujojo-light-grey);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lujojo-royal-blue), var(--lujojo-teal));
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--lujojo-royal-blue), var(--lujojo-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lujojo-white);
  font-size: 1.5rem;
}

.service-card .service-title {
  color: var(--lujojo-dark-grey);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card .service-description {
  color: var(--lujojo-charcoal);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .engineering-services {
    grid-template-columns: 1fr;
  }
  
  .certifications-list {
    justify-content: flex-start;
  }
  
  .single-funfact .odometer {
    font-size: 2.5rem;
  }
}

/* About Us Section - Minimalistic Design */

/* Wavy Circular Image Clipping */
.about-image-wavy {
  position: relative;
  height: 100%;
  min-height: 700px;
  margin-left: -50px; /* Extend towards left edge */
}

.about-image-wavy .fit-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}



/* About Content - Clean & Minimal */
.about-content {
  padding-left: 40px;
}

.about-header .title {
  font-size: 32px;
  font-weight: 700;
  color: var(--lujojo-black);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.headline .subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--lujojo-orange);
  margin-bottom: 25px;
  line-height: 1.4;
  font-style: italic;
}

.content-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.highlights {
  margin-top: 30px;
}

.highlights h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--lujojo-black);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-list li {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.highlights-list li::before {
  content: '•';
  color: var(--lujojo-orange);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-image-wavy {
    min-height: 400px;
    margin-left: -30px;
    margin-bottom: 40px;
  }
  
  .about-content {
    padding-left: 20px;
  }
  
  .about-header .title {
    font-size: 28px;
  }
  
  .headline .subtitle {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .about-image-wavy {
    min-height: 300px;
    margin-left: -20px;
  }
  
  .about-image-wavy .fit-image {
    width: 110%;
    clip-path: circle(65% at 25% 50%);
  }
  
  .about-content {
    padding-left: 15px;
  }
  
  .about-header .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .headline .subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .content-text p {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .highlights {
    margin-top: 25px;
  }
  
  .highlights h5 {
    font-size: 14px;
  }
  
  .highlights-list li {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

/* Interactive Services Section */
.interactive-service {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.interactive-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(224, 138, 0, 0.2);
}

.service-hover-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(224, 138, 0, 0.95);
  color: var(--lujojo-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.interactive-service:hover .service-hover-indicator {
  opacity: 1;
  visibility: visible;
}

.service-hover-indicator i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.service-hover-indicator span {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Service Modal */
.service-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.service-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--lujojo-white);
  margin: 20px;
  padding: 0;
  border-radius: 15px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.modal-header {
  background: linear-gradient(135deg, var(--lujojo-orange) 0%, #ff8c42 100%);
  color: var(--lujojo-white);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--lujojo-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-body h3 {
  color: var(--lujojo-orange);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.modal-body h4 {
  color: var(--lujojo-black);
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.modal-body ul {
  list-style: none;
  padding: 0;
}

.modal-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.modal-body ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lujojo-orange);
  font-weight: bold;
}

/* Retainer Fees Section */
.pricing-structure {
  padding: 20px 0;
}

.retainer-options {
  margin-bottom: 50px;
}

.retainer-card {
  background: var(--lujojo-white);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.retainer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(224, 138, 0, 0.15);
  border-color: var(--lujojo-orange);
}

.retainer-card.featured {
  border-color: var(--lujojo-orange);
  transform: scale(1.05);
}

.retainer-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.retainer-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lujojo-orange);
  color: var(--lujojo-white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.retainer-header h3 {
  color: var(--lujojo-black);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.retainer-price {
  margin-bottom: 25px;
}

.retainer-price .currency {
  font-size: 1.2rem;
  color: var(--lujojo-orange);
  font-weight: 600;
  line-height: 1; /* Ensures consistent line height */
}

.retainer-price .amount {
  font-size: 2.5rem;
  color: var(--lujojo-orange);
  font-weight: 700;
  line-height: 1;
}

.retainer-price .percentage {
  font-size: 2.5rem;
  color: var(--lujojo-orange);
  font-weight: 700;
  line-height: 1;
}

.retainer-price .period {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Mobile-specific adjustments */
@media (max-width: 600px) {
  .retainer-price {
    flex-wrap: nowrap; /* Explicitly prevent wrapping */
    gap: 0.2rem; /* Slightly smaller gap for mobile */
  }

  .retainer-price .currency {
    font-size: 1rem; /* Slightly smaller for mobile */
  }

  .retainer-price .amount {
    font-size: 2rem; /* Adjust font size for mobile */
  }

  .retainer-price .period {
    font-size: 0.9rem; /* Slightly smaller for mobile */
  }
}

.retainer-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.retainer-features ul li {
  padding: 10px 0;
  color: var(--lujojo-black);
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.retainer-features ul li:last-child {
  border-bottom: none;
}

.retainer-features ul li i {
  color: var(--lujojo-orange);
  margin-right: 10px;
  font-size: 16px;
}

.retainer-note {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.retainer-note small {
  color: #666;
  font-style: italic;
}

/* Fee Structure Information */
.fee-structure-info {
  margin-top: 40px;
}

.fee-info-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  height: 100%;
  border-left: 4px solid var(--lujojo-orange);
}

.fee-info-card h4 {
  color: var(--lujojo-black);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.fee-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fee-info-card ul li {
  padding: 8px 0;
  color: var(--lujojo-black);
  font-size: 14px;
  border-bottom: 1px solid #e9ecef;
}

.fee-info-card ul li:last-child {
  border-bottom: none;
}

.fee-info-card ul li strong {
  color: var(--lujojo-orange);
  font-weight: 600;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

.smooth-scroll {
  transition: all 0.3s ease;
}

/* Section padding for navigation offset */
section[id], div[id] {
  scroll-margin-top: 80px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    margin: 10px;
    width: 95%;
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 20px;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .retainer-card {
    margin-bottom: 20px;
  }
  
  .retainer-price .amount,
  .retainer-price .percentage {
    font-size: 2rem;
  }
  
  .fee-info-card {
    margin-bottom: 20px;
  }
  
  section[id], div[id] {
    scroll-margin-top: 60px;
  }
}

@media (max-width: 576px) {
  .retainer-card {
    padding: 20px 15px;
  }
  
  .retainer-price .amount,
  .retainer-price .percentage {
    font-size: 1.8rem;
  }
  
  .modal-header h2 {
    font-size: 1.3rem;
  }
}

/* Modern Services Section Styling */
.service-card-modern {
  background: var(--lujojo-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 40px rgba(224, 138, 0, 0.15);
}

.service-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.service-card-modern:hover .service-image {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(224, 138, 0, 0.8), rgba(224, 138, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card-modern:hover .service-overlay {
  opacity: 1;
}

.service-overlay .service-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.service-card-modern:hover .service-overlay .service-icon {
  transform: scale(1) rotate(360deg);
}

.service-overlay .service-icon i {
  font-size: 32px;
  color: var(--lujojo-white);
}

.service-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content .service-title {
  color: var(--lujojo-dark);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.service-content .service-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--lujojo-orange);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.service-card-modern:hover .service-content .service-title::after {
  width: 60px;
}

.service-content .service-description {
  color: var(--lujojo-text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Services Grid */
.services-grid {
  margin-top: 40px;
}

/* Brand Color Accents */
.service-card-modern {
  border-top: 4px solid transparent;
  transition: all 0.4s ease;
}

.service-card-modern:hover {
  border-top-color: var(--lujojo-orange);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .service-card-modern:hover {
    transform: translateY(-4px) rotate(0.5deg);
  }
  
  .service-image-container {
    height: 180px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .service-content .service-title {
    font-size: 18px;
  }
  
  .service-content .service-description {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .service-image-container {
    height: 160px;
  }
  
  .service-content {
    padding: 15px;
  }
  
  .service-overlay .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-overlay .service-icon i {
    font-size: 24px;
  }
}

/* Updated Retainer Section Styling */
.retainer-price .from {
  font-size: 14px;
  color: var(--lujojo-text);
  margin-right: 5px;
}

.project-scope {
  font-size: 13px;
  color: var(--lujojo-text);
  margin-top: 8px;
  margin-bottom: 0;
}

/* Value Adds Section */
.value-adds-section {
  margin-top: 40px;
  padding: 30px;
  background: rgba(224, 138, 0, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(224, 138, 0, 0.1);
}

.value-adds-title {
  color: var(--lujojo-dark);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.value-add-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.value-add-item i {
  font-size: 24px;
  color: var(--lujojo-orange);
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.value-add-content h4 {
  color: var(--lujojo-dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.value-add-content p {
  color: var(--lujojo-text);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Download Section */
.download-packages-section {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, var(--lujojo-orange), #f0a500);
  border-radius: 12px;
  color: var(--lujojo-white);
}

.download-container h3 {
  color: var(--lujojo-white);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.download-container p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 25px;
}

.download-btn {
  background: var(--lujojo-white);
  color: var(--lujojo-orange);
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--lujojo-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.download-btn i {
  font-size: 18px;
}

/* CTA Section */
.pricing-cta-section {
  margin-top: 40px;
  text-align: center;
}

.pricing-cta-container h3 {
  color: var(--lujojo-dark);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-cta-container p {
  color: var(--lujojo-text);
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: var(--lujojo-orange);
  border-color: var(--lujojo-orange);
}

.cta-buttons .btn-primary:hover {
  background: #c07700;
  border-color: #c07700;
  transform: translateY(-2px);
}

.cta-buttons .btn-outline-primary {
  color: var(--lujojo-orange);
  border-color: var(--lujojo-orange);
  background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
  background: var(--lujojo-orange);
  border-color: var(--lujojo-orange);
  color: var(--lujojo-white);
  transform: translateY(-2px);
}

/* Remove Sticky Header */
.header-sticky {
  position: static !important;
}

.logo-mobile {
  width: 150px;
}

.header-area {
  width: 100%;
  height: 100%;
  position: static !important;
}

/* Mobile/iPad Responsive Improvements */
@media (max-width: 1024px) {
  .value-adds-section {
    padding: 25px 20px;
  }
  
  .download-packages-section {
    padding: 25px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .value-adds-title {
    font-size: 20px;
  }
  
  .value-add-item {
    margin-bottom: 15px;
  }
  
  .value-add-item i {
    font-size: 20px;
    margin-right: 12px;
  }
  
  .value-add-content h4 {
    font-size: 15px;
  }
  
  .value-add-content p {
    font-size: 13px;
  }
  
  .download-container h3 {
    font-size: 20px;
  }
  
  .download-container p {
    font-size: 14px;
  }
  
  .download-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .pricing-cta-container h3 {
    font-size: 24px;
  }
  
  .pricing-cta-container p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .value-adds-section {
    padding: 20px 15px;
  }
  
  .download-packages-section {
    padding: 20px 15px;
  }
  
  .retainer-price {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .retainer-price .from,
  .retainer-price .currency,
  .retainer-price .amount,
  .retainer-price .period {
    display: block;
    margin: 0;
  }
  
  .retainer-price .amount {
    font-size: 32px;
    margin: 5px 0;
  }
}