:root {
  --primary-black: #1a1a1a;
  --primary-black-rgb: 26, 26, 26;
  --accent-gold: #d4af37;
  --accent-gold-rgb: 212, 175, 55;
  --rich-bronze: #a67c00;
  --rich-bronze-rgb: 166, 124, 0;
  --cream-beige: #f5f0e1;
  --text-light: #fdfdfd;
  --text-dark: #2b2b2b;
  --highlight-cta: #ffd700;
  --highlight-cta-rgb: 255, 215, 0;
  --light-gray: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--cream-beige);
  overflow-x: hidden;
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary-black);
  line-height: 1.3;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & Navigation */
header#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background-color 0.4s ease-in-out, padding 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
header#main-header.scrolled {
  background-color: rgba(var(--primary-black-rgb), 0.97);
  padding: 8px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: padding 0.3s ease;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 50px;
  transition: height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.4s ease;
}
.logo:hover img {
    transform: scale(1.05);
}
header#main-header.scrolled .logo img {
  height: 40px;
}
.logo-text {
  margin-left: 10px;
  color: var(--text-light);
}
.logo-text h1 {
  font-size: 1.6rem;
  margin-bottom: 0;
  color: var(--text-light);
  font-weight: 800;
}
.logo-text span {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: block;
  margin-top: -2px;
}
.nav-toggle {
  display: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 8px 5px; /* Adjusted padding */
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease, transform 0.2s ease;
}
nav ul li a:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}
nav ul li a.active {
  color: var(--accent-gold);
}
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px; /* Slightly thicker */
  border-radius: 1px;
  background-color: var(--accent-gold);
  transition: width 0.3s cubic-bezier(0.65, 0.05, 0.36, 1), background-color 0.3s ease;
}
nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
  background-color: var(--highlight-cta); /* Brighter underline */
}
.nav-icon-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
nav ul li a:hover .nav-icon-custom {
    transform: rotate(10deg);
}
.custom-nav-icon-img {
    height: 16px;
    width: auto;
    vertical-align: middle;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--highlight-cta);
  color: var(--primary-black);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  border: 2px solid var(--highlight-cta);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s ease-out;
  box-shadow: 0 2px 5px rgba(var(--primary-black-rgb), 0.15),
              0 0 0 0 rgba(var(--highlight-cta-rgb), 0.7); /* For pulse */
}
.cta-button:hover {
  background-color: var(--accent-gold);
  color: var(--primary-black);
  border-color: var(--accent-gold);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 18px rgba(var(--accent-gold-rgb), 0.35),
              0 0 0 10px rgba(var(--highlight-cta-rgb), 0); /* Pulse effect */
}
.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 3px 10px rgba(var(--accent-gold-rgb), 0.25);
}
.cta-button .ripple { /* JS needed to add this span on click */
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-animation { to { transform: scale(4); opacity: 0; } }

.cta-button.outline {
  background-color: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}
.cta-button.outline:hover {
  background-color: var(--accent-gold);
  color: var(--primary-black);
}
.cta-button.whatsapp {
  background-color: #25d366;
  color: white;
  border-color: #25d366;
}
.cta-button.whatsapp:hover {
  background-color: #1ebe57;
  border-color: #1ebe57;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4),
              0 0 0 10px rgba(37, 211, 102, 0);
}
.cta-button i {
  margin-right: 8px;
}

/* Hero Section & Animations */
section.hero {
  background-color: var(--primary-black);
  color: var(--text-light);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
  margin-top: -80px;
}
section.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient( circle at center, rgba(40, 35, 15, 0.3) 0%, var(--primary-black) 70% );
  background-color: var(--primary-black);
  opacity: 1; z-index: 0;
  transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
  transition: transform 0.2s ease-out, opacity 0.5s ease-in-out;
  animation: subtleHeroBg 60s linear infinite alternate;
}
@keyframes subtleHeroBg {0% {} 100% {}}
#home .particles-js-canvas-el {
  position: absolute; top: 0; left: 0;
  width: 100% !important; height: 100% !important; z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-logo-main { max-width: 150px; margin: 0 auto 30px; }
section.hero h1 {
  font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2;
  color: var(--text-light); font-weight: 800;
  text-shadow: 0px 2px 8px rgba(var(--primary-black-rgb), 0.3);
}
section.hero h1 span {
  color: var(--accent-gold);
  text-shadow: 0px 1px 2px rgba(var(--primary-black-rgb), 0.3);
  display: inline-block;
  animation: goldShine 3s infinite alternate ease-in-out;
}
@keyframes goldShine {
  0% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.85; transform: scale(1); }
}
section.hero .tagline {
  font-size: 1.5rem; max-width: 750px; margin: 0 auto 40px;
  font-family: "Roboto", sans-serif; font-weight: 300; color: var(--light-gray);
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
}
.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.hero-buttons .cta-button { padding: 15px 30px; font-size: 1rem; }

.animated-element {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1),
              transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hero-logo-main.animated-element { transition-delay: 0.2s; }
section.hero h1.animated-element { transition-delay: 0.4s; }
section.hero .tagline.animated-element { transition-delay: 0.6s; }
.hero-buttons.animated-element { transition-delay: 0.8s; }

.animated-element[data-animation="fade-in"] {}
.animated-element[data-animation="slide-up"] { transform: translateY(50px); }
.animated-element[data-animation="slide-in-left"] { transform: translateX(-50px); }
.animated-element[data-animation="slide-in-right"] { transform: translateX(50px); }
.animate-now {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) !important;
}

/* Generic Section Styling */
main section { padding: 100px 0; }
main section:first-child { padding-top: 0; padding-bottom: 0; }

/* Backgrounds for specific sections */
main section#order,
main section.quick-order,
.additional-services-section,
.trust-elements-redesigned,
.faq-section-styled,
.home-quick-order
 { background-color: var(--cream-beige); }

main section#about,
main section#services-page,
main section#pricing,
main section#contact,
.home-services,
.key-pillars-section
{ background-color: #fff; }

main section.testimonials,
.google-review-style-testimonials,
main section.stats,
#about .stats
{
  background-color: var(--primary-black);
  color: var(--text-light);
  position: relative;
}

/* Pattern for dark sections */
main section.testimonials::before,
main section.stats::before,
.google-review-style-testimonials::before,
#about .stats::before
{
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 3.314-2.686 6-6 6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5; z-index: 0;
}
#about .stats::before {
    opacity: 0.8;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 3.314-2.686 6-6 6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Titles in dark sections */
main section.testimonials .section-title h2,
.google-review-style-testimonials .section-title h2,
main section.stats .section-title h2,
#about .stats .section-title h2
 { color: var(--text-light); }
main section.testimonials .section-title h2::after,
.google-review-style-testimonials .section-title h2::after,
main section.stats .section-title h2::after,
#about .stats .section-title h2::after
{ background-color: var(--highlight-cta); }
main section.testimonials .section-title p.subtitle,
.google-review-style-testimonials .section-title p.subtitle,
main section.stats .section-title p.subtitle,
#about .stats .section-title p.subtitle
{ color: var(--light-gray); }

/* Section Title */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
  font-size: 2.8rem; position: relative; display: inline-block;
  padding-bottom: 20px; margin-bottom: 15px; letter-spacing: 0.8px;
  text-shadow: 1px 1px 2px rgba(var(--primary-black-rgb), 0.05);
}
.section-title h2::after {
  content: ""; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 90px; height: 3.5px;
  background-color: var(--accent-gold); border-radius: 1px;
  transition: width 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.section-title:hover h2::after { width: 120px; }
.section-title p.subtitle {
  font-size: 1.1rem; color: var(--text-dark); max-width: 700px; margin: 0 auto; opacity: 0.9;
}

/* Service Card */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}
.service-card {
  background-color: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 25px rgba(var(--primary-black-rgb), 0.07);
  text-align: center; padding: 30px 25px; border: 1px solid #e8e8e8;
  display: flex; flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(var(--primary-black-rgb), 0.15);
  border-color: var(--accent-gold);
}
.service-icon-modern { /* Primary icon style */
  display: flex; align-items: center; justify-content: center;
  width: 70px; height: 70px; background-color: var(--accent-gold);
  color: var(--primary-black); border-radius: 50%; margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(var(--accent-gold-rgb), 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.service-card:hover .service-icon-modern {
  background-color: var(--primary-black); color: var(--accent-gold);
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 6px 15px rgba(var(--primary-black-rgb), 0.4);
}
.service-icon-modern i { font-size: 2rem; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; transition: color 0.3s ease;}
.service-card:hover h3 { color: var(--rich-bronze); }
.service-card p {
  font-size: 0.9rem; margin-bottom: 25px; color: #555; line-height: 1.6; flex-grow: 1;
}
.service-card .cta-button.outline { color: var(--rich-bronze); border-color: var(--rich-bronze); }
.service-card .cta-button.outline:hover { background-color: var(--rich-bronze); color: var(--text-light); }
.service-card .cta-button.outline.small-cta {
  padding: 8px 20px; font-size: 0.8rem; margin-top: auto; border-radius: 20px;
  transition: all 0.3s ease;
}
.service-card .cta-button.outline.small-cta:hover {
  background-color: var(--rich-bronze); color: var(--text-light); letter-spacing: 0.5px;
}
.home-services .section-title { margin-bottom: 50px; } /* Specific for home */
.view-all-services-link { text-align: center; margin-top: 50px; }
.view-all-services-link .cta-button i { margin-left: 8px; transition: transform 0.3s ease; }
.view-all-services-link .cta-button:hover i { transform: translateX(5px); }


/* Trust Elements (Redesigned) */
.trust-elements-redesigned { padding: 80px 0; }
.trust-elements-redesigned .section-title { margin-bottom: 50px; }
.trust-grid-redesigned {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px; margin-top: 50px;
}
.trust-item-redesigned {
  background-color: #fff; padding: 25px; border-radius: 8px;
  box-shadow: 0 6px 20px rgba(var(--primary-black-rgb), 0.05);
  display: flex; align-items: flex-start; gap: 20px;
  border-left: 4px solid transparent;
  transition: border-left-color 0.3s ease, transform 0.3s ease;
}
.trust-item-redesigned:hover { border-left-color: var(--accent-gold); transform: translateX(5px); }
.trust-item-icon-bg {
  flex-shrink: 0; width: 50px; height: 50px;
  background-color: rgba(var(--accent-gold-rgb), 0.1); color: var(--accent-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.trust-item-content h3 { font-size: 1.25rem; margin-bottom: 8px; font-weight: 600; }
.trust-item-content p { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* Testimonials Slider Wrapper (Common) */
.testimonials-slider-wrapper { position: relative; max-width: 850px; margin: 50px auto 0; z-index: 1; }
.testimonials-slider { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-slide { min-width: 100%; padding: 10px; box-sizing: border-box; }
.testimonial-slide:hover .gr-style-testimonial-card { /* For Google style cards */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1), 0 3px 8px rgba(0,0,0,0.18);
}
.testimonial-slide:hover .gr-style-avatar img { transform: scale(1.1); }


/* Original Testimonial Card Style */
.testimonial-content {
  background-color: rgba(255, 255, 255, 0.03); border-radius: 8px; padding: 35px;
  position: relative; border: 1px solid rgba(var(--accent-gold-rgb), 0.25);
}
.testimonial-content::before {
  content: "\f10d"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 20px; left: 25px; font-size: 3rem;
  color: var(--accent-gold); opacity: 0.6; line-height: 1;
}
.testimonial-rating { margin-bottom: 15px; color: var(--highlight-cta); font-size: 1rem; }
.testimonial-rating i { margin-right: 2px; }
.testimonial-text {
  margin-bottom: 25px; font-style: italic; position: relative; z-index: 1;
  padding-left: 30px; font-size: 1rem; line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; padding-left: 30px; }
.author-avatar {
  width: 60px; height: 60px; border-radius: 50%; overflow: hidden;
  margin-right: 20px; border: 3px solid var(--accent-gold);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border: 2px solid var(--text-light); }
.author-info h4 { margin-bottom: 5px; font-size: 1.2rem; color: var(--text-light); }
.author-info span { font-size: 0.9rem; color: var(--accent-gold); font-family: "Roboto", sans-serif; }

/* Testimonials (Google Review Style) */
.google-review-style-testimonials .testimonials-slider-wrapper { max-width: 700px; }
.gr-style-testimonial-card {
    background-color: #fff; color: #202124; border-radius: 8px; padding: 20px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    font-family: 'Roboto', 'Arial', sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.gr-style-header { display: flex; align-items: center; margin-bottom: 8px; }
.gr-style-avatar {
    width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
    margin-right: 12px; background-color: #e0e0e0;
}
.gr-style-avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;}
.gr-style-author-info { flex-grow: 1; }
.gr-style-author-name {
    font-size: 0.95rem; font-weight: 500; color: #202124;
    margin: 0; font-family: 'Roboto', sans-serif;
}
.gr-style-review-source { font-size: 0.8rem; color: #5f6368; display: block; line-height: 1.4; }
.gr-style-google-logo { width: 24px; height: 24px; margin-left: auto; }
.gr-style-google-logo img { width: 100%; height: auto; }
.gr-style-rating-date { display: flex; align-items: center; margin-bottom: 10px; }
.gr-style-stars { color: #FFB300; font-size: 0.9rem; margin-right: 8px; }
.gr-style-stars i { margin-right: 1px; }
.gr-style-date { font-size: 0.8rem; color: #5f6368; }
.gr-style-review-text p { font-size: 0.9rem; line-height: 1.55; color: #3c4043; margin: 0; }

/* Testimonial Controls (Shared) */
.testimonial-controls { display: flex; justify-content: center; margin-top: 30px; gap: 15px; }
.testimonial-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background-color: rgba(var(--primary-black-rgb), 0.3);
  border: 1px solid rgba(var(--accent-gold-rgb), 0.4);
  color: var(--accent-gold); font-size: 0.9rem; cursor: pointer;
  transition: all 0.3s ease; display: flex; align-items: center; justify-content: center;
}
.testimonial-btn:hover { background-color: var(--accent-gold); color: var(--primary-black); border-color: var(--accent-gold); }
.testimonial-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.testimonial-indicators { display: flex; justify-content: center; margin-top: 20px; gap: 10px; }
.indicator {
  width: 10px; height: 10px; border-radius: 50%;
  background-color: rgba(var(--accent-gold-rgb), 0.3); cursor: pointer; transition: all 0.3s ease;
}
.indicator.active { background-color: var(--highlight-cta); transform: scale(1.3); }


/* Quick Order / Benefits Section (Generic & Home) */
.quick-order-content { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 50px; }
.quick-order-text { flex: 1; min-width: 300px; }
.quick-order-text h2 {
  font-size: 2.8rem; margin-bottom: 15px; text-align: left;
  position: relative; display: inline-block; padding-bottom: 20px; letter-spacing: 0.5px;
}
.quick-order-text h2::after {
  content: ""; position: absolute; bottom: 0; left: 0; transform: translateX(0);
  width: 90px; height: 3px; background-color: var(--accent-gold); border-radius: 1.5px;
}
.home-quick-order .quick-order-text .alternate-title-style {
  font-size: 2.5rem; text-align: left; padding-bottom: 0; margin-bottom: 20px;
}
.home-quick-order .quick-order-text .alternate-title-style::after { display: none; }
.quick-order-text > p { margin-bottom: 30px; font-size: 1.1rem; line-height: 1.8; margin-top: 15px; }
.benefits-list { margin: 30px 0; } /* Original benefits list */
.benefit-item { display: flex; align-items: flex-start; margin-bottom: 20px; }
.benefit-icon {
  color: var(--accent-gold); font-size: 1.4rem; margin-right: 15px;
  margin-top: 5px; width: 25px; text-align: center;
}
.benefit-text h4 { font-size: 1.3rem; margin-bottom: 8px; }
.benefit-text p { font-size: 0.95rem; margin-bottom: 0; color: #555; }
.home-quick-order .benefits-list-columns { /* Column layout for home */
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; margin: 30px 0;
}
.home-quick-order .benefits-list-columns .benefit-item {
  display: flex; align-items: center; gap: 15px; padding: 15px;
  background-color: var(--cream-beige); border-radius: 8px; margin-bottom: 0;
}
.home-quick-order .benefits-list-columns .benefit-icon i {
  font-size: 1.8rem; color: var(--accent-gold); width: 30px; text-align: center; margin: 0;
}
.home-quick-order .benefits-list-columns .benefit-text h4 { font-size: 1.1rem; margin-bottom: 5px; }
.home-quick-order .benefits-list-columns .benefit-text p { font-size: 0.85rem; color: #666; }
.home-quick-order .quick-order-text .cta-button.large-cta { padding: 14px 30px; font-size: 1.05rem; }

/* Quick Order Form (Generic & Home) */
.quick-order-form-container {
  flex: 1; min-width: 300px; background-color: #fff; padding: 40px;
  border-radius: 8px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.form-title { text-align: center; margin-bottom: 30px; }
.form-title h3 { font-size: 1.8rem; margin-bottom: 10px; }
.home-quick-order .quick-order-form-container .form-title h3 { font-size: 1.6rem; }
.form-title p { color: var(--text-dark); font-size: 0.95rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; margin-bottom: 8px; font-weight: 500;
  color: var(--primary-black); font-size: 0.9rem;
  transition: color 0.3s ease;
}
.form-group:focus-within label { color: var(--accent-gold); }
.required-asterisk { color: red; margin-left: 2px; font-weight: bold; }
.form-control {
  width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px;
  font-size: 1rem; font-family: "Roboto", sans-serif;
  transition: all 0.3s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  background-color: #f9f9f9;
  box-shadow: inset 0 1px 3px rgba(var(--primary-black-rgb), 0.06);
}
.form-control:focus {
  border-color: var(--accent-gold); outline: none;
  box-shadow: 0 0 0 3.5px rgba(var(--accent-gold-rgb), 0.25),
              inset 0 1px 2px rgba(var(--primary-black-rgb), 0.03);
  background-color: #fff;
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232B2B2B' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.form-group .cta-button { width: 100%; }
.home-quick-order .quick-order-form-container .cta-button.dark-cta {
  background-color: var(--primary-black); color: var(--text-light); border-color: var(--primary-black);
}
.home-quick-order .quick-order-form-container .cta-button.dark-cta:hover {
  background-color: var(--rich-bronze); border-color: var(--rich-bronze); color: var(--text-light);
}

/* Form Validation Error Styles */
.form-control.input-error,
select.form-control.input-error,
textarea.form-control.input-error,
.input-error
{
  border-color: red !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25) !important;
}
.form-field-error, .form-field-error-js {
  color: red; font-size: 0.85em; margin-top: 5px; display: block;
}

/* About Us Page */
#about .about-content { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
#about .about-image { flex: 1 1 400px; min-width: 300px; position: relative; }
#about .about-image img {
  width: 100%; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 5px solid #fff;
}
#about .about-image::before {
  content: ""; position: absolute; top: -20px; left: -20px;
  width: calc(100% + 10px); height: calc(100% + 10px);
  border: 5px solid var(--accent-gold); border-radius: 12px; z-index: -1; opacity: 0.7;
}
#about .about-text { flex: 1 1 500px; min-width: 300px; }
#about .about-text .section-title { text-align: left; margin-bottom: 0; }
#about .about-text .section-title h2 { font-size: 2.8rem; margin-bottom: 15px; padding-bottom: 20px; }
#about .about-text .section-title h2::after { left: 0; transform: translateX(0); width: 90px; }
#about .about-text > p { margin-top: 15px; margin-bottom: 20px; line-height: 1.8; font-size: 1.05rem; color: #444; }
#about .mission-vision {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px; margin-top: 60px; margin-bottom: 80px;
}
#about .mission, #about .vision {
  background-color: var(--cream-beige); padding: 40px; border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; border-left: 5px solid var(--accent-gold);
}
#about .mission h3, #about .vision h3 { font-size: 1.8rem; margin-bottom: 20px; display: flex; align-items: center; }
#about .mission h3 i, #about .vision h3 i { margin-right: 15px; color: var(--accent-gold); font-size: 1.5em; }
#about .why-choose-us { padding: 80px 0; background-color: var(--cream-beige); margin-top: 60px; }
#about .why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px; margin-top: 50px;
}
#about .why-item {
  background-color: #fff; padding: 35px 30px; border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-top: 4px solid transparent;
}
#about .why-item:hover {
  transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-top-color: var(--accent-gold);
}
#about .why-icon { color: var(--accent-gold); font-size: 2.8rem; margin-bottom: 20px; display: inline-block; }
#about .why-item h3 { font-size: 1.5rem; margin-bottom: 15px; }
#about .why-item p { font-size: 0.95rem; color: #555; }

/* Key Pillars Section (About Page) */
.key-pillars-section { padding: 100px 0; }
.pillars-grid { display: grid; gap: 30px; margin-top: 50px; grid-template-columns: 1fr; }
.pillar-card {
  background-color: #fff; padding: 30px; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(var(--primary-black-rgb), 0.07); text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #eee;
}
.pillar-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(var(--primary-black-rgb), 0.12); }
.pillar-icon-area { margin-bottom: 25px; }
.pillar-icon-area i {
  font-size: 3.5rem; color: var(--accent-gold); padding: 20px;
  background-color: rgba(var(--accent-gold-rgb), 0.1); border-radius: 50%;
  display: inline-block; width: 90px; height: 90px; line-height: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pillar-card:hover .pillar-icon-area i { background-color: var(--accent-gold); color: var(--primary-black); }
.pillar-info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.pillar-info .pillar-description { font-size: 0.95rem; color: #555; line-height: 1.7; }
@media (min-width: 576px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }

/* Stats Section (About Page - Milestones) */
#about .stats { padding: 80px 0; margin-top: 60px; }
#about .stats-grid {
  display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 60px;
  position: relative; z-index: 1;
}
#about .stat-item {
  background-color: rgba(255,255,255,0.05); padding: 30px 25px; border-radius: 10px;
  text-align: center; border: 1px solid rgba(var(--accent-gold-rgb),0.2);
  transition: background-color .3s ease,transform .3s ease,box-shadow .3s ease;
  display: flex; flex-direction: column; align-items: center;
}
#about .stat-item:hover {
  background-color: rgba(var(--accent-gold-rgb),0.1); transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
}
#about .stat-icon-wrapper {
  margin-bottom: 20px; background-color: var(--accent-gold); color: var(--primary-black);
  width: 70px; height: 70px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 2.2rem; transition: transform .3s ease;
}
#about .stat-item:hover .stat-icon-wrapper { transform: rotate(360deg) scale(1.1); }
#about .stat-number {
  font-size: 3.5rem; font-weight: 800; color: var(--highlight-cta);
  margin-bottom: 5px; font-family: "Playfair Display",serif; display: inline-block;
}
#about .stat-plus, #about .stat-percentage {
  font-size: 2.5rem; font-weight: 700; color: var(--highlight-cta);
  font-family: "Playfair Display",serif; margin-left: 3px; vertical-align: baseline;
}
#about .stat-text {
  font-size: 1.05rem; color: var(--text-light); font-family: "Roboto",sans-serif;
  font-weight: 400; line-height: 1.5;
}
@media (min-width: 576px) { #about .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { #about .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* Services Page */
#services-page .service-detail {
  margin-bottom: 80px; padding-bottom: 60px; border-bottom: 1px solid #eee;
}
#services-page .service-detail:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
#services-page .service-detail-content { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
#services-page .service-detail:nth-child(odd) .service-detail-content { flex-direction: row-reverse; }
#services-page .service-detail-image { flex: 1 1 400px; min-width: 300px; }
#services-page .service-detail-image img { width: 100%; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
#services-page .service-detail-text { flex: 1 1 500px; min-width: 300px; }
#services-page .service-detail-text h2 {
  font-size: 2.5rem; margin-bottom: 15px; position: relative;
  display: inline-block; padding-bottom: 20px; letter-spacing: .5px;
}
#services-page .service-detail-text h2::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 70px;
  height: 3px; background-color: var(--accent-gold); border-radius: 1.5px;
}
#services-page .service-detail-text > p { margin-top: 15px; margin-bottom: 25px; line-height: 1.8; font-size: 1.05rem; color: #444; }
#services-page .service-features { margin: 30px 0; }
#services-page .service-feature { display: flex; align-items: flex-start; margin-bottom: 18px; }
#services-page .service-feature-icon {
  color: var(--accent-gold); font-size: 1.3rem; margin-right: 15px;
  margin-top: 4px; width: 20px; text-align: center;
}
#services-page .service-feature-text p { font-size: 1rem; margin-bottom: 0; color: var(--text-dark); font-weight: 500; }
#services-page .service-detail-text .cta-button { margin-top: 20px; }

/* Order Now Page */
#order .order-content { display: flex; flex-wrap: wrap; gap: 40px; }
#order .order-form-container { flex: 2 1 500px; min-width: 300px; }
#order .order-form { background-color: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
#order .order-form .form-title { text-align: left; margin-bottom: 30px; }
#order .order-form .form-title h3 { font-size: 2rem; }
#order .order-form .form-title p { font-size: 1rem; }
#order .order-sidebar { flex: 1 1 350px; min-width: 300px; }
#order .order-summary {
  background-color: #fff; padding: 30px; border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); position: sticky;
  top: calc(80px + 20px); border: 1px solid var(--accent-gold);
}
#order .order-summary h3 {
  font-size: 1.7rem; font-weight: 600; padding-bottom: 15px;
  margin-bottom: 30px; border-bottom: 2px solid var(--accent-gold);
  display: flex; align-items: center;
}
#order .order-summary h3 i { color: var(--accent-gold); font-size: 1.5rem; margin-right: 12px; line-height: 1; }
#order .summary-item {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed #eee;
}
#order .summary-item:last-of-type { border-bottom: none; margin-bottom: 20px; }
#order .summary-item span.label { font-size: .95rem; color: #555; }
#order .summary-item span.value, #order .summary-item span.price { font-weight: 700; font-size: 1rem; color: var(--text-dark); }
#order .summary-total {
  margin-top: 20px; padding-top: 20px; border-top: 2px solid var(--primary-black);
  display: flex; justify-content: space-between; align-items: center;
}
#order .summary-total span.label { font-size: 1.3rem; font-weight: 700; color: var(--primary-black); }
#order .summary-total span.total-price { font-size: 1.8rem; color: var(--accent-gold); font-weight: 800; }
#order #estimatedPriceTable { margin-top: 20px; font-size: .9em; }
#order #estimatedPriceTable caption { font-weight: bold; margin-bottom: 10px; text-align: left; color: var(--rich-bronze); }
#order #estimatedPriceTable th, #order #estimatedPriceTable td { padding: 5px; text-align: left; }
#order #estimatedPriceTable th { background-color: var(--cream-beige); }
#order .payment-methods { margin-top: 30px; text-align: center; }
#order .payment-methods h4 { font-size: 1.2rem; margin-bottom: 20px; }
#order .payment-logos { display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap; }
#order .payment-logo { height: 30px; opacity: .8; transition: all .3s ease; }
#order .payment-logo:hover { opacity: 1; }
#order .whatsapp-auto-send { margin-top: 20px; }
#order .whatsapp-auto-send .cta-button { width: 100%; }

/* Pricing Page */
#pricing .pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 30px; margin-top: 50px;
}
#pricing .pricing-card {
  background-color: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  transition: all .4s cubic-bezier(.175,.885,.32,1.275);
  position: relative; display: flex; flex-direction: column; border: 1px solid #eee;
}
#pricing .pricing-card:hover, #pricing .pricing-card.popular {
  transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,.15);
  border-color: var(--accent-gold);
}
#pricing .pricing-card.popular::before {
  content: "Most Popular"; position: absolute; top: 15px; right: -40px;
  background-color: var(--highlight-cta); color: var(--primary-black);
  padding: 6px 50px; transform: rotate(45deg); font-size: .8rem;
  font-weight: 700; z-index: 1; box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
#pricing .pricing-header {
  padding: 30px 30px 20px; min-height: 130px; background-color: var(--primary-black);
  color: var(--text-light); text-align: center; display: flex;
  flex-direction: column; justify-content: center;
}
#pricing .pricing-card.popular .pricing-header { background-color: var(--rich-bronze); }
#pricing .pricing-name { font-size: 1.8rem; margin-bottom: 10px; font-weight: 600; color: var(--text-light); }
#pricing .pricing-package-description {
  font-size: .9rem; color: #ccc; line-height: 1.5; margin-top: 5px;
  font-family: "Roboto",sans-serif; font-weight: 300; max-width: 90%;
  margin-left: auto; margin-right: auto;
}
#pricing .pricing-features { padding: 30px; list-style: none; flex-grow: 1; }
#pricing .pricing-feature { display: flex; align-items: flex-start; margin-bottom: 18px; font-size: .95rem; color: #444; }
#pricing .pricing-feature i { color: var(--accent-gold); margin-right: 12px; margin-top: 4px; width: 18px; }
#pricing .pricing-feature.unavailable { color: #999; text-decoration: line-through; }
#pricing .pricing-feature.unavailable i { color: #ccc; }
#pricing .pricing-footer { padding: 0 30px 30px; text-align: center; margin-top: auto; }
#pricing .pricing-footer .cta-button { width: 100%; }
#pricing .cta-button.whatsapp-quote {
  background-color: #25d366; color: #fff; border-color: #25d366;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
#pricing .cta-button.whatsapp-quote:hover { background-color: #1ebe57; border-color: #1ebe57; }
#pricing .cta-button.whatsapp-quote.highlight { background-color: #20a756; border-color: #20a756; }
#pricing .cta-button.whatsapp-quote.highlight:hover { background-color: #198745; border-color: #198745; }
#pricing .pricing-discounts {
  text-align: center; margin-top: 60px; padding: 30px;
  background-color: var(--cream-beige); border-radius: 8px;
}
#pricing .pricing-discounts h3 { font-size: 1.8rem; margin-bottom: 15px; }
#pricing .pricing-discounts p { font-size: 1.1rem; color: #555; }

/* FAQ Page (Styled Version) */
.faq-section-styled { padding: 100px 0; }
.faq-section-styled .section-title p.subtitle { max-width: 750px; }
.faq-contact-link {
  color: var(--rich-bronze); font-weight: 500; text-decoration: none;
  border-bottom: 1px dotted var(--rich-bronze);
  transition: color .3s ease,border-bottom-color .3s ease;
}
.faq-contact-link:hover { color: var(--accent-gold); border-bottom-color: var(--accent-gold); }
.faq-list-styled { max-width: 850px; margin: 60px auto 0; border-top: 1px solid rgba(var(--primary-black-rgb),.1); }
.faq-item-styled {
  background-color: #fff; margin-bottom: 0;
  border-bottom: 1px solid rgba(var(--primary-black-rgb),.1); transition: background-color .3s ease;
}
.faq-question-styled { /* Button */
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 20px 25px; background-color: transparent;
  border: none; text-align: left; cursor: pointer;
  font-family: "Playfair Display",serif; font-size: 1.25rem; font-weight: 600;
  color: var(--primary-black); transition: color .3s ease,background-color .3s ease; outline: none;
}
.faq-item-styled:hover .faq-question-styled { color: var(--accent-gold); }
.faq-question-styled.active { color: var(--accent-gold); }
.faq-question-styled span { flex-grow: 1; margin-right: 15px; }
.faq-icon {
  font-size: 1rem; color: var(--rich-bronze);
  transition: transform .3s ease-in-out,color .3s ease; flex-shrink: 0;
}
.faq-item-styled:hover .faq-icon { color: var(--accent-gold); }
.faq-question-styled.active .faq-icon { transform: rotate(45deg); color: var(--accent-gold); }
.faq-answer-styled {
  padding: 0 25px; max-height: 0; overflow: hidden; background-color: #fdfdfd;
  transition: max-height .4s cubic-bezier(.25,.8,.25,1),padding .4s cubic-bezier(.25,.8,.25,1);
}
.faq-answer-styled.active { padding: 25px 30px; /* max-height by JS */ }
.faq-answer-styled p { margin: 0 0 18px; font-size: .95rem; line-height: 1.8; color: #444; }
.faq-answer-styled p:last-child { margin-bottom: 0; }

/* Contact Page */
#contact .contact-content { display: flex; flex-wrap: wrap; gap: 40px; }
#contact .contact-form-container { flex: 1.5 1 500px; }
#contact .contact-form { padding: 0; border-radius: 8px; }
#contact .contact-form .section-title { text-align: left; margin-bottom: 0; }
#contact .contact-form .section-title h2 { font-size: 2.5rem; margin-bottom: 15px; padding-bottom: 20px; }
#contact .contact-form .section-title h2::after { left: 0; transform: translateX(0); width: 70px; }
#contact .contact-form .form-group:first-of-type { margin-top: 15px; }
#contact .contact-info-column { flex: 1 1 350px; }
#contact .contact-info-content {
  background-color: var(--primary-black); padding: 40px; border-radius: 8px;
  color: var(--text-light); position: sticky; top: calc(80px + 20px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
#contact .contact-info-content h3 {
  font-size: 2rem; margin-bottom: 30px; color: var(--text-light);
  border-bottom: 2px solid var(--accent-gold); padding-bottom: 10px;
}
#contact .contact-info-item { display: flex; align-items: flex-start; margin-bottom: 25px; }
#contact .contact-info-icon {
  color: var(--accent-gold); font-size: 1.5rem; margin-right: 20px;
  margin-top: 5px; width: 25px; text-align: center;
}
#contact .contact-info-text h4 {
  font-size: 1.2rem; margin-bottom: 8px; color: var(--text-light);
  font-family: "Roboto",sans-serif; font-weight: 500;
}
#contact .contact-info-text p, #contact .contact-info-text a {
  font-size: .95rem; color: #bbb; margin: 0; text-decoration: none; line-height: 1.6;
}
#contact .contact-info-text a:hover { color: var(--accent-gold); }
#contact .contact-map { margin-top: 30px; border-radius: 8px; overflow: hidden; }
#contact .contact-map iframe { width: 100%; height: 250px; border: none; }

/* Additional Services Section (Home & Dedicated Page) */
.additional-services-section .section-title h2 { color: var(--primary-black); }
.additional-services-section .section-title h2::after { background-color: var(--accent-gold); }
.additional-services-section .section-title p.subtitle { color: var(--text-dark); }
.tech-services-grid { /* Common grid for tech/additional services */
  display: grid; gap: 30px; margin-top: 50px; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .tech-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .tech-services-grid { grid-template-columns: repeat(3, 1fr); } }

.tech-service-card {
  background-color: #fff; border-radius: 12px;
  box-shadow: 0 8px 25px rgba(var(--primary-black-rgb),.08);
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.25,.8,.25,1),box-shadow .35s cubic-bezier(.25,.8,.25,1);
  position: relative;
}
.tech-service-card:hover { transform: translateY(-12px); box-shadow: 0 18px 40px rgba(var(--primary-black-rgb),.15); }
.tech-service-icon-top {
  background: linear-gradient(135deg,var(--primary-black) 0%,#2c2c2c 100%);
  padding: 30px 20px; text-align: center; border-bottom: 3px solid var(--accent-gold);
  position: relative; min-height: 120px; display: flex; align-items: center; justify-content: center;
}
.tech-service-icon-top i { font-size: 3.5rem; color: var(--accent-gold); transition: transform .3s ease-out; }
.tech-service-card:hover .tech-service-icon-top i { transform: scale(1.15) rotate(-5deg); }
.tech-service-info {
  padding: 25px 30px 30px; text-align: center; flex-grow: 1;
  display: flex; flex-direction: column;
}
.tech-service-info h3 { font-size: 1.45rem; margin-bottom: 15px; font-family: "Playfair Display",serif; }
.tech-service-info .tech-service-description {
  font-size: .9rem; color: #555; line-height: 1.75; margin-bottom: 25px; flex-grow: 1;
}
.tech-service-info .service-quote-btn {
  background-color: transparent; color: var(--rich-bronze); border: 2px solid var(--rich-bronze);
  padding: 10px 22px; font-size: .9rem; font-weight: 600; border-radius: 25px;
  text-transform: uppercase; letter-spacing: .5px; transition: all .3s ease;
  margin-top: auto; align-self: center; max-width: 220px; width: auto; display: inline-block;
}
.tech-service-info .service-quote-btn:hover {
  background-color: var(--accent-gold); border-color: var(--accent-gold); color: var(--primary-black);
  transform: translateY(-3px); box-shadow: 0 4px 15px rgba(var(--accent-gold-rgb),.3);
}
.tech-service-card::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(transparent,rgba(var(--primary-black-rgb),.05));
  opacity: 0; transition: opacity .3s ease-in-out; z-index: 0; border-radius: 12px;
}
.tech-service-card:hover::after { opacity: 1; }
.tech-service-icon-top, .tech-service-info { position: relative; z-index: 1; }


/* Footer */
.site-footer {
  background-color: var(--primary-black); color: var(--light-gray);
  padding-top: 90px; font-size: .95rem; position: relative;
}
.footer-widgets-area { padding-bottom: 70px; border-bottom: none; position: relative; }
.footer-widgets-area::after {
    content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 1px;
    background: linear-gradient(to right, transparent, rgba(var(--accent-gold-rgb), 0.2), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 40px 30px;
}
.footer-about-widget .footer-logo-container { margin-bottom: 25px; display: flex; align-items: center; }
.footer-logo-img { height: 45px; margin-right: 12px; }
.footer-logo-text-inline h3 { font-size: 1.4rem; color: var(--text-light); margin-bottom: 0; font-weight: 700; }
.footer-logo-text-inline span {
  font-size: .75rem; color: var(--accent-gold); font-family: "Roboto",sans-serif;
  display: block; margin-top: -3px;
}
.footer-about-text { color: #b0b0b0; line-height: 1.7; margin-bottom: 25px; font-size: .9rem; }
.footer-social-icons { display: flex; gap: 12px; }
.social-icon-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background-color: rgba(var(--accent-gold-rgb),.1);
  border: 1px solid rgba(var(--accent-gold-rgb),.3); border-radius: 50%;
  color: var(--accent-gold); font-size: 1rem; transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.social-icon-link:hover {
  background-color: var(--accent-gold); color: var(--primary-black);
  transform: translateY(-5px) scale(1.15) rotate(10deg); border-color: var(--accent-gold);
}
.footer-widget-title {
  font-size: 1.3rem; color: var(--text-light); margin-bottom: 25px;
  padding-bottom: 12px; position: relative; font-weight: 600; letter-spacing: .5px;
}
.footer-widget-title::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 40px;
  height: 2px; background-color: var(--accent-gold); border-radius: 1px;
}
.footer-link-list { list-style: none; padding-left: 0; }
.footer-link-list li { margin-bottom: 12px; transition: padding-left .3s ease, letter-spacing .3s ease; }
.footer-link-list li:hover { padding-left: 10px; /* letter-spacing: 0.3px; */ }
.footer-link-list a { color: #b0b0b0; text-decoration: none; transition: color .3s ease; font-size: .9rem; }
.footer-link-list a:hover { color: var(--highlight-cta); }
.footer-link-list a i.fa-chevron-right {
  font-size: .7em; margin-right: 8px; color: var(--accent-gold);
  opacity: .7; transition: opacity .3s ease, transform 0.3s ease;
}
.footer-link-list li:hover a i.fa-chevron-right { opacity: 1; transform: translateX(3px); }
.footer-contact-list { list-style: none; padding-left: 0; }
.contact-list-item {
  display: flex; align-items: flex-start; margin-bottom: 18px;
  color: #b0b0b0; font-size: .9rem;
}
.contact-list-item .contact-icon {
  color: var(--accent-gold); font-size: 1.1rem; margin-right: 12px;
  width: 20px; text-align: center; margin-top: 2px;
}
.contact-list-item span, .contact-list-item a {
  color: #b0b0b0; text-decoration: none; transition: color .3s ease; flex: 1;
}
.contact-list-item a:hover { color: var(--accent-gold); }
.footer-bottom-bar { background-color: #111; padding: 25px 0; text-align: center; }
.footer-bottom-bar p { margin: 0; font-size: .85rem; color: #888; }
.footer-bottom-bar a { color: #aaa; text-decoration: none; transition: color .3s ease; }
.footer-bottom-bar a:hover { color: var(--accent-gold); text-decoration: underline; }
.footer-divider { margin: 0 8px; color: #555; }

/* Whatsapp Float Button */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
.whatsapp-float-btn {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; background-color: #25d366; border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,.2); color: #fff; font-size: 2rem;
  text-decoration: none; transition: all .3s ease;
}
.whatsapp-float-btn:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 8px 25px rgba(37,211,102,.4); }

/* AI Chat Button & Window */
.ai-chat-container { position: fixed; bottom: 30px; left: 30px; z-index: 1000; }
.ai-chat-fab {
  width: 60px; height: 60px; background: linear-gradient(145deg,var(--accent-gold),var(--rich-bronze));
  color: var(--primary-black); border-radius: 50%; border: none; display: flex;
  align-items: center; justify-content: center; font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(var(--primary-black-rgb),.3); cursor: pointer;
  transition: all .4s cubic-bezier(.68,-.55,.265,1.55), box-shadow 0.3s ease;
  outline: none; position: relative; overflow: hidden;
}
.ai-chat-fab:hover { transform: scale(1.1) rotate(15deg); box-shadow: 0 8px 25px rgba(var(--primary-black-rgb),.45); }
.ai-chat-fab i {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  transition: transform .4s cubic-bezier(.68,-.55,.265,1.55),opacity .4s ease;
  font-family: "Font Awesome 6 Free","Font Awesome 6 Solid","FontAwesome"!important; font-weight: 900!important;
}
.ai-chat-fab .chat-icon-closed { opacity: 1; transform: translate(-50%,-50%) rotate(0deg) scale(1); }
.ai-chat-fab .chat-icon-open { opacity: 0; transform: translate(-50%,-50%) rotate(-45deg) scale(.7); }
.ai-chat-fab.chat-active .chat-icon-closed { opacity: 0; transform: translate(-50%,-50%) rotate(45deg) scale(.7); }
.ai-chat-fab.chat-active .chat-icon-open { opacity: 1; transform: translate(-50%,-50%) rotate(0deg) scale(1); }
.ai-chat-window {
  position: absolute; bottom: calc(100% + 15px); left: 0; width: 320px;
  max-height: 450px; background-color: #fff; border-radius: 12px; /* More rounded */
  box-shadow: 0 5px 25px rgba(var(--primary-black-rgb),.2); overflow: hidden;
  display: flex; flex-direction: column; opacity: 0; visibility: hidden;
  transform: translateY(20px) scale(.95);
  transition: opacity .35s ease,transform .35s cubic-bezier(.4,0,.2,1),visibility 0s linear .35s; z-index: 1000;
}
.ai-chat-window.active {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  transition: opacity .35s ease,transform .35s cubic-bezier(.4,0,.2,1),visibility 0s linear 0s;
}
.ai-chat-header {
  background: var(--primary-black); color: var(--text-light); padding: 12px 15px;
  display: flex; align-items: center; border-bottom: 1px solid rgba(var(--accent-gold-rgb),.3);
}
.ai-header-avatar {
  width: 30px; height: 30px; background-color: var(--accent-gold); color: var(--primary-black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-right: 10px; font-size: 1rem;
}
.ai-header-info .ai-name { display: block; font-weight: 600; font-size: .95rem; }
.ai-header-info .ai-status { display: block; font-size: .75rem; color: #25D366; opacity: .8; }
.ai-chat-close-btn {
  background: none; border: none; color: var(--light-gray); font-size: 1.2rem;
  cursor: pointer; padding: 5px; line-height: 1;
}
.ai-chat-messages {
    flex-grow: 1; padding: 15px; overflow-y: auto; background-color: var(--cream-beige);
    scrollbar-width: thin; scrollbar-color: var(--accent-gold) var(--cream-beige);
}
.ai-chat-messages::-webkit-scrollbar { width: 6px; }
.ai-chat-messages::-webkit-scrollbar-track { background: var(--cream-beige); border-radius: 3px; }
.ai-chat-messages::-webkit-scrollbar-thumb { background-color: var(--accent-gold); border-radius: 3px; }
.ai-message { margin-bottom: 12px; max-width: 85%; clear: both; }
.ai-message p {
  padding: 10px 14px; border-radius: 15px; line-height: 1.5;
  font-size: .9rem; margin: 0; word-wrap: break-word;
}
.assistant-message { float: left; }
.assistant-message p { background-color: #e9e9eb; color: var(--text-dark); border-bottom-left-radius: 3px; }
.user-message { float: right; }
.user-message p { background-color: var(--accent-gold); color: var(--primary-black); border-bottom-right-radius: 3px; }
.ai-chat-input-area { display: flex; padding: 10px 12px; border-top: 1px solid #e0e0e0; background-color: #f9f9f9; }
.ai-chat-input-area textarea {
  flex-grow: 1; border: 1px solid #ccc; border-radius: 20px; padding: 10px 15px;
  font-size: .9rem; resize: none; min-height: 20px; max-height: 80px;
  overflow-y: auto; font-family: "Roboto",sans-serif; line-height: 1.4; outline: none;
}
.ai-chat-input-area textarea:focus { border-color: var(--accent-gold); box-shadow: 0 0 0 2px rgba(var(--accent-gold-rgb),.2); }
.ai-chat-input-area textarea.input-error-chat { border-color: red!important; box-shadow: 0 0 0 2px rgba(255,0,0,.2)!important; }
.ai-chat-input-area textarea.input-error-chat::placeholder { color: red; opacity: .7; }
.ai-chat-send-btn {
  background: none; border: none; color: var(--accent-gold); font-size: 1.5rem;
  padding: 8px 12px; margin-left: 8px; cursor: pointer; transition: color .2s ease;
}
.ai-chat-send-btn:hover { color: var(--rich-bronze); }
.ai-chat-footer-note {
  padding: 8px 15px; text-align: center; font-size: .75rem;
  color: #777; background-color: #f0f0f0; border-top: 1px solid #e0e0e0;
}
.ai-chat-footer-note i { color: #25D366; margin-right: 5px; }

/* Cookie Consent */
.cookie-consent {
  position: fixed; bottom: -100%; left: 0; width: 100%;
  background-color: var(--primary-black); padding: 20px 0; z-index: 1001;
  transition: bottom .5s ease-in-out; box-shadow: 0 -5px 15px rgba(0,0,0,.2);
}
.cookie-consent.show { bottom: 0; }
.cookie-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cookie-text { color: var(--text-light); flex: 1; min-width: 300px; }
.cookie-text p { margin: 0; font-size: .9rem; }
.cookie-text a { color: var(--accent-gold); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 15px; }
.cookie-btn {
  padding: 10px 20px; border-radius: 5px; font-size: .9rem;
  cursor: pointer; font-weight: 500; transition: all .3s ease; border: none;
}
.accept-cookies { background-color: var(--accent-gold); color: var(--primary-black); }
.accept-cookies:hover { background-color: var(--highlight-cta); }
.decline-cookies { background-color: transparent; border: 1px solid #777; color: #aaa; }
.decline-cookies:hover { border-color: var(--text-light); color: var(--text-light); background-color: rgba(255,255,255,.1); }

/* Preloader */
#preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--primary-black); z-index: 9999; display: flex;
  justify-content: center; align-items: center; flex-direction: column;
}
#preloader img { width: 100px; margin-bottom: 20px; }
.loader-dots span {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background-color: var(--accent-gold); margin: 0 5px; animation: preloader-dots 1.4s infinite ease-in-out both;
}
.loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.loader-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes preloader-dots { 0%,80%,100% { transform: scale(0); } 40% { transform: scale(1); } }

/* 404 Error Page */
.page-404 main { flex-grow: 1; display: flex; flex-direction: column; }
section.error-page-section {
  padding: 80px 0; background-color: var(--cream-beige); text-align: center;
  flex-grow: 1; display: flex; align-items: center; justify-content: center;
}
.error-content {
  max-width: 700px; margin: 0 auto; background-color: #fff; padding: 40px 30px;
  border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,.1); border-top: 5px solid var(--accent-gold);
}
.error-icon { margin-bottom: 30px; }
.error-icon i { font-size: 5rem; color: var(--accent-gold); opacity: .8; }
.error-icon img { max-width: 150px; margin: 0 auto; }
.error-content h1 { font-size: 6rem; margin-bottom: 0; line-height: 1; font-weight: 800; }
.error-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.error-message { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 15px; line-height: 1.7; }
.error-suggestion { font-size: 1rem; color: #555; margin-bottom: 30px; }
.error-actions { margin-bottom: 35px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.error-actions .cta-button { padding: 12px 25px; font-size: .95rem; }
.error-search { margin-bottom: 30px; border-top: 1px solid #eee; padding-top: 30px; }
.error-search p { margin-bottom: 15px; font-size: 1rem; color: var(--text-dark); }
.error-search form {
  display: flex; max-width: 450px; margin: 0 auto;
  border: 1px solid #ddd; border-radius: 5px; overflow: hidden;
}
.error-search input[type="search"] {
  flex-grow: 1; padding: 12px 15px; border: none;
  font-size: 1rem; outline: none; background-color: #f9f9f9;
}
.error-search input[type="search"]:focus { background-color: #fff; }
.error-search .cta-button.search-btn {
  padding: 12px 20px; border-radius: 0 4px 4px 0;
  background-color: var(--primary-black); color: var(--accent-gold);
  border: none; transition: background-color .3s ease;
}
.error-search .cta-button.search-btn:hover { background-color: var(--rich-bronze); color: var(--text-light); }
.quick-links-404 { margin-top: 20px; border-top: 1px solid #eee; padding-top: 25px; }
.quick-links-404 h4 {
  font-size: 1.2rem; margin-bottom: 15px;
  font-family: "Roboto",sans-serif; font-weight: 500;
}
.quick-links-404 ul {
  list-style: none; padding: 0; margin: 0; display: flex;
  justify-content: center; gap: 10px 20px; flex-wrap: wrap;
}
.quick-links-404 ul li a {
  text-decoration: none; color: var(--rich-bronze); font-size: .95rem;
  padding: 5px 0; display: inline-block; transition: color .3s ease;
}
.quick-links-404 ul li a:hover { color: var(--accent-gold); text-decoration: underline; }

/* Responsive Design */
@media (max-width: 992px) {
  body { padding-top: 70px; }
  section.hero { min-height: calc(100vh - 70px); margin-top: -70px; }
  #order .order-summary, #contact .contact-info-content { top: calc(70px + 15px); }
  .logo-text h1 { font-size: 1.4rem; }
  .logo-text span { font-size: .7rem; }
  section.hero h1 { font-size: 2.8rem; }
  section.hero .tagline { font-size: 1.3rem; }
  .section-title h2,
  .quick-order-text h2:not(.alternate-title-style),
  .home-quick-order .quick-order-text .alternate-title-style,
  #services-page .service-detail-text h2,
  #about .about-text .section-title h2,
  #contact .contact-form .section-title h2 { font-size: 2.2rem; }
  #order .order-content { flex-direction: column; }
  #order .order-sidebar { order: -1; width: 100%; }
  #order .order-summary { position: static; }
  #contact .contact-content { flex-direction: column; }
  #contact .contact-info-column { width: 100%; }
  #contact .contact-info-content { position: static; }
  .footer-grid { grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); }
}

@media (max-width: 768px) {
  body { padding-top: 60px; }
  section.hero { min-height: auto; margin-top: -60px; padding: 120px 0 80px; }
  #order .order-summary, #contact .contact-info-content { top: calc(60px + 10px); }
  .nav-toggle { display: block; }
  nav ul {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; width: 100%; background-color: var(--primary-black);
    padding: 10px 0; border-top: 1px solid rgba(255,255,255,.1);
  }
  nav ul.nav-active { display: flex; }
  nav ul li { margin: 0; width: 100%; text-align: center; }
  nav ul li a {
    padding: 15px 20px; display: block; width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.05); justify-content: center;
  }
  nav ul li a::after { display: none; }
  nav ul li:last-child a { border-bottom: none; }
  .header-content { padding: 10px 0; }
  header#main-header.scrolled .header-content { padding: 8px 0; }
  .logo img { height: 40px; }
  header#main-header.scrolled .logo img { height: 35px; }
  section.hero h1 { font-size: 2.2rem; }
  section.hero .tagline { font-size: 1.1rem; }
  .hero-buttons .cta-button { padding: 12px 25px; font-size: .9rem; }
  main section { padding: 80px 0; }
  .section-title h2,
  .quick-order-text h2:not(.alternate-title-style),
  .home-quick-order .quick-order-text .alternate-title-style,
  #services-page .service-detail-text h2,
  #about .about-text .section-title h2,
  #contact .contact-form .section-title h2 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-widget-title::after { left: 50%; transform: translateX(-50%); }
  .footer-social-icons, .contact-list-item { justify-content: center; }
  .contact-list-item .contact-icon { margin-right: 10px; }
  .contact-list-item span, .contact-list-item a { text-align: left; flex: none; }
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { justify-content: center; width: 100%; }
  #about .about-content { flex-direction: column; }
  #about .about-image { margin-bottom: 30px; }
  #services-page .service-detail-content,
  #services-page .service-detail:nth-child(odd) .service-detail-content { flex-direction: column; }
  #services-page .service-detail-image { margin-bottom: 30px; }
  #services-page .service-detail:nth-child(odd) .service-detail-image { order: 0; }
  #pricing .pricing-grid { grid-template-columns: 1fr; }
  .faq-question-styled { font-size: 1.1rem; padding: 18px 20px; }
  .faq-answer-styled.active { padding: 20px 25px; }
  .faq-answer-styled p { font-size: .9rem; }
  section.error-page-section { padding: 60px 0; }
  .error-content h1 { font-size: 5rem; }
  .error-content h2 { font-size: 2rem; }
  .error-content { padding: 30px 20px; }
  .tech-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { padding-top: 56px; }
  section.hero { margin-top: -56px; }
  #order .order-summary, #contact .contact-info-content { top: calc(56px + 10px); }
  .container { padding: 0 15px; }
  section.hero h1 { font-size: 1.8rem; }
  section.hero .tagline { font-size: 1rem; }
  .section-title h2,
  .quick-order-text h2:not(.alternate-title-style),
  .home-quick-order .quick-order-text .alternate-title-style,
  #services-page .service-detail-text h2,
  #about .about-text .section-title h2,
  #contact .contact-form .section-title h2 { font-size: 1.8rem; }
  .service-card { padding: 30px 20px; }
  .service-card h3 { font-size: 1.4rem; }
  .testimonial-content { padding: 30px 20px; }
  .testimonial-text { font-size: 1rem; padding-left: 10px; }
  .testimonial-content::before { font-size: 2.5rem; left: 15px; top: 15px; }
  .quick-order-form-container, #order .order-form, #contact .contact-form, #contact .contact-info-content { padding: 25px; }
  .form-title h3 { font-size: 1.5rem; }
  #order .order-summary h3 { font-size: 1.5rem; }
  #order .order-summary h3 i { font-size: 1.3rem; }
  #about .stat-number { font-size: 2.5rem; }
  #about .stat-text { font-size: 1rem; }
  #pricing .pricing-header { padding: 25px 20px; }
  #pricing .pricing-name { font-size: 1.4rem; }
  #pricing .pricing-features { padding: 25px 20px; }
  .faq-question-styled { padding: 15px 20px; font-size: 1rem; }
  .faq-answer-styled.active { padding: 20px; }
  .footer-widget-title { font-size: 1.2rem; }
  .ai-chat-window {
    width: calc(100vw - 40px); max-height: 70vh; bottom: 75px;
    right: auto; left: 20px; transform-origin: bottom left; /* Adjusted from right to left */
  }
  .ai-chat-fab { bottom: 20px; left: 20px; right: auto; } /* Ensure right is auto */
  section.error-page-section { padding: 40px 0; }
  .error-content h1 { font-size: 4rem; }
  .error-content h2 { font-size: 1.6rem; }
  .error-icon i { font-size: 4rem; }
  .error-actions .cta-button { width: 100%; margin-bottom: 10px; }
  .error-actions .cta-button:last-child { margin-bottom: 0; }
  .error-search form { flex-direction: column; border: none; }
  .error-search input[type="search"] { border: 1px solid #ddd; border-radius: 5px; margin-bottom: 10px; }
  .error-search .cta-button.search-btn { border-radius: 5px; }
}

/* ... (Your existing CSS) ... */

/* AI Chat Typing Indicator */
.ai-message.assistant-typing-indicator p {
    background-color: #e9e9eb;
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    display: inline-flex; /* To align dots */
    align-items: flex-end; /* Align dots to bottom of p */
    padding: 10px 14px; /* Match other messages */
}

.assistant-typing-indicator .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-dark);
    margin: 0 2px;
    animation: typingDots 1.2s infinite ease-in-out;
}

.assistant-typing-indicator .dot:nth-child(1) {
    animation-delay: 0s;
}
.assistant-typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}
.assistant-typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDots {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-4px);
    }
}

/* Mobile Nav Toggle Icons - Ensure CSS handles the switch */
.nav-toggle .fa-bars {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition: opacity var(--transition-speed-fast) ease, transform var(--transition-speed-normal) var(--easing-elastic);
}
.nav-toggle .fa-times {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
    position: absolute; /* To overlay correctly */
    left: 50%; top: 50%; /* Center within button */
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.5);
    transition: opacity var(--transition-speed-fast) ease, transform var(--transition-speed-normal) var(--easing-elastic);
}
.nav-toggle.nav-active .fa-bars {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.5);
}
.nav-toggle.nav-active .fa-times {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

/* ... (Rest of your CSS, especially ensure .input-error-chat and .visible for form-field-error-js are styled) ... */