/* General Styles */
:root {
  --primary-color: #2c3e50; /* Deep Blue/Charcoal */
  --secondary-color: #00bcd4; /* Vibrant Cyan */
  --accent-color: #f39c12; /* Orange for highlights/warnings */
  --text-color: #333;
  --light-text-color: #666;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --medium-gray: #eee;
  --dark-gray: #ccc;
  --border-color: #ddd;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --success-color: #28a745;
  --error-color: #dc3545;
  --info-color: #17a2b8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: poppins, sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-gray);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Inter", sans-serif;
}

input,
select,
textarea {
  font-family: "Inter", sans-serif;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2); /* secondary-color with transparency */
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  gap: 8px;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #1a242f; /* Darker primary */
  border-color: #1a242f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
  background-color: #0097a7; /* Darker secondary */
  border-color: #0097a7;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background-color: var(--primary-color);
  color: var(--medium-gray);
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--secondary-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info,
.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 25px;
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-item i {
  color: #f39c12;
  font-size: 1rem;
  min-width: 16px;
}

.contact-item a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Always visible contact text */
.contact-item span:not(.contact-item) {
  color: #f39c12;
  font-weight: 500;
}
@media (max-width: 768px) { 
  .header-main-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 1.1rem;
   color: #e67e22;
}

.social-links a:hover {
  color: var(--white);
}

.header-main {
  padding: 20px 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}

.header-main.header-nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.main-nav {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}

.main-nav.header-nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text h1 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
}

.logo-text .tagline {
  font-size: 0.9rem;
  color: var(--light-text-color);
  margin: 0;
}

.search-section {
  flex-grow: 1;
  max-width: 500px;
  position: relative;
}

.search-container {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.search-input {
  border: none;
  flex-grow: 1;
  padding: 10px 15px;
  font-size: 1rem;
}

.search-input:focus {
  box-shadow: none;
}

.search-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 15px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background-color: #0097a7;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 10px var(--shadow-light);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 900;
}

.search-suggestion {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid var(--medium-gray);
}

.search-suggestion:last-child {
  border-bottom: none;
}

.search-suggestion:hover {
  background-color: var(--light-gray);
}

.search-suggestion img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.suggestion-info {
  flex-grow: 1;
}

.suggestion-name {
  font-weight: 600;
  color: var(--primary-color);
}

.suggestion-price {
  font-size: 0.9rem;
  color: var(--light-text-color);
}

.header-actions {
  display: flex;
  gap: 15px;
}

.action-item {
  position: relative;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-color);
  padding: 5px 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.action-btn i {
  font-size: 1.4rem;
  margin-bottom: 3px;
  color: var(--primary-color);
}

.action-btn:hover {
  background-color: var(--medium-gray);
  color: var(--primary-color);
}

.action-btn:hover i {
  color: var(--secondary-color);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: 0;
  background-color: var(--accent-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  padding: 3px 7px;
  min-width: 20px;
  text-align: center;
}

.mobile-only {
  display: none;
}

/* Main Navigation */
.main-nav {
  background-color: var(--primary-color);
  padding: 12px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.nav-link i {
  font-size: 1.1rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link {
  padding-right: 20px; /* Space for dropdown icon */
}

.nav-dropdown .dropdown-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 5px 15px var(--shadow-medium);
  border-radius: 8px;
  min-width: 200px;
  padding: 10px 0;
  display: none;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-color);
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: var(--light-gray);
  color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: flex-end;
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-content {
  background-color: var(--white);
  width: 80%;
  max-width: 350px;
  height: 100%;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--medium-gray);
  margin-bottom: 20px;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.mobile-logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.mobile-menu-close {
  font-size: 1.8rem;
  color: var(--light-text-color);
  background: none;
  border: none;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--medium-gray);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link.active {
  color: var(--secondary-color);
}

.mobile-contact {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  gap: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  transition: background-color 0.3s ease;
}

.mobile-contact-btn:hover {
  background-color: #1a242f;
}


/* WhatsApp Floating Button - Modern Design */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    min-width: 60px;
    min-height: 60px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    position: relative;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.whatsapp-float:hover a::before {
    width: 300px;
    height: 300px;
}

.whatsapp-float:hover a {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #20b358 0%, #0f6b5c 100%);
}

.whatsapp-float .fa-whatsapp {
    font-size: 28px;
    z-index: 2;
    position: relative;
    margin-right: 0;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .fa-whatsapp {
    transform: rotate(10deg);
}

.whatsapp-float .whatsapp-text {
    display: none;
    margin-left: 12px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
    position: relative;
}

/* Pulse animation */
.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Show text on larger screens */
@media (min-width: 769px) {
    .whatsapp-float:hover .whatsapp-text {
        display: inline-block;
    }
    
    .whatsapp-float:hover a {
        padding: 15px 25px;
        border-radius: 30px;
    }
}

/* Mobile optimized */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        min-width: 55px;
        min-height: 55px;
        padding: 12px;
    }
    
    .whatsapp-float .fa-whatsapp {
        font-size: 24px;
    }
}

/* Back to Top Floating Button - Consistent Design */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 25px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    min-width: 60px;
    min-height: 60px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    position: relative;
}

.back-to-top a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.back-to-top:hover a::before {
    width: 300px;
    height: 300px;
}

.back-to-top:hover a {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.6);
    background: linear-gradient(135deg, #1a242f 0%, #0097a7 100%);
}

.back-to-top .fa-arrow-up {
    font-size: 28px;
    z-index: 2;
    position: relative;
    margin-right: 0;
    transition: all 0.3s ease;
}

.back-to-top:hover .fa-arrow-up {
    transform: translateY(-3px);
}

.back-to-top .back-to-top-text {
    display: none;
    margin-left: 12px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
    position: relative;
}

/* Pulse animation for back to top */
.back-to-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
    animation: back-to-top-pulse 3s infinite;
}

@keyframes back-to-top-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Show text on larger screens for back to top */
@media (min-width: 769px) {
    .back-to-top:hover .back-to-top-text {
        display: inline-block;
    }
    
    .back-to-top:hover a {
        padding: 15px 25px;
        border-radius: 30px;
    }
}

/* Mobile optimized for back to top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        left: 20px;
    }
    
    .back-to-top a {
        min-width: 55px;
        min-height: 55px;
        padding: 12px;
    }
    
    .back-to-top .fa-arrow-up {
        font-size: 24px;
    }
}

/* Main Content */
.main-content {
  flex-grow: 1;
  padding: 30px 0;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--light-text-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("Microsoft Windows 11 Pro (Digital License).jpg") no-repeat center center / cover;
  filter: grayscale(50%) brightness(0.6);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

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

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--secondary-color);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-features {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-feature i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

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

.hero-image {
  flex: 0 0 auto;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--secondary-color);
}

.hero-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

/* Services Overview */
.services-overview {
  padding: 60px 0;
  background-color: var(--white);
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
}

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

.service-card {
  background-color: var(--light-gray);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.service-icon {
  background-color: var(--secondary-color);
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--light-text-color);
  font-size: 0.95rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.service-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.service-btn:hover {
  background-color: #1a242f;
}

/* Featured Products */
.featured-products {
  padding: 60px 0;
  margin-bottom: 40px;
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.product-badge.in-stock {
  background-color: var(--success-color);
}

.product-badge.out-of-stock {
  background-color: var(--error-color);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.product-name {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-description {
  font-size: 0.9rem;
  color: var(--light-text-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto; /* Pushes actions to the bottom */
}

.product-actions .btn-primary {
  flex-grow: 1;
  padding: 10px 15px;
  font-size: 0.95rem;
}

.product-actions .btn-secondary {
  padding: 10px 12px;
  font-size: 1rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white);
  margin-bottom: 40px;
}

.why-choose-us .section-header h2 {
  color: var(--white);
}

.why-choose-us .section-header p {
  color: var(--medium-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  background-color: var(--secondary-color);
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px auto;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* Latest Blog Posts */
.latest-blog {
  padding: 60px 0;
  margin-bottom: 40px;
}

.blog-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-post-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.blog-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--light-text-color);
  margin-bottom: 10px;
}

.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-post-category {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-post-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-post-excerpt {
  font-size: 0.95rem;
  color: var(--light-text-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.blog-post-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--light-text-color);
  margin-top: auto;
}

.blog-post-likes,
.blog-post-comments {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Products Page */
.products-page {
  padding: 30px 0;
  background-color: #f8f9fa;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.header-decoration {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  margin: 20px auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-category-section {
  margin-bottom: 50px;
  animation: fadeInUp 0.6s ease-out;
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 2px;
}

.category-title i {
  background-color: var(--secondary-color);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.category-title:hover i {
  transform: scale(1.1) rotate(5deg);
}

.category-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.category-products .product-card:nth-child(1) { animation-delay: 0.1s; }
.category-products .product-card:nth-child(2) { animation-delay: 0.2s; }
.category-products .product-card:nth-child(3) { animation-delay: 0.3s; }
.category-products .product-card:nth-child(4) { animation-delay: 0.4s; }
.category-products .product-card:nth-child(5) { animation-delay: 0.5s; }
.category-products .product-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Product Card Styles */
.product-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid #eeeeee;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #e0e0e0;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio for square images */
  overflow: hidden;
  background-color: #f9f9f9;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-badge.in-stock {
  background-color: var(--success-color);
}

.product-badge.out-of-stock {
  background-color: var(--error-color);
}

.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
  }
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
  position: relative;
}

.product-category {
  font-size: 0.8rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-name {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 700;
  transition: color 0.3s ease;
}

.product-card:hover .product-name {
  color: var(--secondary-color);
}

.product-description {
  font-size: 0.9rem;
  color: var(--light-text-color);
  margin-bottom: 15px;
  flex-grow: 1;
  line-height: 1.5;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-actions .btn-primary,
.product-actions .btn-secondary {
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.product-actions .btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.product-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.product-actions .btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-actions .btn-secondary {
  background-color: #25D366;
  color: white;
  border: 2px solid #25D366;
}

.product-actions .btn-secondary:hover {
  background-color: transparent;
  color: #25D366;
}

.product-actions .btn-secondary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Adjustments for Products Page */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .category-title {
    font-size: 1.6rem;
  }
  
  .category-title i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .category-products {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-name {
    font-size: 1.1rem;
  }
  
  .product-price {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .products-page {
    padding: 20px 0;
  }
  
  .page-header {
    padding: 15px;
    margin-bottom: 30px;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .category-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .category-products {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-actions {
    flex-direction: column;
  }
}


.products-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 30px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.filter-group select {
  width: auto;
  min-width: 150px;
  padding: 8px 12px;
  font-size: 0.95rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.load-more-section {
  text-align: center;
  margin-top: 30px;
}

/* Services Page */
.services-detailed {
  margin-top: 40px;
}

.service-section {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  padding: 30px;
  margin-bottom: 40px;
}

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

.service-icon-large {
  background-color: var(--primary-color);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

.service-info {
  flex-grow: 1;
}

.service-info h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.service-info p {
  font-size: 1.1rem;
  color: var(--light-text-color);
  margin-bottom: 10px;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--light-text-color);
}

.service-rating .stars i {
  color: var(--accent-color);
}

.service-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.service-pricing .price-tag {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
}

.service-details {
  border-top: 1px solid var(--medium-gray);
  padding-top: 25px;
}

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

.service-list h3,
.service-process h3,
.supported-brands h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-list ul {
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-color);
}

.service-list li i {
  color: var(--success-color);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-number {
  background-color: var(--secondary-color);
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--light-text-color);
}

.supported-brands .brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
}

.brand {
  background-color: var(--medium-gray);
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Blog Page */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.blog-category-btn {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-category-btn:hover {
  background-color: var(--light-gray);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.blog-category-btn.active {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.blog-category-btn.active:hover {
  background-color: #0097a7;
  border-color: #0097a7;
}

.featured-post {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  margin-bottom: 40px;
  overflow: hidden;
}

.featured-post-content {
  display: flex;
  flex-wrap: wrap;
}

.featured-post .blog-post-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  flex: 1 1 400px;
}

.featured-post .blog-post-info {
  flex: 1 1 400px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post .blog-post-meta {
  margin-bottom: 15px;
}

.featured-post .blog-post-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.featured-post .blog-post-excerpt {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.newsletter-signup {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-medium);
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-text h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--medium-gray);
}

.newsletter-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex-grow: 1;
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-color);
}

.newsletter-form input::placeholder {
  color: var(--light-text-color);
}

.newsletter-form input:focus {
  background-color: var(--white);
}

.newsletter-form .btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.newsletter-form .btn-primary:hover {
  background-color: #0097a7;
  border-color: #0097a7;
}

/* About Page */
.about-content {
  margin-top: 40px;
}

.founder-story {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  padding: 30px;
  margin-bottom: 40px;
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.founder-image {
  flex-shrink: 0;
}

.founder-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  box-shadow: 0 5px 15px var(--shadow-light);
}

.founder-info h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.founder-info h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.founder-info .founder-title {
  font-size: 1.1rem;
  color: var(--light-text-color);
  margin-bottom: 15px;
}

.founder-social {
  display: flex;
  gap: 15px;
}

.founder-social a {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.founder-social a:hover {
  color: var(--secondary-color);
}

.founder-story-content h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.founder-story-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

.founder-achievements {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--medium-gray);
}

.founder-achievements h3 {
  text-align: center;
  margin-bottom: 25px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  text-align: center;
}

.achievement {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px var(--shadow-light);
}

.achievement i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.achievement h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.achievement p {
  font-size: 0.9rem;
  color: var(--light-text-color);
}

.founder-quote {
  margin-top: 40px;
  background-color: var(--light-gray);
  border-left: 5px solid var(--secondary-color);
  padding: 25px;
  border-radius: 8px;
  font-style: italic;
  color: var(--text-color);
}

.founder-quote blockquote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.founder-quote cite {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  text-align: right;
  color: var(--light-text-color);
}

.company-overview {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-medium);
  padding: 40px;
  text-align: center;
}

.about-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.about-text {
  flex: 1 1 400px;
  text-align: left;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.highlight-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.highlight-item h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 5px;
}

.highlight-item p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

.about-image {
  flex: 0 0 auto;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.about-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  border: 5px solid var(--secondary-color);
  box-shadow: 0 0 0 10px rgba(0, 188, 212, 0.2);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.stat-card .stat-label {
  font-size: 1rem;
  color: var(--medium-gray);
}

/* Contact Page */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.contact-methods {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.contact-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.contact-card.primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.contact-card.primary .contact-icon {
  background-color: var(--secondary-color);
}

.contact-card.primary h3 {
  color: var(--white);
}

.contact-card.primary p,
.contact-card.primary small {
  color: var(--medium-gray);
}

.contact-card.primary a {
  color: var(--white);
}

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

.contact-icon {
  background-color: var(--primary-color);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-info small {
  font-size: 0.85rem;
  color: var(--light-text-color);
  display: block;
  margin-bottom: 15px;
}

.contact-info a {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-btn:hover {
  background-color: #0097a7;
}

.contact-btn.whatsapp {
  background-color: #25d366;
}

.contact-btn.whatsapp:hover {
  background-color: #1da851;
}

.contact-btn.facebook {
  background-color: #3b5998;
}

.contact-btn.facebook:hover {
  background-color: #2d4373;
}

.hours-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-gray);
}

.status-indicator.open {
  background-color: var(--success-color);
}

.status-indicator.closed {
  background-color: var(--error-color);
}

.contact-form-section {
  flex: 2 1 500px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  padding: 30px;
}

.contact-form-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

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

.contact-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 20px;
}

/* Support Page */
.support-content {
  margin-top: 40px;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.support-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.support-card.emergency {
  background-color: var(--error-color);
  color: var(--white);
}

.support-card.emergency .support-icon {
  background-color: var(--white);
  color: var(--error-color);
}

.support-card.emergency h3 {
  color: var(--white);
}

.support-card.emergency p {
  color: var(--medium-gray);
}

.support-card.emergency .support-price {
  color: var(--white);
}

.support-card.emergency .btn-primary {
  background-color: var(--white);
  color: var(--error-color);
  border-color: var(--white);
}

.support-card.emergency .btn-primary:hover {
  background-color: var(--medium-gray);
  color: var(--error-color);
}

.support-icon {
  background-color: var(--secondary-color);
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.support-card p {
  color: var(--light-text-color);
  font-size: 0.95rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.support-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.faq-section {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  padding: 30px;
}

.faq-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--light-gray);
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: var(--secondary-color);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
  background-color: var(--white);
}

.faq-answer p {
  padding: 15px 0;
  color: var(--text-color);
  line-height: 1.7;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 50px 0 20px 0;
  margin-top: auto;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-text h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin: 0;
}

.footer-logo-text p {
  font-size: 0.85rem;
  color: var(--medium-gray);
  margin: 0;
}

.footer-section p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: var(--white);
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--secondary-color);
}

.footer-section h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--medium-gray);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.footer-contact .contact-item i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.footer-contact .contact-item a {
  color: var(--medium-gray);
}

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

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  position: relative;
}

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  position: relative;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--medium-gray);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--medium-gray);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--white);
}



/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow-medium);
  width: 90%;
  max-width: 600px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--medium-gray);
}

.modal-header h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-header h2 i {
  color: var(--secondary-color);
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--light-text-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 25px;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--medium-gray);
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

/* Cart Modal Specific */
.empty-cart {
  text-align: center;
  padding: 50px 20px;
  color: var(--light-text-color);
}

.empty-cart i {
  font-size: 4rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.empty-cart p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--medium-gray);
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.cart-item-details {
  font-size: 0.9rem;
  color: var(--light-text-color);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.quantity-controls .qty-btn {
  background-color: var(--light-gray);
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.quantity-controls .qty-btn:hover {
  background-color: var(--medium-gray);
}

.quantity-controls span {
  padding: 8px 12px;
  font-weight: 600;
  color: var(--text-color);
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  min-width: 80px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--error-color);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.cart-item-remove:hover {
  color: #a72835;
}

.cart-total {
  flex-grow: 1;
  text-align: right;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.cart-total h3 {
  margin: 0;
}

.cart-total span {
  font-weight: 700;
  color: var(--secondary-color);
}

/* Service Form Modal */
.service-form .form-group,
.service-form .form-row {
  margin-bottom: 15px;
}

.service-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.service-estimate {
  flex-grow: 1;
  text-align: left;
}

.service-estimate h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.service-estimate span {
  font-weight: 700;
  color: var(--secondary-color);
}

.estimate-note {
  font-size: 0.85rem;
  color: var(--light-text-color);
}

/* Product Detail Modal */
.product-modal {
  max-width: 900px;
}

.product-detail-content {
  padding: 25px;
}

.product-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.product-detail-image-section {
  flex: 1 1 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-detail-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 10px;
}

.product-badges .badge {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-badges .badge.stock.in-stock {
  background-color: var(--success-color);
}

.product-badges .badge.stock.out-of-stock {
  background-color: var(--error-color);
}

.product-badges .badge.featured {
  background-color: var(--accent-color);
}

.product-detail-info {
  flex: 1 1 400px;
}

.product-detail-category {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.product-detail-name {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.product-detail-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 25px;
}

.product-specifications {
  margin-bottom: 30px;
}

.product-specifications h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--medium-gray);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: var(--light-text-color);
}

.spec-value {
  color: var(--text-color);
}

.product-detail-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.product-detail-actions .btn-primary {
  flex-grow: 1;
}

/* Blog Post Modal */
.blog-modal {
  max-width: 900px;
}

.blog-post-content {
  padding: 25px;
}

.blog-post-full-header {
  margin-bottom: 25px;
}

.blog-post-full-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.blog-post-full-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--light-text-color);
}

.blog-post-full-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-post-full-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.blog-post-full-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-color);
}

.blog-post-full-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-post-full-content ul,
.blog-post-full-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.blog-post-full-content li {
  margin-bottom: 8px;
}

.blog-post-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--medium-gray);
}

.blog-post-like-btn {
  background-color: var(--light-gray);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-post-like-btn:hover {
  background-color: var(--medium-gray);
  color: var(--secondary-color);
}

.blog-post-share {
  display: flex;
  gap: 10px;
}

.share-btn {
  background-color: var(--medium-gray);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

.comments-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--medium-gray);
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.comments-header h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0;
}

.comment {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--light-text-color);
  margin-bottom: 10px;
}

.comment-author {
  font-weight: 600;
  color: var(--primary-color);
}

.comment-content p {
  margin: 0;
  line-height: 1.6;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  display: none; /* Hidden by default */
}

.loading-spinner {
  text-align: center;
  color: var(--primary-color);
}

.loading-spinner i {
  font-size: 3rem;
  margin-bottom: 15px;
}

.loading-spinner p {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--info-color);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  z-index: 3001;
  animation: slideIn 0.5s ease forwards;
}

.notification.success {
  background-color: var(--success-color);
}

.notification.error {
  background-color: var(--error-color);
}

.notification.warning {
  background-color: var(--accent-color);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Checkout Modal */
.checkout-steps {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--medium-gray);
  padding-bottom: 15px;
}

.step-indicator {
  padding: 10px 15px;
  font-weight: 600;
  color: var(--light-text-color);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
}

.step-indicator.active {
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

.checkout-step-content h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.checkout-step-content .form-group {
  margin-bottom: 15px;
}

.checkout-step-content label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.checkout-step-content .form-help {
  display: block;
  font-size: 0.85rem;
  color: var(--light-text-color);
  margin-top: 5px;
  font-style: italic;
}

.checkout-step-content .radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--light-gray);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
}

.checkout-step-content .radio-label:hover {
  background-color: var(--medium-gray);
  border-color: var(--secondary-color);
}

.checkout-step-content .radio-label input[type="radio"] {
  width: auto;
  margin-right: 5px;
  transform: scale(1.2);
  accent-color: var(--secondary-color);
}

.checkout-step-content .radio-label i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.checkout-step-content .radio-label input[type="radio"]:checked + i {
  color: var(--secondary-color);
}

.payment-method-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method-card:hover {
  background-color: var(--light-gray);
  border-color: var(--secondary-color);
}

.payment-method-card input[type="radio"]:checked + i {
  color: var(--secondary-color);
}

.payment-info-box {
  background-color: var(--info-color);
  color: var(--white);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.95rem;
}

.order-summary-details {
  background-color: var(--light-gray);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
}

.summary-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--medium-gray);
}

.summary-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-section h4 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.summary-section ul {
  list-style: none;
  padding: 0;
}

.summary-section ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text-color);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 10px;
}

.summary-total.final-total {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  border-top: 1px solid var(--medium-gray);
  padding-top: 10px;
  margin-top: 15px;
}

.summary-section p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text-color);
}

.summary-section p strong {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-right: 10px;
}

.confirmation-note {
  font-size: 0.9rem;
  color: var(--light-text-color);
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .header-main-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-section {
    width: 100%;
    max-width: 100%;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 15px;
  }

  .emergency-contact {
    width: 100%;
    text-align: center;
  }

  .emergency-contact .emergency-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .contact-info {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .contact-item {
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .contact-item i {
        font-size: 1.1rem;
        min-width: 18px;
    }
    
    .contact-item a {
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        color: #f39c12 !important;
    }
    
    .social-links {
        width: 100%;
        justify-content: center;
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }

    .logo-text .tagline {
        font-size: 0.8rem;
    }

    .action-btn span {
        display: none;
    }

    .action-btn {
        padding: 5px;
    }

    .mobile-only {
        display: block;
    }

    .header-actions .action-item.mobile-menu-item {
        display: block;
    }

    .header-actions .action-item:not(.mobile-only):not(.mobile-menu-item) {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-image {
        width: 100%;
        height: 300px;
    }

    .hero-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .services-grid, .products-showcase, .features-grid, .blog-preview, .products-grid, .achievements-grid, .brands-grid, .support-options, .contact-methods {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .product-categories, .blog-categories {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px; /* For scrollbar */
    }

    .product-categories::-webkit-scrollbar, .blog-categories::-webkit-scrollbar {
        height: 5px;
    }

    .product-categories::-webkit-scrollbar-thumb, .blog-categories::-webkit-scrollbar-thumb {
        background: var(--medium-gray);
        border-radius: 5px;
    }

    .products-filters {
        justify-content: flex-start;
    }

    .filter-group {
        width: 100%;
        justify-content: space-between;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-pricing {
        width: 100%;
        align-items: flex-start;
    }

    .featured-post .blog-post-image {
        height: 250px;
    }

    .featured-post .blog-post-info {
        padding: 20px;
    }

    .featured-post .blog-post-title {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input, .newsletter-form .btn-primary {
        max-width: 100%;
    }

    .about-intro {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-highlights {
        align-items: center;
    }

    .founder-header {
        flex-direction: column;
        text-align: center;
    }

    .founder-info {
        align-items: center;
    }

    .founder-social {
        justify-content: center;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .whatsapp-float .whatsapp-text {
        display: none; /* Keep text hidden on small screens */
    }

    .modal-content {
        width: 95%;
        margin: 0 10px;
    }

    .cart-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .cart-item-info {
        flex-basis: 100%;
        text-align: center;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .cart-item-price {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }
  }


          .team-page { padding-top: 0; }
        .team-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white; padding: 80px 0; text-align: center;
        }
        .hero-title { 
          font-size: 3rem; 
          font-weight: 700; 
          margin-bottom: 20px;
        }
        .hero-subtitle { 
          font-size: 1.2rem; 
          opacity: 0.9; 
          max-width: 600px; 
          margin: 0 auto;
        }
        .section-title { 
          text-align: center; 
          font-size: 2.5rem; 
          color: var(--primary-color); margin-bottom: 50px; font-weight: 700;
        }
        
        .trust-section { 
          padding: 80px 0; 
          background: white;
        }
        .trust-grid { 
          display: grid; 
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
          gap: 30px; 
        }
        .trust-card { text-align: center; padding: 40px 20px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
        .trust-card:hover { transform: translateY(-10px); }
        .trust-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: white; }
        .trust-card h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; }
        
        .team-members { padding: 80px 0; background: var(--light-gray); }
        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
        .team-member { background: white; border-radius: 20px; padding: 30px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
        .team-member:hover { transform: translateY(-5px); }
        .ceo-card { border: 3px solid var(--accent-color); position: relative; }
        .ceo-card::before { content: "CEO & Founder"; position: absolute; top: -15px; left: 30px; background: var(--accent-color); color: white; padding: 5px 15px; border-radius: 15px; font-size: 0.9rem; font-weight: 600; }
        
        .member-photo { text-align: center; margin-bottom: 25px; }
        .photo-placeholder { width: 120px; height: 120px; background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 3rem; color: white; }
        .member-name { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 5px; font-weight: 700; }
        .member-title { color: var(--secondary-color); font-size: 1.1rem; margin-bottom: 15px; font-weight: 600; }
        .member-credentials { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
        .credential { background: var(--light-gray); padding: 5px 10px; border-radius: 15px; font-size: 0.85rem; color: var(--primary-color); font-weight: 500; }
        .member-bio { line-height: 1.6; margin-bottom: 20px; color: var(--light-text-color); }
        .member-specialties { color: var(--light-text-color); }
        
        .milestones-section { padding: 80px 0; background: white; }
        .milestones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .milestone-card { text-align: center; padding: 40px 20px; border-radius: 15px; background: var(--light-gray); transition: transform 0.3s ease; }
        .milestone-card:hover { transform: translateY(-5px); }
        .milestone-icon { width: 70px; height: 70px; background: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: white; }
        .milestone-number { font-size: 2.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; }
        .milestone-card h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; }
        .milestone-card p { color: var(--light-text-color); line-height: 1.6; }
        
        .team-cta { padding: 80px 0; background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white; text-align: center; }
        .cta-content h2 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; }
        .cta-content p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .cta-buttons .btn-outline { background: white; color: var(--primary-color); border-color: white; }
        .cta-buttons .btn-outline:hover { background: transparent; color: white; }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 2rem; }
            .section-title { font-size: 2rem; }
            .team-grid { grid-template-columns: 1fr; }
            .trust-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
            .milestones-grid { grid-template-columns: 1fr; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .cta-content h2 { font-size: 2rem; }
        }


                /* Web Hosting Section Styles */
        .web-hosting-section { padding: 80px 0; background: white; }
        .hosting-intro { text-align: center; max-width: 800px; margin: 0 auto 60px; font-size: 1.1rem; line-height: 1.8; color: var(--light-text-color); }
        .subsection-title { font-size: 2rem; color: var(--primary-color); margin-bottom: 40px; text-align: center; font-weight: 600; }
        
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }
        .service-card { background: var(--light-gray); border-radius: 15px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
        .service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: white; }
        .service-card h4 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.3rem; text-align: center; }
        .service-card p { color: var(--light-text-color); margin-bottom: 20px; line-height: 1.6; text-align: center; }
        .service-features { list-style: none; padding: 0; }
        .service-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: var(--light-text-color); }
        .service-features i { color: var(--success-color); font-size: 0.9rem; }
        
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }
        .feature-item { text-align: center; padding: 30px 20px; }
        .feature-icon { width: 70px; height: 70px; background: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: white; }
        .feature-item h4 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.2rem; }
        .feature-item p { color: var(--light-text-color); line-height: 1.6; }
        
        .specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 60px; }
        .spec-category { background: var(--light-gray); border-radius: 12px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .spec-category h4 { color: var(--primary-color); margin-bottom: 20px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
        .spec-category h4 i { color: var(--secondary-color); }
        .spec-category ul { list-style: none; padding: 0; }
        .spec-category li { padding: 8px 0; color: var(--light-text-color); border-bottom: 1px solid var(--medium-gray); }
        .spec-category li:last-child { border-bottom: none; }
        
        .hosting-cta { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-radius: 20px; padding: 50px 30px; text-align: center; color: white; }
        .hosting-cta h3 { font-size: 2rem; margin-bottom: 15px; }
        .hosting-cta p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
        .hosting-cta .cta-buttons { justify-content: center; }
        .hosting-cta .btn-primary { background: white; color: var(--primary-color); }
        .hosting-cta .btn-primary:hover { background: var(--light-gray); }
        .hosting-cta .btn-secondary { background: transparent; border: 2px solid white; }
        .hosting-cta .btn-secondary:hover { background: white; color: var(--primary-color); }
        
        @media (max-width: 768px) {
            .services-grid, .features-grid, .specs-grid { grid-template-columns: 1fr; }
            .hosting-cta { padding: 40px 20px; }
            .hosting-cta h3 { font-size: 1.5rem; }
        }


        .trash-boat {
          display: flex;
          padding-bottom: 0;
          justify-content: center;
          align-items: center;
          height: 90vh;
          background-color: #f5f5f5;
          font-family: Arial, sans-serif;
          color: #333;
          text-align: center;
        }