:root {
  --primary: #0f4c81;
  --primary-light: #1a6ab3;
  --accent-yellow: #fdd835;
  --accent-yellow-light: #ffea8a;
  --light-bg: #f4faff;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #6c757d;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 15px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  background-color: var(--light-bg);
  color: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
nav {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  padding: 0 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: var(--accent-yellow);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

nav a:hover,
nav a.active {
  background-color: #0a3053;
}

/* Header */
header {
  background: linear-gradient(135deg, #0a3053, #0f4c81);
  padding: 3rem 1rem 2rem;
  text-align: center;
  color: var(--white);
  border-radius: var(--radius-md);
  max-width: 1000px;
  margin: 1rem auto 2rem;
  border: 2px solid #123a6d;
  box-shadow:
    inset 0 3px 8px rgba(255 255 255 / 0.2),
    inset 0 -3px 6px rgba(0 0 0 / 0.6);
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

header h1 {
  font-size: 2.8rem;
  margin: 0;
  line-height: 1.1;
  color: var(--accent-yellow);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

header p {
  font-size: 1.25rem;
  opacity: 1;
  margin-top: 0.4rem;
  line-height: 1.4;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Main Content */
main {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-grow: 1;
}

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

section {
  background-color: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

section:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-yellow);
}

h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

h2 i {
  color: var(--accent-yellow);
}

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

li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.75rem;
}



p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0.6rem 0;
  color: var(--gray);
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 2rem;
}

.reviews h2 {
  color: var(--white);
  justify-content: center;
}

.reviews p {
  color: rgba(255, 255, 255, 0.9);
}

/* Button */
.button-container {
  text-align: center;
  margin-top: 1rem;
}

a.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, var(--primary), var(--accent-yellow));
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--transition);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

a.button:hover {
  background: linear-gradient(90deg, var(--accent-yellow), var(--primary));
  color: #000;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 2rem 1rem;
  text-align: center;
  margin-top: auto;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.footer-column h3 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

.footer-column li {
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--accent-yellow);
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
  
  header {
    margin: 1rem;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }
  
  nav a {
    font-size: 1rem;
    padding: 0.3rem 0.4rem;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
}


/* Contact Page Specific Styles */
.info p,
.hours p {
  margin: 0.6rem 0;
  font-size: 1.1rem;
  color: var(--gray);
}

.info a,
.hours a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.info a:hover,
.hours a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.buttons .button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  background: var(--primary);
  color: var(--white);
}

.buttons .button:hover {
  background: var(--primary-light);
  color: var(--white);
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
  .buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .buttons .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .info p,
  .hours p {
    font-size: 1rem;
  }
}
/* Products Page Styles */
.featured {
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent-yellow);
  color: var(--dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
}

.product-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
}

.product-image.iphone {
  background: linear-gradient(135deg, #a3a3a3, #000);
}

.product-image.samsung {
  background: linear-gradient(135deg, #1428a0, #00a5e9);
}

.product-image.huawei {
  background: linear-gradient(135deg, #FF0000, #FF6A00);
}

.product-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.product-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

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

.money-transfer {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius-md);
  margin: 3rem 0;
}

.transfer-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
}

.transfer-image {
  flex: 1;
  max-width: 200px;
  text-align: center;
}

.transfer-image i {
  font-size: 5rem;
  color: var(--accent-yellow);
  opacity: 0.8;
}

.transfer-details {
  flex: 2;
}

.transfer-details h3 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.transfer-details p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.transfer-details ul {
  margin-bottom: 1.5rem;
}

.transfer-details li::before {
  color: var(--accent-yellow);
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.accessory-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.accessory-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.accessory-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.accessory-item span {
  font-weight: 500;
  color: var(--dark);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .transfer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .transfer-image {
    margin-bottom: 1rem;
  }
  
  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-card,
  .service-card {
    padding: 1.2rem;
  }
  
  .accessories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* New "And Many More" card style */
.product-image.more-brands {
  background: linear-gradient(135deg, #6a3093, #a044ff);
}
.money-transfer p {
  color: white !important;
}