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

body {
  font-family: "Poppins", sans-serif;
  color: #1f2933;
  background: #ffffff;
  overflow-x: hidden;
}

/* Header */
.header {
  background: linear-gradient(135deg, #0a4d8c 0%, #0066b3 100%);
  padding: 8px 0;
  position: relative;
  overflow: hidden;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  position: relative;
  z-index: 10;
}

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

.logo-icon svg {
  width: 50px;
  height: 50px;
}

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

.logo-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 12px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.3s;
  padding: 5px 8px;
}

.nav a:hover,
.nav a.active {
  color: #00b4d8;
}

.header-phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: white;
  white-space: nowrap;
}

.phone-label {
  font-size: 10px;
  opacity: 0.9;
}

.phone-number {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.header-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  color: #1f2933;
  transition: transform 0.3s;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
}

.header-cta:hover {
  transform: scale(1.05);
}

.header-cta small {
  font-size: 9px;
  font-weight: 400;
  display: block;
}

.leaf {
  position: absolute;
  width: 80px;
  height: 80px;
  background: url("/placeholder.svg?height=80&width=80") no-repeat center;
  background-size: contain;
}

.leaf-1 {
  top: 0;
  right: 50px;
}

.leaf-2 {
  top: 20px;
  right: 0;
}

/* Side Order Button */
.side-order-btn {
  position: fixed;
  left: -45px;
  top: 50%;
  transform: rotate(-90deg);
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  padding: 15px 30px;
  color: #1f2933;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 10px 10px;
  z-index: 100;
  transition: left 0.3s;
}

.side-order-btn:hover {
  left: -40px;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #0a4d8c 0%, #0066b3 50%, #0077cc 100%);
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("/placeholder.svg?height=150&width=1920") repeat-x;
  background-size: auto 100%;
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  color: #ffd700;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-image {
  text-align: center;
  margin-bottom: 30px;
}

.hero-image img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-features {
  list-style: none;
  color: white;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
}

.checkmark {
  color: #ffd700;
  font-weight: bold;
}

.hero-info {
  flex: 1;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.hero-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-services p {
  font-size: 14px;
  margin-bottom: 15px;
}

.hero-services ul {
  list-style: none;
  padding-left: 0;
}

.hero-services li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
}

.hero-services li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd700;
}

.order-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
  border: none;
  padding: 18px 50px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4);
  text-decoration: none;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.5);
}

/* Benefits Section */
.benefits {
  background: linear-gradient(180deg, #0077cc 0%, #0a4d8c 100%);
  padding: 80px 0;
  position: relative;
}

.benefits h2 {
  text-align: center;
  color: #ffd700;
  font-size: 36px;
  margin-bottom: 40px;
}

.benefits-image {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-image img {
  max-width: 700px;
  width: 100%;
  height: auto;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px 15px;
  color: white;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card.highlight {
  background: linear-gradient(135deg, #00b4d8 0%, #0077cc 100%);
  border: 2px solid #ffd700;
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
  color: #ffd700;
}

.benefit-card ul {
  list-style: none;
  font-size: 12px;
}

.benefit-card li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.benefit-card .check {
  color: #ffd700;
}

/* Why Section */
.why-section {
  background: linear-gradient(180deg, #0a4d8c 0%, #0066b3 100%);
  padding: 80px 0;
}

.why-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-section h2 {
  color: #ffd700;
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.why-content {
  color: white;
  line-height: 1.8;
}

.why-content p {
  margin-bottom: 20px;
  font-size: 15px;
}

/* Services Section */
.services {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  color: #ffd700;
  font-size: 36px;
  margin-bottom: 50px;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.service-card {
  background: linear-gradient(180deg, #e6f4ff 0%, #b8e0ff 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  color: #0a4d8c;
  font-size: 20px;
  padding: 20px 20px 10px;
  text-align: center;
  font-style: italic;
}

.service-card p {
  color: #1f2933;
  font-size: 13px;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.service-btn {
  width: 100%;
  background: linear-gradient(135deg, #0a4d8c 0%, #0066b3 100%);
  border: none;
  padding: 15px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s;
  text-decoration: none;
}

.service-btn:hover {
  background: linear-gradient(135deg, #0066b3 0%, #0077cc 100%);
}

.service-btn span {
  transition: transform 0.3s;
}

.service-btn:hover span {
  transform: translateX(5px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0a4d8c 0%, #0066b3 100%);
  padding: 40px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo .logo-icon svg {
  width: 60px;
  height: 60px;
}

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

.footer-logo .logo-name {
  font-size: 28px;
  font-weight: 800;
  color: #ffd700;
}

.footer-logo .logo-tagline {
  font-size: 14px;
  letter-spacing: 3px;
  color: white;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #00b4d8;
}

.footer-order-btn {
  background: #e6f4ff;
  border: none;
  padding: 15px 25px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #0a4d8c;
  transition: transform 0.3s;
  text-decoration: none;
}

.footer-order-btn:hover {
  transform: scale(1.05);
}

.footer-contacts {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 20px 0;
  color: white;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-item .city {
  font-size: 12px;
  opacity: 0.8;
}

.contact-item .phone {
  font-size: 14px;
  font-weight: 600;
}

/* ==================== */
/* PAGE STYLES */
/* ==================== */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0a4d8c 0%, #0066b3 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: #ffd700;
  font-size: 42px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Page Styles */
.about-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-text h2 {
  color: #ffd700;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  color: white;
  line-height: 1.8;
  margin-bottom: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

.stat-label {
  color: white;
  font-size: 14px;
}

.values-section h2,
.team-section h2 {
  color: #ffd700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.value-card h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.value-card p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

.team-intro {
  color: white;
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #ffd700;
}

.team-card h3 {
  color: white;
  margin-bottom: 5px;
}

.team-card p {
  color: #00b4d8;
  font-size: 14px;
}

/* Certificates Page Styles */
.certificates-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
}

.cert-intro {
  text-align: center;
  margin-bottom: 50px;
}

.cert-intro h2 {
  color: #ffd700;
  font-size: 32px;
  margin-bottom: 15px;
}

.cert-intro p {
  color: white;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.certificate-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.certificate-card:hover {
  transform: translateY(-10px);
}

.cert-image {
  margin-bottom: 15px;
}

.cert-image img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border: 2px solid #e0e0e0;
}

.certificate-card h3 {
  color: #0a4d8c;
  font-size: 16px;
  margin-bottom: 5px;
}

.certificate-card p {
  color: #666;
  font-size: 12px;
}

.quality-section h2 {
  color: #ffd700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.quality-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}

.quality-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.quality-card h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.quality-card p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

/* Pricing Page Styles */
.pricing-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-intro h2 {
  color: #ffd700;
  font-size: 32px;
  margin-bottom: 15px;
}

.pricing-intro p {
  color: white;
  font-size: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  background: linear-gradient(135deg, #00b4d8 0%, #0077cc 100%);
  border: 3px solid #ffd700;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.08);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd700;
  color: #0a4d8c;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-header h3 {
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 15px;
}

.price {
  margin-bottom: 25px;
}

.price .currency {
  color: white;
  font-size: 18px;
  vertical-align: top;
}

.price .amount {
  color: white;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.price .period {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  color: white;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features .check {
  color: #ffd700;
}

.pricing-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #1f2933;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}

.pricing-btn:hover {
  transform: scale(1.05);
}

.equipment-section h2 {
  color: #ffd700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.equipment-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.equipment-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.equipment-card h3 {
  color: #ffd700;
  margin-bottom: 5px;
}

.equipment-card p {
  color: white;
  font-size: 14px;
  margin-bottom: 15px;
}

.equipment-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.equipment-price span {
  color: #00b4d8;
  font-size: 13px;
}

/* Delivery Page Styles */
.delivery-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
}

.delivery-intro {
  text-align: center;
  margin-bottom: 50px;
}

.delivery-intro h2 {
  color: #ffd700;
  font-size: 32px;
  margin-bottom: 15px;
}

.delivery-intro p {
  color: white;
  font-size: 16px;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  color: #0a4d8c;
  margin-bottom: 20px;
}

.step-card h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.step-card p {
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

.delivery-areas h2 {
  color: #ffd700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 15px;
}

.areas-intro {
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.area-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

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

.area-card h3 {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 8px;
}

.area-card p {
  color: white;
  font-size: 14px;
  margin-bottom: 12px;
}

.delivery-time {
  display: inline-block;
  background: rgba(0, 180, 216, 0.3);
  color: #00b4d8;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Delivery Types Section with Card Images */
.delivery-types {
  margin-bottom: 60px;
}

.delivery-types h2 {
  color: #ffd700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.type-card {
  background: linear-gradient(180deg, #e6f4ff 0%, #b8e0ff 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.type-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.type-card h3 {
  color: #0a4d8c;
  font-size: 22px;
  padding: 20px 20px 10px;
  text-align: center;
  font-style: italic;
}

.type-card p {
  color: #1f2933;
  font-size: 14px;
  padding: 0 20px 15px;
  line-height: 1.6;
  flex: 1;
}

.type-card ul {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.type-card ul li {
  color: #0a4d8c;
  font-size: 13px;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-weight: 500;
}

.type-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00b4d8;
  font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-section h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-section p {
  color: white;
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #1f2933;
  padding: 16px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ==========================================
   PRODUCTS PAGE STYLES
   ========================================== */

.products-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
  color: white;
}

.products-intro {
  text-align: center;
  margin-bottom: 50px;
}

.products-intro h2 {
  color: #ffd700;
  font-size: 32px;
  margin-bottom: 15px;
}

.products-intro p {
  color: white;
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: linear-gradient(180deg, #e6f4ff 0%, #b8e0ff 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card.featured {
  border: 3px solid #ffd700;
  position: relative;
}

.product-card.featured::before {
  content: "Featured";
  position: absolute;
  top: 15px;
  right: -30px;
  background: #ffd700;
  color: #0a4d8c;
  padding: 5px 35px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 25px;
  color: #1f2933;
}

.product-info h3 {
  color: #0a4d8c;
  font-size: 18px;
  margin-bottom: 12px;
  font-style: italic;
}

.product-info > p {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #4a5568;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00b4d8;
  font-weight: bold;
}

.product-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #0a4d8c 0%, #0066b3 100%);
  border: none;
  padding: 14px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-btn:hover {
  background: linear-gradient(135deg, #0066b3 0%, #0077cc 100%);
  transform: translateY(-2px);
}

/* Products Quality Section */
.products-content .quality-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.products-content .quality-section h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.quality-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.quality-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.quality-item:hover {
  transform: translateY(-5px);
}

.quality-item h3 {
  color: #00b4d8;
  font-size: 18px;
  margin-bottom: 10px;
}

.quality-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

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

.services-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
  color: white;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-detail-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-detail-info h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 15px;
}

.service-detail-info > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail-info h4 {
  color: #00b4d8;
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 20px;
}

.service-detail-info ul {
  list-style: none;
  margin-bottom: 25px;
}

.service-detail-info ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.service-detail-info ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

.service-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #1f2933;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Additional Services */
.additional-services {
  margin-bottom: 60px;
}

.additional-services h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.additional-service-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.additional-service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.additional-service-card h3 {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 12px;
}

.additional-service-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

/* Service Areas */
.service-areas {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-areas h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
}

.service-areas > p {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 30px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-areas .area-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-areas .area-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.service-areas .area-card h3 {
  color: #00b4d8;
  font-size: 18px;
  margin-bottom: 10px;
}

.service-areas .area-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.5;
}

/* ==========================================
   PROJECTS PAGE STYLES
   ========================================== */

.projects-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
  color: white;
}

.featured-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-project-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-project-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.featured-project-info h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 20px;
}

.featured-project-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Customers Section */
.customers-section {
  margin-bottom: 60px;
}

.customers-section h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
}

.customers-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 30px;
}

.customers-table {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
}

.customers-table table {
  width: 100%;
  border-collapse: collapse;
}

.customers-table th,
.customers-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.customers-table th {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  font-weight: 600;
  font-size: 14px;
}

.customers-table td {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.customers-table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

/* Testimonials Section */
.testimonial-section {
  margin-bottom: 60px;
}

.testimonial-section h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.testimonial-author {
  color: #ffd700;
  font-size: 13px;
  font-weight: 600;
}

/* CTA Section */
.projects-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.projects-cta h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 15px;
}

.projects-cta p {
  color: white;
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #1f2933;
  padding: 16px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ==========================================
   CERTIFICATES PAGE STYLES
   ========================================== */

.certificates-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
  color: white;
}

.certificates-intro {
  text-align: center;
  margin-bottom: 50px;
}

.certificates-intro p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Registration Section */
.registration-section {
  margin-bottom: 60px;
}

.registration-section h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.registration-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.registration-card:hover {
  transform: translateY(-5px);
}

.registration-card h3 {
  color: #00b4d8;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.registration-card p {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

/* Standards Section */
.standards-section {
  margin-bottom: 60px;
}

.standards-section h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.standard-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.standard-card:hover {
  transform: translateY(-5px);
}

.standard-card h3 {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 12px;
}

.standard-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

/* Compliance Section */
.compliance-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-section h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 20px;
}

.compliance-section > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 20px;
}

.compliance-list {
  list-style: none;
}

.compliance-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.compliance-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00b4d8;
  font-weight: bold;
}

/* Experience Section */
.experience-section {
  margin-bottom: 60px;
}

.experience-section h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 25px;
}

.experience-content {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.experience-content p:last-child {
  margin-bottom: 0;
}

/* Verification Section */
.verification-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.verification-section h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 20px;
}

.verification-section > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 25px;
}

.verification-contact {
  display: inline-block;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px 35px;
}

.verification-contact p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 8px;
}

.verification-contact p:last-child {
  margin-bottom: 0;
}

.verification-contact a {
  color: #00b4d8;
  text-decoration: none;
}

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

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Contact Content - for new contact page structure */
.contact-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 80px 0;
  color: white;
}

.contact-content .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-intro-main {
  text-align: center;
  margin-bottom: 50px;
}

.contact-intro-main p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-section {
  margin-bottom: 60px;
}

.contact-form-section h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-details-section {
  margin-bottom: 60px;
}

.contact-details-section h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-detail-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-card h3 {
  color: #00b4d8;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-detail-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

.contact-detail-card a {
  color: #ffd700;
  text-decoration: none;
}

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

.contact-detail-card em {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Map Section */
.contact-content .map-section {
  margin-bottom: 50px;
}

.contact-content .map-section h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 25px;
}

.contact-content .map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-content .map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.contact-content .map-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
}

/* Contact Form Styles */
.contact-content .contact-form {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-content .contact-form label {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-content .contact-form input,
.contact-content .contact-form select,
.contact-content .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.contact-content .contact-form input::placeholder,
.contact-content .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-content .contact-form input:focus,
.contact-content .contact-form select:focus,
.contact-content .contact-form textarea:focus {
  outline: none;
  border-color: #00b4d8;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.contact-content .contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-content .contact-form select option {
  background: #0a4d8c;
  color: white;
}

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

.contact-content .contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-content .contact-form .submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #0a4d8c;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-content .contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ==========================================
   ABOUT PAGE ADDITIONAL STYLES
   ========================================== */

/* Vision & Mission Cards */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.vision-card,
.mission-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-card h3,
.mission-card h3 {
  color: #ffd700;
  font-size: 22px;
  margin-bottom: 15px;
}

.vision-card p,
.mission-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

/* Guiding Principle */
.guiding-principle {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  text-align: center;
}

.guiding-principle h3 {
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 20px;
}

.guiding-principle blockquote {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Work Environment */
.work-environment {
  margin-bottom: 60px;
}

.work-environment h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

.environment-content {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.environment-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.environment-content p:last-child {
  margin-bottom: 0;
}

.environment-content strong {
  color: #ffd700;
}

.contact-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #0a4d8c 0%, #083d6e 100%);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Contact Info Card */
.contact-info-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-card h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.detail-text h3 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.detail-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.regional-contacts {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.regional-contacts h3 {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 15px;
}

.regional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.regional-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.regional-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.regional-item strong {
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.regional-item span {
  color: #00b4d8;
  font-size: 14px;
  font-weight: 500;
}

/* Contact Form Card */
.contact-form-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form-card h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 25px;
}

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

.contact-form label {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00b4d8;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form select option {
  background: #0a4d8c;
  color: white;
}

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

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #0a4d8c;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Map Section */
.map-section {
  margin-bottom: 50px;
}

.map-section h2 {
  color: #ffd700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 25px;
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 77, 140, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay p {
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* Small inline social media icons */
.social-section {
  text-align: center;
  padding: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h3 {
  color: #ffd700;
  font-size: 22px;
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  transform: translateY(-3px);
}

/* Individual social icon hover colors */
.social-link:nth-child(1):hover {
  background: #1877f2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-link:nth-child(2):hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-link:nth-child(3):hover {
  background: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.social-link:nth-child(4):hover {
  background: #0a66c2;
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.4);
}

.social-link:nth-child(5):hover {
  background: #ff0000;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.social-link:nth-child(6):hover {
  background: #0088cc;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

/* Contact Page Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

@media (max-width: 600px) {
  .contact-info-card,
  .contact-form-card {
    padding: 25px;
  }

  .contact-info-card h2,
  .contact-form-card h2,
  .map-section h2 {
    font-size: 22px;
  }

  .social-row {
    gap: 12px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }
}

/* Promotions Page Styles */
.promotions-content {
  background: linear-gradient(180deg, #0066b3 0%, #0a4d8c 100%);
  padding: 60px 0 80px;
  color: white;
}

.promo-header {
  padding-top: 80px;
  padding-bottom: 30px;
}

.promo-banner {
  background: linear-gradient(135deg, #00b4d8 0%, #0077cc 100%);
  color: white;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.promo-badge {
  background: #ffd700;
  color: #0a4d8c;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.promo-btn,
.promo-link {
  display: inline-block;
  background: #ffd700;
  color: #0a4d8c;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.promo-card {
  background: linear-gradient(135deg, #0077cc 0%, #005fa3 100%);
  color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.promo-discount {
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 10px;
}

.promo-card h3 {
  margin-top: 10px;
  color: #ffd700;
}

.promo-card p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-top: 10px;
}

.promo-code,
.promo-expiry {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.loyalty-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 26px;
  border-radius: 12px;
  margin-top: 20px;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.loyalty-tier {
  background: linear-gradient(180deg, #00b4d8 0%, #0066b3 100%);
  border-radius: 12px;
  color: white;
  padding: 18px;
  text-align: center;
}

.tier-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .promos-grid {
    grid-template-columns: 1fr;
  }

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

/* Order Page Styles */
.order-header {
  background: linear-gradient(135deg, #0066b3 0%, #0077cc 100%);
  padding: 60px 20px;
  color: #ffd700;
}

.order-header h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.order-content {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, #0a4d8c 0%, #0066b3 50%, #0077cc 100%);
}

.order-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.order-form-section {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(3, 37, 65, 0.12);
  color: white;
}

.order-form h2 {
  color: #ffd700;
  margin-bottom: 14px;
}

.step-indicator {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.step-indicator .step {
  flex: 1;
  background: rgba(255,255,255,0.04);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.step-indicator .step.active {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #1f2933;
}

.form-step { display: none; }
.form-step.active { display: block; }

.product-selection { display: grid; gap: 12px; }

.product-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  padding: 12px;
  border-radius: 10px;
}

.product-item img { width: 80px; height: auto; border-radius: 8px; }
.product-info h3 { margin-bottom: 6px; color: white; }
.product-price { font-weight: 700; color: #ffd700; }

.quantity-control { margin-left: auto; display:flex; align-items:center; gap:8px; }
.qty-btn {
  width:36px; height:36px; border-radius:8px; border:none; cursor:pointer;
  background: linear-gradient(135deg,#ffedd5,#ffd59a); color:#1f2933; font-weight:700;
}
.qty-input { width:64px; text-align:center; padding:8px; border-radius:6px; border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.02); color: white; }

.equipment-selection, .promo-code-section, .form-section { margin-top:18px; }
.apply-promo-btn, .next-step-btn, .submit-order-btn { background: linear-gradient(135deg,#ffd700,#ffb347); color:#1f2933; padding:12px 18px; border-radius:8px; border:none; cursor:pointer; font-weight:700; }
.prev-step-btn { background: rgba(255,255,255,0.06); color: white; padding:10px 16px; border-radius:8px; border:none; cursor:pointer; }
.step-buttons { display:flex; gap:12px; justify-content:flex-end; margin-top:18px; }

.order-summary {
  background: rgba(0,0,0,0.18);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(3, 37, 65, 0.08);
  position: sticky;
  top: 100px;
  color: white;
}

.order-summary h3 { color:#ffd700; margin-bottom:12px; }
.summary-items { max-height:360px; overflow:auto; }
.summary-item { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px dashed rgba(255,255,255,0.06); }
.summary-item-name { font-weight:600; color:white; }
.summary-row { display:flex; justify-content:space-between; padding:8px 0; font-weight:700; color:white; }
.summary-row.total { font-size:18px; color:#ffd700; }
.summary-benefits { margin-top:12px; display:flex; flex-direction:column; gap:8px; }
.help-section { margin-top:14px; text-align:center; color: rgba(255,255,255,0.9); }
.help-phone { display:inline-block; background: rgba(255,255,255,0.06); color: white; padding:8px 12px; border-radius:8px; text-decoration:none; font-weight:700; }

/* Modal */
.modal { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); align-items:center; justify-content:center; padding:20px; }
.modal.active { display:flex; }
.modal-content { background:white; padding:30px; border-radius:12px; max-width:560px; width:100%; text-align:center; }
.modal-icon.success { font-size:40px; color:#22c55e; background:#ecfdf5; display:inline-block; width:64px; height:64px; line-height:64px; border-radius:50%; margin-bottom:10px; }
.modal-btn { display:inline-block; margin-top:16px; background:linear-gradient(135deg,#00b4d8,#0077cc); color:white; padding:10px 18px; border-radius:8px; text-decoration:none; }

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { position: relative; top: auto; }
}

/* Order form inputs and controls */
.order-form-section .form-group { margin-bottom: 14px; }
.order-form-section .form-group label { display:block; margin-bottom:8px; font-weight:600; color: rgba(255,255,255,0.95); }
.order-form-section input[type="text"],
.order-form-section input[type="email"],
.order-form-section input[type="tel"],
.order-form-section input[type="number"],
.order-form-section select,
.order-form-section textarea {
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  color: white;
  outline: none;
}
.order-form-section input::placeholder,
.order-form-section textarea::placeholder { color: rgba(255,255,255,0.6); }
.order-form-section input:focus,
.order-form-section select:focus,
.order-form-section textarea:focus {
  box-shadow: 0 0 0 4px rgba(0,180,216,0.08);
  border-color: #00b4d8;
}
.order-form-section .form-row { display:flex; gap:12px; }
.order-form-section .form-row .form-group { flex:1; }

/* Equipment, radio and checkbox options */
.equipment-option, .radio-option, .checkbox-option, .payment-option {
  display:flex; align-items:center; gap:12px; padding:10px; border-radius:8px; background: rgba(255,255,255,0.03); margin-bottom:8px; cursor:pointer; color: white;
}
.equipment-option input, .radio-option input, .checkbox-option input, .payment-option input { display:none; }
.checkmark-box, .radio-mark { width:20px; height:20px; border-radius:6px; background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); flex-shrink:0; }
.equipment-option input:checked + .checkmark-box,
.radio-option input:checked + .radio-mark,
.checkbox-option input:checked + .checkmark-box { background: #ffd700; border-color:#ffd700; }
.option-text, .option-content { color: white; }
.option-content small { display:block; color: rgba(255,255,255,0.8); margin-top:4px; font-weight:400; }

/* Promo input group */
.promo-input-group { display:flex; gap:8px; }
.promo-input-group input { flex:1; }
.promo-message { margin-top:8px; color: #ffd700; font-weight:700; }

/* Small adjustments for summary inside dark container */
.summary-item-price, .summary-row span { color: white; }

/* Make delivery information labels and helper text fully visible */
.order-form-section .form-section h3,
.order-form-section .form-section p,
.order-form-section .form-section small,
.order-form-section .form-section label {
  color: #ffffff;
  opacity: 1;
}

.order-form-section select option {
  color: #000000;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Make general container fluid with max-width */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Product card responsiveness */
.product-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.product-item {
  flex: 1 1 280px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  box-sizing: border-box;
}

/* Order layout: form + summary */
.order-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* Sidebar default width for desktop */
.order-summary {
  width: 320px;
  flex-shrink: 0;
}

/* --- Responsive adjustments --- */
@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .header-phone {
    order: 3;
    width: 100%;
    text-align: left;
  }

  .header-cta {
    order: 2;
  }
}

@media (max-width: 768px) {
  /* Stack order form and summary vertically */
  .order-layout {
    flex-direction: column;
  }

  .order-summary {
    width: 100%;
  }

  /* Make header simpler on small screens */
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 8px;
  }

  .nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
  }

  .nav a {
    padding: 6px 10px;
    font-size: 14px;
  }

  .header-phone,
  .header-cta {
    width: 100%;
  }

  .header-cta {
    text-align: center;
    margin-top: 8px;
  }

  /* Form fields: stack columns */
  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100%;
  }

  /* Product items: stack image/info/qty vertically */
  .product-item {
    flex-direction: column;
    align-items: stretch;
  }

  .product-item img {
    max-width: 120px;
    margin: 0 auto;
  }

  .quantity-control {
    justify-content: center;
  }

  /* Step indicator: make it scrollable if needed */
  .step-indicator {
    display: flex;
    overflow-x: auto;
    gap: 8px;
  }

  .step {
    min-width: 90px;
    text-align: center;
  }

  /* Modal: full-width on mobile */
  .modal-content {
    width: 90%;
    max-width: 420px;
  }

  /* Footer: stack elements */
  .footer-container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-order-btn {
    width: 100%;
    text-align: center;
  }

  .footer-contacts {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  .page-header {
    padding: 32px 16px;
    text-align: center;
  }

  .order-form {
    padding: 16px;
  }

  .summary-benefits .benefit-item {
    align-items: flex-start;
  }
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ========================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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, -7px);
}

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

/* Hero Section Responsive */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-info {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-image img {
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-image {
    margin-bottom: 20px;
  }

  .hero-image img {
    max-width: 180px;
  }

  .hero-features li {
    justify-content: center;
    font-size: 14px;
  }

  .hero-info {
    padding: 20px;
  }

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

  .hero-services ul {
    text-align: left;
  }

  .order-btn {
    padding: 15px 35px;
    font-size: 16px;
    display: block;
    max-width: 250px;
    margin: 25px auto 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-image img {
    max-width: 150px;
  }

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

/* Benefits Section Responsive */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits {
    padding: 60px 0;
  }

  .benefits h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .benefits-image {
    margin-bottom: 30px;
  }

  .benefits-image img {
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .benefit-card {
    padding: 20px 12px;
  }

  .benefit-card h3 {
    font-size: 14px;
  }

  .benefit-card ul {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 25px 15px;
  }
}

/* Why Section Responsive */
@media (max-width: 768px) {
  .why-section {
    padding: 60px 0;
  }

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

  .why-content p {
    font-size: 14px;
  }
}

/* Services Section Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .service-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 150px;
  }

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

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

/* ==========================================
   DELIVERY PAGE RESPONSIVE STYLES
   ========================================== */

/* Delivery Steps Responsive */
@media (max-width: 1024px) {
  .delivery-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .delivery-content {
    padding: 60px 0;
  }

  .delivery-intro h2 {
    font-size: 28px;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Delivery Areas Responsive */
@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .delivery-areas h2 {
    font-size: 28px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .area-card {
    padding: 20px 15px;
  }

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

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* Delivery Types (Card Images) Responsive */
@media (max-width: 1024px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .delivery-types h2 {
    font-size: 28px;
  }

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

  .type-card {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .type-card img {
    height: 180px;
  }

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

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

/* CTA Section Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 25px;
  }

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

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

  .cta-btn {
    padding: 14px 35px;
    font-size: 16px;
  }
}

/* ==========================================
   ABOUT PAGE RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

@media (max-width: 768px) {
  .about-content {
    padding: 60px 0;
  }

  .about-text h2 {
    font-size: 28px;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card {
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .values-section h2,
  .team-section h2 {
    font-size: 28px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .value-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

/* ==========================================
   CERTIFICATES PAGE RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1024px) {
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .certificates-content {
    padding: 60px 0;
  }

  .cert-intro h2 {
    font-size: 28px;
  }

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

  .certificate-card {
    padding: 15px;
  }

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

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   PRICING PAGE RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }

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

@media (max-width: 768px) {
  .pricing-content {
    padding: 60px 0;
  }

  .pricing-intro h2 {
    font-size: 28px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
    margin: 0 auto 60px;
  }

  .pricing-card {
    padding: 35px 25px;
  }

  .price .amount {
    font-size: 48px;
  }

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

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

@media (max-width: 480px) {
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .equipment-card {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* ==========================================
   EQUIPMENT CARDS MOBILE STYLES
   ========================================== */

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .equipment-card {
    padding: 20px;
  }

  .equipment-card img {
    width: 120px;
    height: 120px;
  }

  .equipment-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .equipment-card p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .equipment-price {
    gap: 8px;
  }

  .equipment-price span {
    font-size: 14px;
  }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  .equipment-section {
    padding: 0 15px;
  }

  .equipment-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
  }

  .equipment-card {
    padding: 18px 15px;
    text-align: center;
  }

  .equipment-card img {
    width: 110px;
    height: 110px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .equipment-card h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #ffd700;
  }

  .equipment-card p {
    font-size: 13px;
    color: white;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .equipment-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .equipment-price span {
    font-size: 14px;
    color: #00b4d8;
    font-weight: 600;
    background: rgba(0, 180, 216, 0.1);
    padding: 5px 10px;
    border-radius: 6px;
  }
}

/* Mobile Landscape (600px) */
@media (max-width: 600px) {
  .equipment-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 400px;
  }

  .equipment-card {
    padding: 15px 12px;
  }

  .equipment-card img {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }

  .equipment-card h3 {
    font-size: 15px;
  }

  .equipment-card p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .equipment-price span {
    font-size: 12px;
    padding: 4px 8px;
  }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
  .equipment-section {
    padding: 0 10px;
  }

  .equipment-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
  }

  .equipment-card {
    padding: 15px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .equipment-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5px;
  }

  .equipment-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .equipment-card p {
    font-size: 11px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
  }

  .equipment-price {
    width: 100%;
    gap: 5px;
  }

  .equipment-price span {
    display: block;
    width: 100%;
    padding: 6px 8px;
    font-size: 12px;
    text-align: center;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 6px;
  }

  .equipment-price span:first-child {
    background: rgba(0, 180, 216, 0.08);
    margin-bottom: 4px;
  }
}

/* Small Mobile (360px) */
@media (max-width: 360px) {
  .equipment-section h2 {
    font-size: 18px;
  }

  .equipment-grid {
    max-width: 260px;
  }

  .equipment-card {
    padding: 15px 12px;
  }

  .equipment-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
    padding: 8px;
  }

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

  .equipment-card p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .equipment-price span {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* ==========================================
   PROMOTIONS PAGE RESPONSIVE STYLES
   ========================================== */
@media (max-width: 768px) {
  .promo-header {
    padding-top: 60px;
    padding-bottom: 25px;
  }

  .promos-grid {
    gap: 15px;
  }
}

/* ==========================================
   FOOTER RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .footer-contacts {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
  }

  .footer-logo {
    flex-direction: column;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .footer-order-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-contacts {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
  }

  .contact-item {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-contacts {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================
   HEADER RESPONSIVE STYLES - ENHANCED
   ========================================== */
@media (max-width: 1200px) {
  .header-container {
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 13px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 900px) {
  .header {
    padding: 10px 0;
  }

  .header-container {
    flex-wrap: wrap;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 4;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 15px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .header-cta {
    order: 3;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .logo-icon svg {
    width: 40px;
    height: 40px;
  }

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

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

  .header-cta {
    padding: 8px 15px;
    font-size: 13px;
  }

  .header-cta small {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }

  .header-cta {
    display: none;
  }

  .side-order-btn {
    display: none;
  }
}

/* ==========================================
   PAGE HEADER RESPONSIVE STYLES
   ========================================== */
@media (max-width: 768px) {
  .page-header {
    padding: 50px 20px 40px;
  }

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

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

@media (max-width: 480px) {
  .page-header {
    padding: 40px 15px 30px;
  }

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

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

/* ==========================================
   SIDE ORDER BUTTON - MOBILE ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
  .side-order-btn {
    position: fixed;
    left: auto;
    right: 20px;
    bottom: 20px;
    top: auto;
    transform: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
  }

  .side-order-btn::before {
    content: "📦";
    font-size: 24px;
  }

  .side-order-btn:hover {
    left: auto;
  }
}

/* ==========================================
   ORDER PAGE RESPONSIVE STYLES
   ========================================== */

/* Order Page - Desktop (default styles in HTML) */

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .order-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .order-summary {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .order-form-section {
    padding: 20px;
  }

  .product-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .product-item img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto 10px;
  }

  .quantity-control {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  .order-content {
    padding: 40px 0 80px;
  }

  .order-header {
    padding: 40px 15px;
  }

  .order-header h1 {
    font-size: 28px;
  }

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

  .order-layout {
    padding: 0 15px;
  }

  .order-form-section {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .order-form h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  /* Step Indicator */
  .step-indicator {
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .step-indicator .step {
    min-width: 80px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .step-num {
    font-size: 16px;
    margin-right: 5px;
  }

  /* Product Selection */
  .product-selection {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-item {
    padding: 15px;
  }

  .product-item img {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
  }

  .product-info h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .product-info p {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .product-price {
    font-size: 16px;
  }

  .quantity-control {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .qty-input {
    width: 50px;
    padding: 8px 5px;
    font-size: 14px;
  }

  /* Equipment Selection */
  .equipment-selection {
    margin-top: 20px;
  }

  .equipment-selection h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .equipment-option {
    padding: 12px;
    font-size: 13px;
  }

  /* Promo Code Section */
  .promo-code-section {
    margin-top: 20px;
  }

  .promo-code-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .promo-input-group {
    flex-direction: column;
    gap: 10px;
  }

  .promo-input-group input {
    width: 100%;
    padding: 12px 15px;
  }

  .apply-promo-btn {
    width: 100%;
    padding: 12px;
  }

  /* Form Sections */
  .form-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .form-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .form-row .form-group {
    width: 100%;
  }

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

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .order-form-section input[type="text"],
  .order-form-section input[type="email"],
  .order-form-section input[type="tel"],
  .order-form-section input[type="date"],
  .order-form-section select,
  .order-form-section textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  /* Radio and Checkbox Options */
  .radio-option,
  .checkbox-option,
  .payment-option {
    padding: 12px;
    font-size: 13px;
  }

  .option-content small {
    font-size: 11px;
  }

  /* Subscription Options */
  .subscription-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .radio-option {
    flex-direction: row;
    align-items: flex-start;
  }

  .payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .payment-option {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .payment-icon {
    font-size: 24px;
  }

  .payment-content strong {
    font-size: 14px;
  }

  .payment-content small {
    font-size: 12px;
  }

  /* Card Details */
  .card-details {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .card-details h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  /* Terms Section */
  .terms-section {
    margin-top: 20px;
  }

  .checkbox-option span:last-child {
    font-size: 12px;
    line-height: 1.4;
  }

  .checkbox-option a {
    color: #00b4d8;
  }

  /* Step Buttons */
  .step-buttons {
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 25px;
  }

  .step-buttons button {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }

  .prev-step-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }

  /* Order Summary */
  .order-summary {
    max-width: 100%;
    padding: 20px 15px;
    border-radius: 12px;
  }

  .order-summary h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
  }

  .summary-items {
    max-height: 200px;
    margin-bottom: 15px;
  }

  .summary-item {
    padding: 8px 0;
    font-size: 13px;
  }

  .summary-item-name {
    max-width: 70%;
  }

  .summary-row {
    padding: 10px 0;
    font-size: 14px;
  }

  .summary-row.total {
    font-size: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .summary-benefits {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .benefit-item {
    font-size: 11px;
    gap: 8px;
  }

  .benefit-icon {
    flex-shrink: 0;
  }

  .help-section {
    margin-top: 15px;
    padding-top: 15px;
    font-size: 12px;
  }

  .help-phone {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    margin-top: 8px;
  }
}

/* Mobile Landscape (600px) */
@media (max-width: 600px) {
  .order-content {
    padding: 30px 0 70px;
  }

  .order-header {
    padding: 35px 15px;
  }

  .order-header h1 {
    font-size: 26px;
  }

  .order-form-section {
    padding: 15px 12px;
  }

  .order-form h2 {
    font-size: 18px;
  }

  .step-indicator .step {
    min-width: 70px;
    padding: 8px 6px;
    font-size: 11px;
  }

  .step-num {
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
  }

  .product-item img {
    max-width: 100px;
  }

  .product-info h3 {
    font-size: 13px;
  }

  .product-price {
    font-size: 14px;
  }

  .equipment-option {
    padding: 10px;
    font-size: 12px;
  }

  .checkmark-box,
  .radio-mark {
    width: 18px;
    height: 18px;
  }

  .order-form-section .form-group label {
    font-size: 12px;
  }

  .form-section h3 {
    font-size: 15px;
  }

  .summary-item-name {
    font-size: 12px;
  }

  .summary-item-price {
    font-size: 12px;
  }

  .summary-row span {
    font-size: 13px;
  }

  .summary-row.total span {
    font-size: 16px;
  }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
  .order-header h1 {
    font-size: 24px;
  }

  .order-form h2 {
    font-size: 16px;
  }

  .step-indicator {
    justify-content: flex-start;
  }

  .step-indicator .step {
    min-width: 65px;
  }

  .product-item {
    flex-direction: column;
    padding: 12px;
  }

  .product-item img {
    max-width: 90px;
  }

  .quantity-control {
    gap: 5px;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .qty-input {
    width: 44px;
    padding: 6px 4px;
    font-size: 13px;
  }

  .radio-option,
  .payment-option {
    padding: 10px;
  }

  .payment-icon {
    font-size: 20px;
  }

  .payment-content strong {
    font-size: 13px;
  }

  .payment-content small {
    font-size: 11px;
  }

  .step-buttons button {
    padding: 12px 16px;
    font-size: 13px;
  }

  .order-summary {
    padding: 15px 12px;
  }

  .order-summary h3 {
    font-size: 16px;
  }

  .summary-item-name {
    max-width: 65%;
    font-size: 11px;
  }

  .benefit-item {
    font-size: 10px;
  }

  .help-section p {
    font-size: 11px;
  }
}

/* Small Mobile (360px) */
@media (max-width: 360px) {
  .order-header h1 {
    font-size: 22px;
  }

  .step-indicator .step {
    min-width: 55px;
    padding: 6px 4px;
  }

  .step-text {
    font-size: 10px;
  }

  .product-item img {
    max-width: 80px;
  }

  .product-info h3 {
    font-size: 12px;
  }

  .product-price {
    font-size: 13px;
  }

  .qty-btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .qty-input {
    width: 40px;
  }

  .order-form-section input,
  .order-form-section select,
  .order-form-section textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .summary-row.total {
    font-size: 14px;
  }
}

/* ==========================================
   DELIVERY & PAYMENT FORM MOBILE STYLES
   ========================================== */

/* Delivery Form Section - Mobile */
@media (max-width: 768px) {
  /* Step 2: Delivery Form */
  .form-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .form-section h3 {
    font-size: 15px;
    margin-bottom: 12px;
    color: #ffd700;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .form-row .form-group {
    width: 100%;
  }

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

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.9);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    outline: none;
    transition: all 0.3s ease;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #00b4d8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
  }

  .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
  }

  .form-group select option {
    background: #0a4d8c;
    color: white;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 80px;
  }

  /* Contact Details Section */
  .form-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  /* Delivery Address Section */
  .form-section:nth-of-type(2) {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Delivery Schedule Section */
  .form-section:nth-of-type(3) {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Subscription Options */
  .subscription-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .radio-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .radio-option:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .radio-option input {
    display: none;
  }

  .radio-mark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
  }

  .radio-option input:checked + .radio-mark {
    background: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
  }

  .option-content {
    flex: 1;
  }

  .option-content strong {
    display: block;
    font-size: 14px;
    color: white;
    margin-bottom: 3px;
  }

  .option-content small {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
  }
}

/* Step 3: Payment Section - Mobile */
@media (max-width: 768px) {
  .payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
  }

  .payment-option:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .payment-option input {
    display: none;
  }

  .payment-option input:checked ~ .payment-content {
    color: #ffd700;
  }

  .payment-icon {
    font-size: 24px;
    flex-shrink: 0;
  }

  .payment-content {
    flex: 1;
  }

  .payment-content strong {
    display: block;
    font-size: 14px;
    color: white;
    margin-bottom: 2px;
  }

  .payment-content small {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
  }

  /* Card Details */
  .card-details {
    margin-top: 18px;
    padding: 18px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .card-details h3 {
    font-size: 15px;
    color: #ffd700;
    margin-bottom: 15px;
  }

  .card-details .form-group {
    margin-bottom: 12px;
  }

  .card-details .form-row {
    display: flex;
    gap: 12px;
  }

  .card-details .form-row .form-group {
    flex: 1;
  }

  /* Terms Section */
  .terms-section {
    margin-top: 18px;
  }

  .checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .checkbox-option:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  .checkbox-option input {
    display: none;
  }

  .checkmark-box {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.2s ease;
  }

  .checkbox-option input:checked + .checkmark-box {
    background: #ffd700;
    border-color: #ffd700;
  }

  .checkbox-option span:last-child {
    flex: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
  }

  .checkbox-option a {
    color: #00b4d8;
    text-decoration: none;
  }

  .checkbox-option a:hover {
    text-decoration: underline;
  }
}

/* Extra small mobile for Delivery & Payment */
@media (max-width: 480px) {
  .form-section h3 {
    font-size: 14px;
  }

  .form-group label {
    font-size: 11px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 9px 11px;
    font-size: 13px;
  }

  .radio-option {
    padding: 10px;
  }

  .option-content strong {
    font-size: 13px;
  }

  .option-content small {
    font-size: 11px;
  }

  .payment-option {
    padding: 12px 10px;
  }

  .payment-icon {
    font-size: 20px;
  }

  .payment-content strong {
    font-size: 13px;
  }

  .payment-content small {
    font-size: 11px;
  }

  .card-details {
    padding: 15px 12px;
  }

  .card-details h3 {
    font-size: 14px;
  }

  .card-details .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .card-details .form-row .form-group {
    width: 100%;
  }
}
