/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #7c3aed;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --danger-color: #ef4444;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

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

/* Top Bar */
.top-bar {
  background-color: var(--text-dark);
  color: var(--bg-white);
  font-size: 14px;
}

.top-bar .container {
  padding: 12px 20px;
}

.top-bar a {
  white-space: nowrap;
  font-size: 13px;
}

.top-bar a:hover {
  color: var(--accent-color) !important;
}

.icon-svg {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
  display: inline-block;
  opacity: 0.8;
}

/* Header */
.main-header {
  z-index: 1020;
}

.main-header .navbar-brand {
  text-decoration: none;
  color: var(--text-dark);
}

.main-header .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 0.5rem 1rem;
}

.main-header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.main-header .navbar-nav .nav-link:hover::after,
.main-header .navbar-nav .nav-link.active::after {
  width: calc(100% - 2rem);
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.main-header .navbar-nav .nav-link.btn {
  margin-left: 0.5rem;
}

.main-header .navbar-nav .nav-link.btn::after {
  display: none;
}

.logo {
  position: relative;
  z-index: 1001;
}

.logo a {
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  border-radius: 5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.logo .tagline {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
}

.navbar-brand h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.navbar-brand .logo-text h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.navbar-brand .tagline {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 0;
}

.navbar-brand .logo-text .tagline {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 0;
}

/* Company name responsive display */
.company-name-mobile {
  display: none;
}

.company-name-desktop {
  display: inline;
}

/* Navigation */
.main-nav {
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.menu-close-header {
  display: none;
}

.btn-enquiry {
  background-color: var(--primary-color);
  color: var(--bg-white) !important;
  padding: 10px 20px;
  border-radius: 5px;
}

.btn-enquiry::after {
  display: none;
}

.btn-enquiry:hover {
  background-color: var(--primary-dark);
}

.close-icon {
  font-size: 24px;
  display: block;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Hero Section */
.hero-section {
  color: var(--bg-white);
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.4) 0%,
    rgba(124, 58, 237, 0.4) 100%
  );
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-carousel-indicators .indicator.active {
  background-color: var(--bg-white);
  width: 30px;
  border-radius: 6px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease;
  line-height: 1.2;
  transition: opacity 0.5s ease;
}

.hero-subtitle {
  font-size: 28px;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.2s both;
  font-weight: 500;
  transition: opacity 0.5s ease;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.4s both;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.5s ease;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.btn-light {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-outline-light:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Sections */
.about-section,
.services-section,
.content-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 16px;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 15px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* Services Grid - Modern Design */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.service-card-modern {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.service-card-modern:hover .service-image-wrapper img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

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

.service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.service-card-modern:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--bg-white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  align-self: flex-start;
}

.service-card-modern h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-description {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

.service-features-list li i {
  color: var(--primary-color);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.service-card {
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

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

.service-image {
  width: 100%;
  height: 200px;
  margin: 0 0 20px 0;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

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

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
}

/* CTA Section */
.cta-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.4) 0%,
    rgba(124, 58, 237, 0.4) 100%
  );
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 17px;
  margin-bottom: 0;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.cta-contact-form {
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: 16px;
  max-width: 700px;
  margin: 40px auto 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-form .form-group {
  margin-bottom: 24px;
}

.cta-contact-form .form-group label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-contact-form .form-group input,
.cta-contact-form .form-group textarea {
  background-color: #f8f9fa;
  color: var(--text-dark);
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.cta-contact-form .form-group input:hover,
.cta-contact-form .form-group textarea:hover {
  border-color: #ced4da;
  background-color: var(--bg-white);
}

.cta-contact-form .form-group input::placeholder,
.cta-contact-form .form-group textarea::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.cta-contact-form .form-group input:focus,
.cta-contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}

.cta-contact-form .field-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-contact-form .form-group input.field-error-active,
.cta-contact-form .form-group textarea.field-error-active {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.cta-contact-form .form-group input.field-error-active:focus,
.cta-contact-form .form-group textarea.field-error-active:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.cta-contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-contact-form .btn-block {
  width: 100%;
  margin-top: 10px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
}

.cta-contact-form .btn-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
  background-color: var(--primary-dark);
}

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* About Detailed */
.about-detailed {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.about-main {
  padding-right: 30px;
}

.about-main h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
}

.about-main h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-main h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-main h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.about-main p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* Why Choose Cards - Modern Design */
.why-choose-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.why-choose-card:hover::before {
  transform: scaleY(1);
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.why-choose-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--bg-white);
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.why-choose-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.why-choose-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Expertise Cards */
.expertise-card {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.expertise-card:hover {
  background-color: var(--bg-white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.expertise-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 24px;
  color: var(--bg-white);
}

.expertise-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

.expertise-list li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.expertise-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.category-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  padding: 12px 20px;
  border-radius: 25px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Quality List */
.quality-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background-color: var(--bg-light);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.quality-item:hover {
  background-color: var(--bg-white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.quality-item i {
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.quality-item span {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
}

/* Product Category Cards */
.product-category-card {
  background-color: var(--bg-white);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.product-category-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.product-category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  color: var(--bg-white);
  transition: all 0.3s ease;
}

.product-category-card:hover .product-category-icon {
  transform: scale(1.1) rotate(360deg);
}

.product-category-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.product-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.product-category-list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-light);
  font-size: 14px;
}

.product-category-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Custom Gifting Card */
.custom-gifting-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.custom-gifting-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--bg-white);
  flex-shrink: 0;
}

.custom-gifting-card p {
  color: var(--text-dark);
  font-size: 15px;
  margin: 0;
  line-height: 1.8;
}

/* Sidebar Cards */
.sidebar-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.sidebar-card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bg-white);
}

.sidebar-card-header i {
  font-size: 24px;
}

.sidebar-card-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--bg-white);
}

.sidebar-card-body {
  padding: 25px;
}

.fact-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fact-item:last-child {
  border-bottom: none;
}

.fact-item strong {
  color: var(--text-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fact-item span {
  color: var(--text-light);
  font-size: 14px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 14px;
}

.service-item i {
  color: var(--primary-color);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item span,
.contact-item a {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.sidebar-card.cta-box {
  border: none;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.sidebar-card.cta-box .sidebar-card-body {
  color: var(--bg-white);
}

.sidebar-card.cta-box h3 {
  color: var(--bg-white);
}

.sidebar-card.cta-box p {
  color: rgba(255, 255, 255, 0.9);
}

/* Legacy support */
.why-choose-item {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.why-choose-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.why-choose-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.info-box {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.info-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

.info-box ul li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

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

.info-box .list-unstyled li {
  border-bottom: none;
}

.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--bg-white);
}

.cta-box h3 {
  color: var(--bg-white);
}

.cta-box p {
  color: var(--bg-white);
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Services Detailed */
.services-intro {
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-intro p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.services-detailed {
  margin-bottom: 80px;
}

.services-detailed:not(:last-child) {
  padding-bottom: 60px;
  border-bottom: 2px solid var(--border-color);
}

.services-section-header {
  text-align: center;
  margin-bottom: 30px;
}

.services-section-divider {
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  margin: 40px 0;
}

.services-section-divider h4 {
  margin: 0;
}

.service-detail-card {
  display: block !important;
  background-color: var(--bg-white);
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  overflow: hidden;
  height: 100%;
}

.service-detail-card.service-left,
.service-detail-card.service-right {
  display: block !important;
}

.service-detail-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.service-detail-image {
  width: 100% !important;
  height: 400px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  position: relative;
  display: block !important;
  float: none !important;
}

.service-detail-content {
  padding: 30px;
  display: block !important;
  width: 100% !important;
  float: none !important;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

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

.service-detail-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.service-features li {
  color: var(--text-light);
  font-size: 14px;
  padding-left: 25px;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

/* Clean Services Design */
.section-title-main {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-subtitle-main {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0;
}

.services-description {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-title-sub {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* Services Features Grid */
.services-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-feature-box {
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.service-feature-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.service-feature-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--bg-white);
}

.service-feature-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.feature-list li {
  color: var(--text-dark);
  font-size: 15px;
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

/* Categories Grid Services */
.categories-grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-item {
  background-color: var(--bg-light);
  padding: 18px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.category-item:hover {
  background-color: var(--bg-white);
  border-color: var(--primary-color);
  transform: translateX(5px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.category-item i {
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.category-item span {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
}

/* Services Highlights Grid */
.services-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.highlight-box {
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.highlight-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 32px;
  color: var(--bg-white);
}

.highlight-box h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.highlight-box p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Toys Categories Grid */
.toys-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.toy-category-box {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.toy-category-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.toy-category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.toy-category-header i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--bg-white);
  flex-shrink: 0;
}

.toy-category-header h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

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

.toy-category-list li {
  color: var(--text-dark);
  font-size: 14px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.toy-category-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
}

/* Custom Gifting Box */
.custom-gifting-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.custom-gifting-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--bg-white);
  flex-shrink: 0;
}

.custom-gifting-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.custom-gifting-list li {
  color: var(--text-dark);
  font-size: 15px;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.8;
}

.custom-gifting-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

/* Legacy Support */
.service-card-clean {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card-clean:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left-color: var(--secondary-color);
  transform: translateY(-2px);
}

.service-card-clean h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-card-clean h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card-clean p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

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

.service-list-clean li {
  color: var(--text-dark);
  font-size: 15px;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.service-list-clean li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 16px;
}

.category-card-clean {
  background-color: var(--bg-light);
  padding: 25px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.category-card-clean:hover {
  background-color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.category-card-clean h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.category-card-clean p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.services-cta-section {
  text-align: center;
  padding: 50px 40px;
  background-color: var(--bg-light);
  border-radius: 10px;
  margin-top: 50px;
}

.services-cta-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.services-cta-section p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 16px;
}

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

.services-cta-buttons .btn-text-primary {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  font-weight: 600;
}

.services-cta-buttons .btn-text-primary:hover {
  background-color: var(--primary-color) !important;
  color: var(--bg-white) !important;
}

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
}

.contact-info-section > p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-info-card {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-svg {
  font-size: 24px;
  display: block;
}

.contact-info-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* Forms */
.contact-form-section h2,
.enquiry-form-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.contact-form,
.enquiry-form {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
}

.form-alert {
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.form-alert-success {
  color: #065f46;
  background-color: #d1fae5;
  border: 1px solid #a7f3d0;
}

.form-alert-error {
  color: #991b1b;
  background-color: #fee2e2;
  border: 1px solid #fecaca;
}

.form-dialog-open {
  overflow: hidden;
}

.form-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.55);
}

.form-dialog {
  width: min(420px, 100%);
  padding: 32px 28px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
}

.form-dialog-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 700;
}

.form-dialog-success .form-dialog-icon {
  color: #047857;
  background: #d1fae5;
}

.form-dialog-error .form-dialog-icon {
  color: #b91c1c;
  background: #fee2e2;
}

.form-dialog h3 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-size: 24px;
}

.form-dialog p {
  margin: 0 0 24px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.form-dialog .btn {
  min-width: 120px;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: wait;
  opacity: 0.85;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.8s linear infinite;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 15px;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Enquiry */
.enquiry-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.enquiry-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.enquiry-info > p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.enquiry-benefits {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.enquiry-benefits h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.enquiry-benefits ul {
  list-style: none;
}

.enquiry-benefits ul li {
  padding: 8px 0;
  color: var(--text-light);
}

.enquiry-contact {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
}

.enquiry-contact h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.enquiry-contact p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.enquiry-contact a {
  color: var(--primary-color);
  text-decoration: none;
}

.enquiry-contact a:hover {
  text-decoration: underline;
}

/* Footer */
.main-footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--bg-white);
}

.footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

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

.footer-section ul li {
  padding: 8px 0;
}

.footer-section ul a,
.main-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-section ul a::after,
.main-footer a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-section ul a:hover,
.main-footer a:hover {
  color: var(--bg-white);
  transform: translateX(5px);
}

.footer-section ul a:hover::after,
.main-footer a:hover::after {
  width: 100%;
}

.contact-list li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.contact-list strong {
  color: var(--bg-white);
  display: block;
  margin-bottom: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-main {
    padding-right: 0;
  }

  .about-main h2 {
    font-size: 28px;
  }

  .why-choose-card {
    padding: 25px;
  }

  .why-choose-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }

  .category-badge {
    font-size: 13px;
    padding: 10px 16px;
  }

  .expertise-card,
  .product-category-card {
    padding: 20px;
  }

  .sidebar-card-header {
    padding: 18px;
  }

  .sidebar-card-header h3 {
    font-size: 18px;
  }

  .sidebar-card-body {
    padding: 20px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-detailed {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .enquiry-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    padding: 10px 20px;
  }

  .top-bar .d-flex {
    flex-wrap: wrap;
    gap: 8px !important;
  }

  .top-bar .d-flex > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-bar a {
    font-size: 12px;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }

  .top-bar .icon-svg {
    font-size: 14px;
    margin-right: 6px;
  }

  .logo-image {
    height: 40px;
    max-width: 60px;
  }

  .logo h1 {
    font-size: 20px;
  }

  .logo .tagline {
    font-size: 10px;
  }

  .navbar-brand {
    gap: 12px !important;
  }

  .navbar-brand .logo-image {
    height: 45px;
    max-width: 65px;
  }

  .navbar-brand h1 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .navbar-brand .logo-text h1 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .navbar-brand .tagline {
    font-size: 10px;
    line-height: 1.2;
  }

  .navbar-brand .logo-text .tagline {
    font-size: 10px;
    line-height: 1.2;
  }

  /* Switch to MFTG on mobile */
  .company-name-desktop {
    display: none;
  }

  .company-name-mobile {
    display: inline;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    gap: 0;
    z-index: 1000;
    overflow-y: auto;
    margin: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
  }

  .nav-menu-backdrop.active {
    display: block;
  }

  .menu-close-header {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
  }

  .menu-close-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    cursor: pointer;
    text-align: right;
    color: var(--text-dark);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .menu-close-btn:hover {
    opacity: 0.7;
  }

  .close-icon {
    font-size: 24px;
    display: block;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    padding: 0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 15px 20px;
    width: 100%;
    font-size: 16px;
  }

  .nav-menu a::after {
    display: none;
  }

  .enquiry-menu-item {
    margin-top: 10px;
    border-bottom: none !important;
  }

  .btn-enquiry-menu {
    background-color: var(--primary-color) !important;
    color: var(--bg-white) !important;
    padding: 15px 20px !important;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    margin: 10px 20px;
    width: calc(100% - 40px) !important;
    display: block !important;
  }

  .btn-enquiry-menu:hover {
    background-color: var(--primary-dark) !important;
    color: var(--bg-white) !important;
  }

  .hero-section {
    min-height: 700px;
    padding: 120px 0;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .page-header {
    padding: 50px 0;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .page-header p {
    font-size: 16px;
  }

  .contact-info-section h2 {
    font-size: 26px;
  }

  .contact-info-section > p {
    font-size: 15px;
  }

  .services-grid,
  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card-modern {
    margin-bottom: 0;
  }

  .service-image-wrapper {
    height: 240px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    top: 15px;
    right: 15px;
  }

  .service-content {
    padding: 25px;
  }

  .service-card-modern h3 {
    font-size: 22px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-detail-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-contact-form {
    padding: 30px 25px;
  }

  .cta-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .content-section {
    padding: 40px 0;
  }

  .contact-container {
    gap: 30px;
  }

  .map-section {
    padding: 40px 0;
  }

  .map-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .map-container iframe {
    height: 300px;
  }

  .section-title-main {
    font-size: 28px;
  }

  .section-subtitle-main {
    font-size: 18px;
  }

  .section-title-sub {
    font-size: 20px;
  }

  .service-card-clean {
    padding: 25px;
  }

  .category-card-clean {
    padding: 20px;
  }

  .services-cta-section {
    padding: 40px 25px;
  }

  .services-cta-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo a {
    gap: 10px;
  }

  .logo-image {
    height: 35px;
    max-width: 50px;
  }

  .logo h1 {
    font-size: 18px;
  }

  .logo .tagline {
    font-size: 9px;
  }

  .navbar-brand {
    gap: 8px !important;
  }

  .navbar-brand .logo-image {
    height: 40px;
    max-width: 55px;
  }

  .navbar-brand h1 {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .navbar-brand .logo-text h1 {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.2;
  }

  .navbar-brand .tagline {
    font-size: 9px;
    line-height: 1.1;
  }

  .navbar-brand .logo-text .tagline {
    font-size: 9px;
    line-height: 1.1;
  }

  .hero-section {
    min-height: 600px;
    padding: 100px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-carousel-indicators {
    bottom: 20px;
  }

  .hero-carousel-indicators .indicator {
    width: 10px;
    height: 10px;
  }

  .hero-carousel-indicators .indicator.active {
    width: 24px;
  }

  .page-header {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .page-header p {
    font-size: 14px;
  }

  .contact-info-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .contact-info-section > p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-info-cards {
    gap: 15px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-info-card h3 {
    font-size: 16px;
  }

  .contact-info-card p {
    font-size: 13px;
  }

  .about-main h2 {
    font-size: 24px;
  }

  .about-main h3 {
    font-size: 20px;
  }

  .about-main h4 {
    font-size: 18px;
  }

  .why-choose-card {
    padding: 20px;
  }

  .why-choose-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .why-choose-card h3 {
    font-size: 18px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card,
  .product-category-card {
    padding: 18px;
  }

  .expertise-icon,
  .product-category-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .sidebar-card-header {
    padding: 15px;
  }

  .sidebar-card-header h3 {
    font-size: 16px;
  }

  .sidebar-card-body {
    padding: 18px;
  }

  .contact-form,
  .enquiry-form {
    padding: 25px 20px;
  }

  .contact-form-section h2,
  .enquiry-form-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .content-section {
    padding: 30px 0;
  }

  .container {
    padding: 0 15px;
  }

  .contact-container {
    gap: 25px;
  }

  .map-section {
    padding: 30px 0;
  }

  .map-container iframe {
    height: 250px;
  }

  .section-title-main {
    font-size: 24px;
  }

  .section-subtitle-main {
    font-size: 16px;
  }

  .section-title-sub {
    font-size: 18px;
  }

  .section-title-main {
    font-size: 24px;
  }

  .section-subtitle-main {
    font-size: 16px;
  }

  .section-title-sub {
    font-size: 18px;
  }

  .services-features-grid,
  .services-highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .categories-grid-services,
  .toys-categories-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-feature-box,
  .highlight-box,
  .toy-category-box {
    padding: 20px;
  }

  .service-feature-icon-box,
  .highlight-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .toy-category-header i {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .custom-gifting-box {
    padding: 25px;
  }

  .custom-gifting-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .service-card-clean {
    padding: 20px;
  }

  .service-card-clean h4 {
    font-size: 18px;
  }

  .category-card-clean {
    padding: 18px 15px;
  }

  .category-card-clean h5 {
    font-size: 16px;
  }

  .services-cta-section {
    padding: 35px 20px;
  }

  .services-cta-section h2 {
    font-size: 24px;
  }

  .services-cta-section p {
    font-size: 15px;
  }

  .services-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .services-cta-buttons .btn {
    width: 100%;
  }

  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-image-wrapper {
    height: 220px;
  }

  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .service-content {
    padding: 20px;
  }

  .service-card-modern h3 {
    font-size: 20px;
  }

  .service-description {
    font-size: 14px;
  }

  .service-features-list li {
    font-size: 13px;
  }

  .cta-contact-form {
    padding: 25px 20px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 15px;
  }
}
