/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #fff;
  overflow-x: hidden;
}

/* Navy Blue Color Variables */
:root {
  --navy-blue: #0a4d8c;
  --navy-blue-dark: #0066b3;
  --navy-blue-light: #0077cc;
  --navy-blue-lighter: #e6f4ff;
  --navy-blue-transparent: rgba(10, 77, 140, 0.1);
  --gold: #ffd700;
  --orange: #ffa500;
  --red-orange: #ff4500;
  --cyan: #00b4d8;
  --text-dark: #1f2933;
  --text-medium: #4a5568;
  --text-light: #777777;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e0e0e0;
  --dark-gray: #1a1a1a;
  --light-blue: #e6f4ff;
  --medium-blue: #b8e0ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-dark) 100%);
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.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;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.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, var(--gold) 0%, var(--orange) 100%);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-dark);
  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;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

/* Side Order Button */
.side-order-btn {
  position: fixed;
  left: -45px;
  top: 50%;
  transform: rotate(-90deg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  padding: 15px 30px;
  color: var(--text-dark);
  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;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-dark) 100%);
  color: white;
  text-align: center;
  padding: 100px 20px 60px;
  margin-top: 70px;
  position: relative;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--gold);
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, var(--navy-blue) 0%, var(--navy-blue-dark) 50%, var(--navy-blue-light) 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  position: relative;
  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: 1400px;
  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: var(--gold);
  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: 40px 0;
  overflow: hidden;
  border-radius: 15px;
}

.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 {
  margin: 15px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkmark {
  background: white;
  color: var(--navy-blue);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.hero-info {
  flex: 1;
  color: white;
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.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: var(--gold);
}

.order-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  margin-top: 25px;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Benefits Section */
.benefits {
  background: linear-gradient(180deg, var(--navy-blue-light) 0%, var(--navy-blue) 100%);
  padding: 80px 0;
  position: relative;
}

.benefits h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.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;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 10px;
  padding: 25px 15px;
  color: white;
  transition: transform 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-card.highlight {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--navy-blue-light) 100%);
  border: 2px solid var(--gold);
  transform: scale(1.05);
}

.benefit-card.highlight:hover {
  transform: scale(1.05) translateY(-5px);
}

.benefit-card h3 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
}

.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: var(--gold);
}

/* Why Choose Us Section */
.why-section {
  background: linear-gradient(180deg, var(--navy-blue) 0%, var(--navy-blue-dark) 100%);
  color: white;
  padding: 80px 0;
}

.why-section h2 {
  text-align: center;
  color: var(--gold);
  font-size: 30px;
  margin-bottom: 40px;
}

.why-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.8;
}

.why-content p {
  margin-bottom: 20px;
  font-size: 15px;
}

/* Services Section */
.services {
  background: linear-gradient(180deg, var(--navy-blue-dark) 0%, var(--navy-blue) 100%);
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
}

.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(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--gold);
  font-size: 20px;
  padding: 20px 20px 10px;
  text-align: center;
  font-style: italic;
}

.service-card p {
  color: white;
  font-size: 13px;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.service-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  border: none;
  padding: 15px;
  color: var(--text-dark);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s;
  text-decoration: none;
  font-weight: 600;
}

.service-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffb347 100%);
  transform: translateY(-2px);
}

.service-btn span {
  transition: transform 0.3s;
}

.service-btn:hover span {
  transform: translateX(5px);
}

/* Service Detail Sections */
.services-content {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--navy-blue-dark) 0%, var(--navy-blue) 100%);
  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);
  border: 2px solid rgba(255, 215, 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: var(--gold);
  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: var(--cyan);
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 20px;
}

.service-detail-info ul {
  list-style: none;
  margin-bottom: 25px;
}

.service-detail-info li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.service-detail-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.service-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  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: var(--gold);
  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: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.additional-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.additional-service-card h3 {
  color: var(--gold);
  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: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.service-areas h2 {
  color: var(--gold);
  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.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-areas .area-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.service-areas .area-card h3 {
  color: var(--cyan);
  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;
}

/* Products Page */
.products-content {
  background: linear-gradient(180deg, var(--navy-blue-dark) 0%, var(--navy-blue) 100%);
  padding: 80px 0;
  color: white;
}

.products-intro {
  text-align: center;
  margin-bottom: 50px;
}

.products-intro h2 {
  color: var(--gold);
  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(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.product-card.featured {
  border: 3px solid var(--gold);
  position: relative;
  transform: scale(1.05);
}

.product-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.product-card.featured::before {
  content: "Featured";
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--gold);
  color: var(--navy-blue);
  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: white;
}

.product-info h3 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
  font-style: italic;
}

.product-info > p {
  color: rgba(255, 255, 255, 0.9);
  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: rgba(255, 255, 255, 0.85);
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: bold;
}

.product-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  border: none;
  padding: 14px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffb347 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.quality-section {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.quality-section h2 {
  color: var(--gold);
  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.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quality-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.quality-item h3 {
  color: var(--cyan);
  font-size: 18px;
  margin-bottom: 10px;
}

.quality-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

/* Projects Page */
.projects-content {
  background: linear-gradient(180deg, var(--navy-blue-dark) 0%, var(--navy-blue) 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);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.featured-project-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.featured-project-info h2 {
  color: var(--gold);
  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;
}

/* Customer Table */
.customers-section {
  margin-bottom: 60px;
}

.customers-section h2 {
  color: var(--gold);
  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: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.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: var(--gold);
  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 */
.testimonial-section {
  margin-bottom: 60px;
}

.testimonial-section h2 {
  color: var(--gold);
  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(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.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: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.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);
  margin: 80px 0;
}

.projects-cta h2 {
  color: var(--gold);
  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, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  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);
}

/* About Page */
.about-content {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--navy-blue-dark) 0%, var(--navy-blue) 100%);
  color: white;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text h2 {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  color: white;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

.about-image {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 60px 0;
}

.stat-card {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-label {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 60px 0;
}

.vision-card,
.mission-card {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: border-color 0.3s, transform 0.3s;
}

.vision-card:hover,
.mission-card:hover {
  border-color: var(--cyan);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vision-card h3,
.mission-card h3 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.vision-card p,
.mission-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 15px;
}

.values-section {
  margin: 60px 0;
}

.values-section h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-card h3 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.value-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 14px;
}

.guiding-principle {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
  padding: 40px;
  border-radius: 20px;
  margin: 60px 0;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.guiding-principle h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.guiding-principle blockquote {
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

.team-section {
  margin: 60px 0;
}

.team-section h2 {
  text-align: center;
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}

.team-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-size: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-card h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

.team-card p {
  color: var(--cyan);
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 14px;
}

.experience {
  display: block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

.work-environment {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 35px;
  margin-top: 60px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.work-environment h2 {
  color: var(--gold);
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.environment-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 15px;
}

.environment-content strong {
  color: var(--gold);
}

/* Contact Page */
.contact-content {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--navy-blue-dark) 0%, var(--navy-blue) 100%);
  color: white;
}

.contact-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-form-section h2,
.contact-details-section h2 {
  color: var(--gold);
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 600;
}

.contact-form {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.form-group label::after {
  content: '*';
  color: #ff4444;
  margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.contact-details-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-card {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.contact-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-detail-card h3 {
  color: var(--cyan);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-detail-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 14px;
}

.contact-detail-card a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-card a:hover {
  color: var(--cyan);
  text-decoration: underline;
}

.contact-detail-card i {
  color: var(--gold);
}

.map-section {
  margin-top: 60px;
}

.map-section h2 {
  color: var(--gold);
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.map-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  font-size: 14px;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-dark) 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  margin-bottom: 20px;
}

.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: var(--gold);
}

.footer-logo .logo-tagline {
  font-size: 14px;
  letter-spacing: 3px;
  color: white;
}

.footer-about {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav-section h3,
.footer-contact-section h3 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav-links a:hover {
  color: var(--gold);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.contact-info-item i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  margin-top: 2px;
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-item a:hover {
  color: var(--gold);
}

.footer-cta {
  text-align: center;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  border-radius: 10px;
}

.footer-order-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-order-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.order-icon {
  font-size: 18px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-container,
  .featured-project,
  .about-section,
  .vision-mission,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-detail.reverse {
    direction: ltr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .contact-info-item {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
  }
  
  .nav.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .header-phone {
    margin-left: auto;
    text-align: right;
  }
  
  .header-cta {
    margin-left: auto;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quality-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 20px 40px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-image {
    margin: 20px 0;
  }
  
  .hero-image img {
    max-width: 220px;
  }
  
  .benefits h2,
  .services h2,
  .why-section h2 {
    font-size: 32px;
  }
  
  .service-detail-info h2 {
    font-size: 28px;
  }
  
  .projects-cta h2 {
    font-size: 28px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 25px;
  }
  
  .testimonials-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-nav-links {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 60px 20px 30px;
  }
  
  .page-header h1 {
    font-size: 28px;
  }
  
  .page-header p {
    font-size: 16px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-info {
    padding: 25px;
  }
  
  .hero-features li {
    font-size: 16px;
  }
  
  .service-card,
  .benefit-card,
  .value-card,
  .team-card {
    padding: 20px;
  }
  
  .quality-section {
    padding: 40px 20px;
  }
  
  .contact-form,
  .contact-detail-card {
    padding: 25px;
  }
  
  .header-cta,
  .footer-order-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .phone-number {
    font-size: 14px;
  }
  
  .benefits-grid,
  .quality-content,
  .testimonials-grid,
  .team-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Print Styles */
@media print {
  .header-cta,
  .footer-order-btn,
  .order-btn,
  .service-cta-btn,
  .product-btn,
  .cta-button,
  .submit-btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
  }
  
  .header,
  .footer {
    position: static;
    background: white;
    color: black;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hero {
    background: #0000cc;
  }
  
  .why-section {
    background: #0000cc;
  }
  
  .service-cta-btn,
  .product-btn,
  .cta-button,
  .submit-btn,
  .order-btn {
    background: #0000cc;
    border: 2px solid black;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  body {
    background: var(--dark-gray);
    color: #e0e0e0;
  }
  
  .header {
    background: linear-gradient(135deg, #0a4d8c 0%, #0066b3 100%);
  }
  
  .nav a {
    color: #e0e0e0;
  }
  
  .nav a:hover,
  .nav a.active {
    color: var(--gold);
  }
  
  .service-card,
  .benefit-card,
  .value-card,
  .team-card,
  .contact-form,
  .contact-detail-card,
  .area-card,
  .additional-service-card {
    background: linear-gradient(135deg, rgba(0, 102, 179, 0.9) 0%, rgba(10, 77, 140, 0.9) 100%);
    color: white;
  }
  
  .service-card h3,
  .benefit-card h3,
  .value-card h3,
  .team-card h3,
  .area-card h3,
  .additional-service-card h3 {
    color: var(--gold);
  }
  
  .service-card p,
  .benefit-card p,
  .value-card p,
  .team-card p,
  .area-card p,
  .additional-service-card p {
    color: rgba(255, 255, 255, 0.85);
  }
  
  .footer {
    background: linear-gradient(135deg, #0a4d8c 0%, #0066b3 100%);
  }
}
/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-dark) 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  margin-bottom: 20px;
}

.footer-logo .logo-icon svg {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo .logo-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 5px;
}

.footer-logo .logo-tagline {
  font-size: 14px;
  letter-spacing: 3px;
  color: white;
  opacity: 0.9;
}

.footer-about {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
}

.footer-nav-section,
.footer-contact-section {
  margin-bottom: 30px;
}

.footer-nav-section h3,
.footer-contact-section h3 {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  padding: 5px 10px;
  border-radius: 5px;
}

.footer-nav-links a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-align: center;
  max-width: 250px;
}

.contact-info-item i {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 5px;
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.contact-info-item a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-social {
  margin-top: 25px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--navy-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-cta {
  text-align: center;
  padding: 30px 0;
  background: rgba(255, 255, 255, 0.05);
  margin: 40px auto;
  border-radius: 15px;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h3 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-order-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.footer-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.order-icon {
  font-size: 18px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.1);
  padding: 25px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* Footer Responsive Styles */
@media (max-width: 1200px) {
  .footer-main {
    max-width: 1000px;
    gap: 40px;
  }
  
  .footer-column {
    min-width: 220px;
  }
}

@media (max-width: 992px) {
  .footer-main {
    justify-content: space-around;
    gap: 40px;
  }
  
  .footer-column {
    flex: 0 1 calc(50% - 40px);
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .footer-column {
    flex: 1;
    width: 100%;
    max-width: 400px;
  }
  
  .footer-logo .logo-name {
    font-size: 24px;
  }
  
  .footer-logo .logo-tagline {
    font-size: 12px;
  }
  
  .footer-nav-section h3,
  .footer-contact-section h3 {
    font-size: 18px;
  }
  
  .footer-cta {
    padding: 25px 20px;
    margin: 30px 20px;
  }
  
  .footer-cta h3 {
    font-size: 20px;
  }
  
  .footer-bottom-links {
    gap: 15px;
  }
  
  .footer-bottom-links a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 15px;
  }
  
  .footer-main {
    gap: 35px;
  }
  
  .footer-logo .logo-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .footer-logo .logo-name {
    font-size: 22px;
  }
  
  .footer-logo .logo-tagline {
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  .footer-about {
    font-size: 13px;
  }
  
  .footer-nav-links a {
    font-size: 14px;
  }
  
  .contact-info-item {
    font-size: 13px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .footer-order-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}